Ubuntu 22.04.3 LTS 设置 Redis 开机自启动

  1. 编译安装
  2. 创建自启动服务
sudo vim /etc/systemd/system/redis.service

内容如下:

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

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

[Install]
WantedBy=multi-user.target
  1. 使启动生效
sudo systemctl enable redis

会在 /etc/systemd/system/multi-user.target.wants/ 下面生成一个 redis.service 的符号链接,这样开机自启动才会生效

你可能感兴趣的:(ubuntu,redis,linux)