Redis单机安装
程序员文章站
2022-07-05 10:18:18
...
Redis单机安装(Centos7)
安装前准备
- 给服务器开通连接互联网的权限 (需要网络相关人员开通权限)
- 给操作系统安装 gcc 插件
[[email protected] ~]# yum install gcc -y
...
已安装:
gcc.x86_64 0:4.8.5-44.el7
...
下载
下载至 /opt 目录下
[[email protected] ~]# cd /opt
[[email protected] opt]# wget https://download.redis.io/releases/redis-5.0.13.tar.gz
解压
解压为 /usr/local/redis 目录
[[email protected] opt]# tar -zxvf redis-6.2.5.tar.gz
[[email protected] opt]# mv redis-6.2.5 /usr/local/redis
[[email protected] opt]# cd /usr/local/redis
编译
进入/usr/local/redis 目录,进行编译
[[email protected] redis]# pwd
/usr/local/redis
[[email protected] redis]# make
安装
这里没有指定安装目录,直接默认安装
[[email protected] redis]# pwd
/usr/local/redis
[[email protected] redis]# make install
安装完成后,redis启动文件在 /usr/local/redis/src/ 下。
修改配置
修改 redis.conf 文件
[[email protected] ~]# vim /usr/local/redis/redis.conf
修改内容如下:
bind 0.0.0.0
protected-mode no
port 6379
daemonize yes
logfile “./redis.log”
dir ./
requirepass [email protected]
requirepass : 客户端连接redis服务的密码
启动
[[email protected] ~]# /usr/local/redis/src/redis-server /usr/local/redis/redis.conf
关闭
使用 grep aux|grep redis 查询redis进程,然后使用 kill 命令关闭
[[email protected] ~]# grep aux|grep redis
root 27970 0.7 0.1 163112 11964 ? Ssl 8月05 100:28 redis-server 0.0.0.0:6379
[[email protected] ~]# kill -9 27970
使用管道与其它命令直接关闭
[[email protected] ~]# ps -ef | grep redis | grep -v grep | awk '{print $2}' | xargs kill -9
附:Redis离线安装
把下载、解压、编译步骤放到可联网的虚拟机中进行处理,然后打包,再上传到对应的离线服务器上,然后解压到指定目录后,执行安装、修改配置即可
上一篇: 判断文件是否是pdf
下一篇: Redis单机安装
推荐阅读