Centos7安装redis6##
1.安装依赖
redis是由C语言开发,因此安装之前需要确保服务器已经安装了gcc,可以通过以下命令检查服务器是否安装:
如果没有安装则通过以下命令安装:
gcc -v
yum install -y gcc
2.下载redis安装包上传服务器并解压
下载地址:https://redis.io/download/#redis-downloads
通过命令下载
命令下载,所以我的下载目录为:/usr/redis,这里按照自己的实际情况调整
wget https://download.redis.io/releases/redis-6.2.6.tar.gz
3.解压文件
[root@centos100 data]# tar -zxvf redis-6.2.7.tar.gz
[root@centos100 data]# mkdir -p /usr/redis
#进入到文件目录
[root@centos100 data]# cd redis-6.2.7/
[root@centos100 redis-6.2.7]# pwd
/root/data/redis-6.2.7
[root@centos100 redis-6.2.7]#
5.指定安装目录并进行安装
make install PREFIX=/usr/redis
复制配置文件
[root@centos100 redis-6.2.7]# pwd
/root/data/redis-6.2.7
[root@centos100 redis-6.2.7]# ll
total 244
-rw-rw-r--. 1 root root 36010 Apr 27 21:31 00-RELEASENOTES
-rw-rw-r--. 1 root root 51 Apr 27 21:31 BUGS
-rw-rw-r--. 1 root root 5026 Apr 27 21:31 CONDUCT
-rw-rw-r--. 1 root root 3384 Apr 27 21:31 CONTRIBUTING
-rw-rw-r--. 1 root root 1487 Apr 27 21:31 COPYING
drwxrwxr-x. 7 root root 213 Aug 7 14:17 deps
-rw-rw-r--. 1 root root 11 Apr 27 21:31 INSTALL
-rw-rw-r--. 1 root root 151 Apr 27 21:31 Makefile
-rw-rw-r--. 1 root root 6888 Apr 27 21:31 MANIFESTO
-rw-rw-r--. 1 root root 21567 Apr 27 21:31 README.md
-rw-rw-r--. 1 root root 93849 Apr 27 21:31 redis.conf
-rwxrwxr-x. 1 root root 279 Apr 27 21:31 runtest
-rwxrwxr-x. 1 root root 283 Apr 27 21:31 runtest-cluster
-rwxrwxr-x. 1 root root 1117 Apr 27 21:31 runtest-moduleapi
-rwxrwxr-x. 1 root root 281 Apr 27 21:31 runtest-sentinel
-rw-rw-r--. 1 root root 13768 Apr 27 21:31 sentinel.conf
drwxrwxr-x. 3 root root 12288 Aug 7 14:17 src
drwxrwxr-x. 11 root root 182 Apr 27 21:31 tests
-rw-rw-r--. 1 root root 3055 Apr 27 21:31 TLS.md
drwxrwxr-x. 9 root root 4096 Apr 27 21:31 utils
[root@centos100 redis-6.2.7]# cp /root/data/redis-6.2.7/redis.conf /usr/redis/bin/
[root@centos100 redis-6.2.7]#
6.启动服务
进入redis安装目录
cd /usr/redis/bin/
修改配置文件
vim redis.conf
备注:如果想要设置指定IP连接redis,只需要修改redis.conf文件中bind配置项即可。如果不限IP,将127.0.0.1修改成0.0.0.0或者注释掉即可
修改端口号
设置密码
设置守护线程 daemonize yes
取消保护模式,外部客户端才能链接
启动服务
# 启动服务
./redis-server redis.conf
# 查看进程
ps -ef |grep redis
7.设置开机自动启动
vi /etc/systemd/system/redis.service
[Unit]
Description=redis-server
After=network.target
[Service]
Type=forking
# ExecStart需要按照实际情况修改成自己的地址
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/bin/redis.conf
PrivateTmp=true
[Install]
WantedBy=multi-user.target
开机自动启动
# 开机自动启动
systemctl enable redis.service
# 启动redis服务
systemctl start redis.service
# 查看服务状态
systemctl status redis.service
# 停止服务
systemctl stop redis.service
# 取消开机自动启动(卸载服务)
systemctl disabled redis.service
如果主机连不上redis可以检查下防火墙或者开放redis端口
sudo systemctl disable firewalld
8.2开放端口
[root@centos100 system]# firewall-cmd --zone=public --add-port=6379/tcp --permanent
success
[root@centos100 system]# firewall-cmd --reload
success
[root@centos100 system]#
# 开放redis端口
firewall-cmd --zone=public --add-port=6379/tcp --permanent
# 应用
firewall-cmd --reload