1,将redis的启动文件放到shell脚本中执行
sudo vi redis-launchd.sh
#! /bin/sh
/usr/local/redis-4.0.9/bin/redis-server /usr/local/redis-4.0.9/etc/redis.conf
sudo chmod +x redis-launchd.sh2,将shell脚本注册到Launch中
sudo vi /Library/LaunchDaemons/io.redis.redis-server.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>io.redis.redis-server</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/redis-4.0.9/bin/redis-launchd.sh</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
参考:
http://www.joel.lopes-da-silva.com/2008/05/13/installing-tomcat-on-mac-os-x/
本文介绍如何在 Mac OS X 上通过创建 shell 脚本和使用 LaunchDaemons 服务来实现 Redis 服务器的自动启动。具体步骤包括编辑启动脚本并赋予执行权限,然后创建 plist 文件注册服务,确保每次开机都能自动运行 Redis。

被折叠的 条评论
为什么被折叠?



