CentOS 7下Redis5安装部署与开机自启动(2)

chmod 755 /etc/init.d/redis #设置文件redis的权限,让Linux可以执行
chkconfig redis on    #开启服务自启动
chkconfig --list      #查看所有注册的脚本文件
service redis start  #启动
service redis stop    #关闭redis

3) 检测是否成功

reboot  #重启--如果是centos6.5学过来的,init 0与init 6一样在centos7适用

ps aux|grep redis #查看redis进程是否存在

方法二:

centos 7以上是用Systemd进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。
Systemd服务文件以.service结尾,比如现在要建立redis为开机启动,如果用yum install命令安装的,yum命令会自动创建redis.service文件,直接用命令systemcel enable redis.service设置开机启动即可

1.在系统服务目录里创建redis.service文件

vim /etc/systemd/system/redis.service

写入以下内容:

[Unit]
Description=redis-server
After=network.target

[Service]
Type=forking
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/bin/redis.conf
PrivateTmp=true

[Install]
WantedBy=multi-user.target

注意:ExecStart配置成自己的路径

配置描述:

  Description:描述服务
  After:描述服务类别
  [Service]服务运行参数的设置
  Type=forking是后台运行的形式
  ExecStart为服务的具体运行命令
  ExecReload为重启命令
  ExecStop为停止命令
  PrivateTmp=True表示给服务分配独立的临时空间
  注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
  [Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3

2. 测试并加入开机自启

  先关闭redis-server
  systemctl stop redis.service

  开启redis-server
  systemctl start redis.service #如果服务是开启状态,使用此命令会启动失败。

3. 开启成功,将服务加入开机自启
  systemctl enable redis.service #注意后面不能跟空格

4.  reboot #重启

5.  查看服务运行状态:systemctl status redis.service

CentOS 7下Redis5安装部署与开机自启动

6. 全部命令

  systemctl start redis.service #启动redis服务
  systemctl enable redis.service #设置开机自启动
  systemctl disable redis.service #停止开机自启动
  systemctl status redis.service #查看服务当前状态
  systemctl restart redis.service  #重新启动服务
  systemctl list-units --type=service #查看所有已启动的服务

7.测试代码

CentOS 7下Redis5安装部署与开机自启动

引入jar包:

代码:

public class JedisTest {

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/410a824e06f1316ce967045c58bc1b34.html