搭建Redis服务器
2023-03-05 本文已影响0人
技术老男孩
一、环境准备:
Ip地址 | 主机名 | 配置 |
---|---|---|
192.168.88.51 | Host51 | 关闭防火墙、禁用selinux |
二、搭建思路流程:
- 安装相关依赖及软件
- 修改配置文件启动服务
- 查看端口和进程
- 连接服务并测试
三、实操:
第一步:安装相关依赖及软件
[root@host51 ~]# which gcc || yum -y install gcc 安装编译工具gcc
[root@host51 ~]#tar -xf redis-4.0.8.tar.gz 解压源码
[root@host51 ~]#cd redis-4.0.8/ 进入源码目录
[root@host51 ~]#make 编译
[root@host51 ~]#make install 安装
第二步:修改配置文件
# 初始化配置
[root@host51 ~]#./utils/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
[/usr/local/bin/redis-server] # 服务启动命令
Selected config:
Port : 6379
Config file : /etc/redis/6379.conf
Log file : /var/log/redis_6379.log
Data dir : /var/lib/redis/6379
Executable : /usr/local/bin/redis-server
Cli Executable : /usr/local/bin/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... # 初始化配置后 会自动启动redis服务 并设置开机运行
Installation successful!
第三步:查看端口和进程
- 重启Redis服务
# 停止redis服务
[root@host51 redis-4.0.8]# /etc/init.d/redis_6379 stop
Stopping ...
# 启动redis服务
[root@host51 redis-4.0.8]# /etc/init.d/redis_6379 start
Stopping ...
- 查看服务的端口号
[root@host51 redis-4.0.8]# netstat -utnalp | grep 6379
tcp 0 0 127.0.0.1:6379 0.0.0.0:* LISTEN 4108/redis-server 1
- 查看进程
[root@host51 redis-4.0.8]# ps -C redis-server
PID TTY TIME CMD
4108 ? 00:00:00 redis-server
第四步:连接服务并测试
# 连接服务 默认只能在本机连接redis服务 (只能自己访问自己)
[root@host51 ~]# redis-cli
# 测试连接是否正常
127.0.0.1:6379> ping
PONG # 表示正常
# 存储数据 set 变量名 值
127.0.0.1:6379> set school tarena
OK
127.0.0.1:6379> keys * #查看所有变量名
1) "school"
127.0.0.1:6379> get school #查看变量的值 get 变量名
"tarena"
127.0.0.1:6379> exit #断开连接