步骤 1:创建Redis服务文件
首先,我们需要在/etc/systemd/system/
目录下创建一个Redis服务的配置文件,例如redis.service
。可以使用任何文本编辑器打开一个新文件,并将以下内容复制到文件中:
[Unit]
Description=Redis In-Memory Data Store
After=network.target
[Service]
ExecStart=/usr/local/bin/redis-server /etc/redis.conf
ExecStop=/usr/local/bin/redis-cli shutdown
Restart=always
[Install]
WantedBy=multi-user.target
步骤 2:设置文件权限
设置Redis服务文件的权限,使其能够被系统识别和执行。在终端中运行以下命令:
sudo chmod 644 /etc/systemd/system/redis.service
sudo systemctl daemon-reload
步骤 3:启用Redis服务
启用Redis服务,并设置它在系统启动时自动启动。在终端中运行以下命令:
sudo systemctl enable redis.service
步骤 4:启动Redis服务
在终端中运行以下命令:
sudo systemctl start redis.service