launchctl unload dizer: Não foi possível encontrar o serviço especificado

0

Estou tentando fazer um arquivo plist para iniciar o nginx na inicialização. Ao iniciar o nginx com launchctl , ele inicia o serviço. Mas não pode descarregá-lo e imprimir "Não foi possível encontrar o serviço especificado".

$ ps aux | grep nginx
me (...) grep nginx

$ sudo launchctl load /System/Library/LaunchDaemons/nginx.plist 
(no output)

$ ps aux | grep nginx
me (...) grep nginx
nobody (...) nginx: worker process
root (...) nginx: master process /opt/nginx/sbin/nginx

$ sudo launchctl unload /System/Library/LaunchDaemons/nginx.plist 
/System/Library/LaunchDaemons/nginx.plist: Could not find specified service

Este é o conteúdo de /System/Library/LaunchDaemons/nginx.plist

$ cat /System/Library/LaunchDaemons/nginx.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>nginx</string>
    <key>Program</key><string>/opt/nginx/sbin/nginx</string>
    <key>KeepAlive</key><true/>
    <key>NetworkState</key><true/>
    <key>StandardErrorPath</key><string>/opt/nginx/logs/system.log</string>
    <key>LaunchOnlyOnce</key><true/>
  </dict>
</plist>

Qualquer ajuda apreciada. Felicidades

    
por Benj 08.10.2018 / 11:17

0 respostas