一、redis编译需要gcc,因此先安装gcc
yum install gcc
二、make test 需要tcl
yum -y install tcl
三、 问题1:
Mmmmm... it seems like you don't have a redis executable. Did you run make install yet?
解决办法:
ln -s your-redis-direction/src/redis-server /usr/local/bin/
四:问题2:
Creating Server TCP listening socket *:6379: bind: Address already in use
解决:
参考:开启redis-server提示 # Creating Server TCP listening socket *:6379: bind: Address already in use--解决方法
[vagrant@localhost utils]$ sudo ./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 [] /home/vagrant/redis-4.0.0/src/redis-server 注意这里输入的应该是你redis存放的目录
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /home/vagrant/redis-4.0.0/src/redis-server
Cli Executable : /home/vagrant/redis-4.0.0/src/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!
参考:
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。