Centos7安装redis5.0.7
程序员文章站
2022-06-17 10:21:35
1. 安装依赖包 yum install -y gcc gcc-c++ 2. 下载最新版redis安装包并解压安装 cd /usr/local/src wget http://download.redis.io/releases/redis-5.0.7.tar.gztar -zxvf redis-5 ......
1. 安装依赖包
yum install -y gcc gcc-c++
2. 下载最新版redis安装包并解压安装
cd /usr/local/src
wget http://download.redis.io/releases/redis-5.0.7.tar.gz
tar -zxvf redis-5.0.7.tar.gz
make
make install
3. 打开 redis.conf 并更改配置文件
更改密码 # requirepass foobared requirepass xxx 允许后台静默运行 #daemonize no daemonize yes 更改日志文件 #logfile "" logfile "/var/log/redis/6379.log"
4. 创建配置文件软链
ln -s /usr/local/src/redis-5.0.7/redis.conf /etc/redis/6379.conf
5. 增加启动服务脚本
新增配置文件
touch /usr/lib/systemd/system/redis.service redis.service内容如下: [unit] description=redis 6379 after=syslog.target network.target [service] type=forking privatetmp=yes restart=always execstart=/usr/local/bin/redis-server /etc/redis/redis.conf execstop=/usr/local/bin/redis-cli -h 127.0.0.1 -p 6379 -a jcon shutdown user=root group=root limitcore=infinity limitnofile=100000 limitnproc=100000 [install] wantedby=multi-user.target
重新加载redis服务配置文件
systemctl daemon-reload
启动redis
systemctl start redis
停止redis
systemctl stop redis
重启redis
systemctl restart redis
加入开机启动
systemctl enable redis
禁止开机启动
systemctl disable redis
查看状态
systemctl status redis
上一篇: 前端解决跨域问题最新最全的8种方案
下一篇: Maven POM
推荐阅读
-
【运维实录】DB2 数据库的安装配置及监控
-
CentOS 6 下安装php5.5.34的 ffmpeg 扩展 ffmpeg-php
-
mysql授权localhost&%区别及一直授权错误解决办法(安装openstack有感)_MySQL
-
linux安装数据时报错Could not execute auto check for display colors using command /usr/bin/xdpyinfo.
-
CentOS7.4 源码安装MySQL8.0
-
redis的安装及php的redis使用
-
在Centos 5.2下安装最新的MySQL Proxy
-
安装memcached及php扩展
-
64位CentOS系统下安装配置伪分布式hadoop 2.5.2
-
Linux-6.5下基于cmake28来编译安装mysql服务配置解析_MySQL