如果手动启动服务,是否可以通过 launchd 停止服务?

如果手动启动服务,是否可以通过 launchd 停止服务?

我使用 launchd 在启动时启动 mysql,它工作正常。我可以使用“launchctl unload”和“launchctl load”命令停止和启动服务。我还可以通过在终端中输入“mysqld_safe”命令来启动服务。但是,如果我通过“launchctl stop”停止服务,然后通过“mysqld_safe”命令启动服务,则无法通过“launchctl stop”停止服务。这可能吗?我在这里做错了什么?

我的 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>mysql.service</string>
        <key>ProgramArguments</key>
        <array>
                <string>/path/to/mysql/bin/mysqld_safe</string>
                <string>--defaults-file=/path/to/mysql/my.cnf</string>
                <string>--port=3306</string>
                <string>--socket=/path/to/mysql/tmp/mysql.sock</string>
                <string>--datadir=/path/to/mysql/data</string>
                <string>--log-error=/path/to/mysql/data/mysqld.log</string>
                <string>--pid-file=/path/to/mysql/data/mysqld.pid</string>
       </array>
       <key>RunAtLoad</key>
       <true/>
       <key>KeepAlive</key>
       <false/>
       <key>UserName</key>
       <string>_mysql</string>
       <key>GroupName</key>
       <string>_mysql</string>
    <key>StandardOutPath</key>
    <string>/tmp/mysql_start.out</string>
    <key>StandardErrorPath</key>
    <string>/tmp/mysql_start.err</string>

</dict>
</plist>

通过终端启动mysql的命令是:

mysqld_safe --defaults-file=/path/to/mysql/my.cnf --port=3306 --socket=/path/to/mysql/tmp/mysql.sock --datadir=/path/to/mysql/data --pid-file=/path/to/mysql/data/mysqld.pid

答案1

这是预期行为。launchctl stop对于尚未加载的作业,发布不起作用。

相关内容