Linux安装Redis教程
程序员文章站
2022-04-15 09:36:55
...
为了方便快捷的搭建linux环境,于是有了这几篇文字
- CentOS使用yum安装jdk
- CentOS安装tomcat
- CentOS安装Nginx
- CentOS安装MySql
- Centos安装Redis
1.安装Nginx前的准备
请确认gcc g++开发类库是否装好。
yum -y install gcc automake autoconf libtool make(安装make)
yum install gcc gcc-c++(安装g++)
2.下载Redis
cd /usr/local/ wget http://download.redis.io/releases/redis-4.0.14.tar.gz
3.安装Redis
tar xzf redis-4.0.14.tar.gz cd redis-4.0.14 make make install
4.修改Redis配置文件
vi redis.conf requirepass 123456(修改密码) port 8888(修改端口号) daemonize yes(后台启动)
5.启动redis
cd /usr/local/bin redis-server (正常启动) redis-server &(命令版后台启动) redis-server ../redis-4.0.14/redis.conf(指定配置文件启动)
7.停止redis
(./redis-cli -h 127.0.0.1 -p 8888 -a 123456 然后 shutdown) ps -ef|grep redis(查看redis进程) kill -9 pid(杀死进程)
更多Linux相关技术文章,请访问Linux教程栏目进行学习!
以上就是Linux安装Redis教程的详细内容,更多请关注其它相关文章!
下一篇: 2014毕业生薪资调查哪个技术最火?