CentOS安装Redis单实例

635 阅读3分钟

小知识,大挑战!本文正在参与“程序员必备小知识”创作活动。

本文已参与 「掘力星计划」 ,赢取创作大礼包,挑战创作激励金。

1、创建安装目录


为了方便管理我们一般统一软件的安装目录,这里选择安装的目录是 ->

/usr/local/soft

2、下载Redis


我们通过wget命令从redis官网下载压缩包 -> redis.io/
当前最新版本下载地址 -> download.redis.io/releases/re…

cd /usr/local/soft
wget https://download.redis.io/releases/

3、解压


tar -zxvf redis-6.2.4.tar.gz

4、 安装gcc依赖


Redis是C语言编写,编译需要GCC
Redis6.x.x版本支持了多线程,需要gcc的版本大于4.9,我们需要查看默认GCC版本,如果版本过低则需要升级

gcc -v

我的新安装的虚拟机CentOS显示 ->\

image.png
证明我的没有安装gcc,安装gcc ->

yum install gcc

image.png
再次查看安装后的版本,发现是4.8.5,这个是CentOS默认的版本,我们需要对gcc进行升级 ->

yum -y install centos-release-scl

yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils

scl enable devtoolset-9 bash

echo "source /opt/rh/devtoolset-9/enable" >>/etc/profile

查看升级后的版本 ->\

image.png

5、编译安装

cd redis-6.2.4/src
make install

编译过程如下 ->\

image.png
看到如下结果输出则编译成功 ->\

image.png
或者在src目录下出现服务端和客户端的脚本 ->

redis-sentinel
redis-server
redis-cli

image.png

6、修改配置文件

Redis的配置文件在解压目录下的 redis.conf\

image.png

6.1 首先设置后台启动,防止窗口一关闭服务就挂掉

默认后台启动参数为 **no **->

# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
# When Redis is supervised by upstart or systemd, this parameter has no impact.
daemonize no

修改成 **yes **->

# By default Redis does not run as a daemon. Use 'yes' if you need it.
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
# When Redis is supervised by upstart or systemd, this parameter has no impact.
daemonize yes

6.2 允许其他主机访问

根据Redis的文档配置注释,我们要运行其他主机访问有多种方式 ->

  1. 可以选择配置访问主机的IP address
  2. bind * -::* 相当于允许所有其它主机访问
  3. bind 0.0.0.0 相当于允许所有其它主机访问
  4. 直接注释 相当于允许所有其它主机访问
# bind 192.168.1.100 10.0.0.1     # listens on two specific IPv4 addresses
# bind 127.0.0.1 ::1              # listens on loopback IPv4 and IPv6
# bind * -::*                     # like the default, all available interfaces

我的处理方式,安装文档的注释来配置\

image.png

6.3 配置访问密码

如果是要考虑安全性,一定要配置密码,找到requirepass配置处,新增如下配置(阿里云等云服务其外网访问一定要配置,作者被黑过,整台服务器重启都无法重启,损失惨重,但是穷,官方处理需要Money,建议这里一定要谨慎)

requirepass yourpassword

7、启动Redis

使用redis-server 来启动,启动的方式如下->

/usr/local/soft/redis-6.2.4/src/redis-server /usr/local/soft/redis-6.2.4/redis.conf

或者这个也一样 ->

cd /src
redis-server  ../redis.conf

查看端口是否启动成功 ->

netstat -an|grep 6379 

image.png

8、客户端

进入客户端的方式如下 ->

/usr/local/soft/redis-6.2.4/src/redis-cli

image.png

9、停止Redis

停止Redis有两种方式 :
方式一,在客户端中执行SHUTDOWN

SHUTDOWN

image.png

方式二,暴力kill -9

ps -aux | grep redis
kill -9 57927

image.png

10、配置别名

为了方便启动Redis和进入客户端,我们可以通过配置别名来实现

vim ~/.bashrc

添加如下配置,

  • 注意 '' 很重要
  • redis与rcli后面的=两边不能有空格
alias redis='/usr/local/soft/redis-6.2.4/src/redis-server /usr/local/soft/redis-6.2.4/redis.conf'
alias rcli='/usr/local/soft/redis-6.2.4/src/redis-cli'

image.png

使配置生效

source ~/.bashrc

image.png

现在我们可以通过redis启动Redis服务,使用rcli进入Redis客户端\

image.png