安装新版REDIS

http://redis.io/

# wget http://download.redis.io/redis-stable.tar.gz

tar zxvf redis-stable.tar.gz -C /usr/local/

cd /usr/local/redis

make  MALLOC=libc

==========================================================

To force compiling against libc malloc, use:

% make MALLOC=libc

To compile against jemalloc on Mac OS X systems, use:

% make MALLOC=jemalloc

分配器allocator,libc 并不是默认的 分配器, 默认的是 jemalloc, 因为 jemalloc 被证明 有更少的 fragmentation problems 比libc。

=======================================================================

make MALLOC=libc

 

cd src

yum -y install tcl    //提示缺这玩意

make test  //这里执行了2次,不知道为什么,但是都是按照提示来的,直到出现下面界面

167 seconds - integration/replication

172 seconds - integration/replication-psync

145 seconds - unit/obuf-limits

\o/ All tests passed without errors!

Cleanup: may take some time... OK

# cd utils

# ./install_server.sh

Welcome to the redis service installer

This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379]

Selecting default: 6379

Please select the redis config file name [/etc/redis/6379.conf]

Selected default - /etc/redis/6379.conf

Please select the redis log file name [/var/log/redis_6379.log]

Selected default - /var/log/redis_6379.log

Please select the data directory for this instance [/var/lib/redis/6379]

Selected default - /var/lib/redis/6379

Please select the redis executable path [/usr/local/bin/redis-server]

Selected config:

Port           : 6379

Config file    : /etc/redis/6379.conf

Log file       : /var/log/redis_6379.log

Data dir       : /var/lib/redis/6379

Executable     : /usr/local/bin/redis-server

Cli Executable : /usr/local/bin/redis-cli

Is this ok? Then press ENTER to go on or Ctrl-C to abort.

Copied /tmp/6379.conf => /etc/init.d/redis_6379

Installing service...

Successfully added to chkconfig!

Successfully added to runlevels 345!

Starting Redis server...

Installation successful!

#

# /usr/local/bin/redis-server  /etc/redis/6379.conf

# netstat -nlt

Active Internet connections (only servers)

Proto Recv-Q Send-Q Local Address           Foreign Address         State

tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN

# cd /usr/local/bin/

# ls

redis-benchmark  redis-check-aof  redis-check-rdb  redis-cli  redis-sentinel  redis-server

# ./redis-cli

127.0.0.1:6379> help

redis-cli 3.2.1

To get help about Redis commands type:

"help @<group>" to get a list of commands in <group>

"help <command>" for help on <command>

"help <tab>" to get a list of possible help topics

"quit" to exit

To set redis-cli perferences:

":set hints" enable online hints

":set nohints" disable online hints

Set your preferences in ~/.redisclirc

127.0.0.1:6379>

127.0.0.1:6379> exit

# more  /etc/redis/6379.conf |grep requirepass   //默认密码没有启用的,可以参见

# If the master is password protected (using the "requirepass" configuration

# requirepass foobared

时间: 2024-10-30 04:48:11

安装新版REDIS的相关文章

php安装扩展redis淌过的坑

php安装扩展redis淌过的坑 php扩展 redis 欢迎使用 小书匠(xiaoshujiang)编辑器,您可以通过设置里的修改模板来改变新建文章的内容. cd /usr/local/src/ wget https://github.com/nicolasff/phpredis/archive/2.2.4.tar.gz tar zxvf phpredis-2.2.4.tar.gz cd 2.2.4.tar.gz /usr/local/bin/phpize ./configure --with

在Windows Service上安装运行Redis

CSDN下载RedisWatcher,运行InstallWatcher.msi,默认安装在C:\Program Files (x86)\RedisWatcher,修改watcher.conf 1 # required exepath and exename are combined to form full path 2 exepath D:\Demos\redisdev\redis 3 exename redis-server.exe 4 5 # optional fastfailMS is

[moka同学笔记]php的安装配置redis

** 在PHP下安装redis之前,先安装好redis哦.[若没有安装请参考上篇转载的安装过程] ** 下载:https://github.com/phpredis/phpredis/downloads/  (此处注意PHP的版本哦我的是php5.4 vc9_nts) 下载后解压: 将这两个文件放到php安装的E:\phpstudy\php\php-5.4.45-nts\ext目录下 配置文件ini中增加下面两行 extension="./ext/php_igbinary.dll" e

Linux Ubuntu下PHP安装扩展redis

一.安装redis 1.安装最新redis sudo apt-get update sudo apt-get install redis-server 2.启动redis sudo service redis-server start 3.测试是否启动redis ps aux | grep redis 4.进入redis redis-cli 显示127.0.0.6379> 表示安装成功! 二.安装PHP扩展 1.安装PHP依赖包php-devel,Ubuntu下是php5-dev 生成confi

Linux 下安装配置redis

第一部分:安装redis 本人是先下载了4.0.2版本的redis安装包直接远程上传到linux服务器/usr/local目录下 那么安装过程如下: tar -zxvf redis-4.0.2.tar.gz cd redis-4.0.2 直接make编译 如果不成功,先安装gcc,然后再make一次 编译成功之后,会出现src目录,下面有redis-cli ,redis-server等文件 第二部分:将redis做成一个服务 1.复制脚本到/etc/rc.d/init.d目录 ps: /etc/

centos7 yum安装配置redis 并设置密码

原文:https://www.cnblogs.com/fanlinglong/p/6635828.html 1.设置Redis的仓库地址 yum install epel-release 2.安装redis yum install redis 修改配置文件,监听所有的IP地址 vim /etc/redis.conf 找到下面这一行 bind 127.0.0.1 注释掉 #bind 127.0.0.1 3.启动redis,到此完成 service redis start 如果需要设置开机自动启动

Ubuntu 安装&amp;卸载 redis

在 Ubuntu 系统安装 Redis 可以使用以下命令: $ sudo apt-get update $ sudo apt-get install redis-server 启动 Redis $ redis-server 查看 redis 是否启动? $ redis-cli 以上命令将打开以下终端: redis 127.0.0.1:6379> 127.0.0.1 是本机 IP ,6379 是 redis 服务端口.现在我们输入 PING 命令. redis 127.0.0.1:6379> p

在ubuntu安装php redis扩展

先执行php -m, 如果没有看到redis, 那么就需要安装php redis扩展 下载源码, 我们假定在家目录下有个 git 文件夹来管理 git 文件 $ cd ~/git/ $ git clone https://github.com/phpredis/phpredis.git 将下载下来的源码移动到/etc 文件下, 然后进入这个目录下 $ mv phpredis/ /etc/ $ cd /etc/phpredis 执行phpize生成编译文件, 这里可能会需要安装php7.2-dev

Linux安装部署Redis(超级详细)

前言 网上搜索了一筐如何在Linux下安装部署Redis的文章,各种文章混搭在一起勉强安装成功了.自己也记录下,方便后续安装时候有个借鉴之处. Redis版本 5.0.4 服务器版本 Linux CentOS 7.6 64位 下载Redis 进入官网找到下载地址 https://redis.io/download 右键Download按钮,选择复制链接. 进入到Xshell控制台(默认当前是root根目录),输入wget 将上面复制的下载链接粘贴上,如下命令: wget http://downl