原文地址:http://www.jahng.cn/node/70
在 linux 系统上,要配置开机启动项很简单,只要在 /etc/rc.d/rc.local 里面写上想要开机执行的命令就可以了。
但是在 mac 上不存在 rc.local 这个东西,所以这篇文章记录下如何在 mac 系统上设置开机启动。
1. 执行以下命令创建 /Library/LaunchDaemons/localhost.rc.local.plist 文件
sudo vim /Library/LaunchDaemons/localhost.rc.local.plist
2. copy 以下内容到上面的文件里面
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0">
<dict>
<key>Label</key>
<string>localhost.rc.local</string>
<key>Disabled</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>LaunchOnlyOnce</key>
<true/>
<key>ProgramArguments</key>
<array>
<string>/etc/rc.local</string>
</array>
</dict></plist>
3. 使用 launchctl 添加为服务
cd /Library/LaunchDaemons
sudo launchctl load -w ./localhost.rc.local.plist
4. 使用以下命令创建 /etc/rc.local 文件
sudo vim /etc/rc.local
5. 使用以下命令修改 rc.local 的权限,使该文件可执行
sudo chmod +x /etc/rc.local
6. 可以在 rc.local 文件里面写入以下命令测试是否生效
/sbin/ifconfig lo0 alias 127.0.0.2
/usr/local/redis-5.0.7/bin/redis-server /etc/redis/redis.conf
键盘输入【:wq!】强制保存并退出 vim,回到终端的界面
7. 第 6 步写入文件后,使用 ifconfig lo0 查看是否设置生效