Come eseguire un'app non-brew all'avvio in macOS Sierra

2

Ho dovuto installare una versione precedente di Elasticsearch (2.3.3) dal sorgente. Il binario si trova in /opt/local/elasticsearch-2.3.3/bin/ Ho creato il seguente file

/Library/LaunchDaemons/org.elasticsearch.plist

<?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>org.elasticsearch</string>
        <key>ProgramArguments</key>
        <array>
            <string>/opt/local/elasticsearch-2.3.3/bin/elasticsearch</string>
        </array>
        <key>UserName</key>
        <string>root</string>
<!--         <key>GroupName</key>
        <string>staff</string> -->
        <key>WorkingDirectory</key>
        <string>/opt/local/elasticsearch-2.3.3/bin</string>
        <key>KeepAlive</key>
        <true/>
        <key>RunAtLoad</key>
        <true/>
    </dict>
</plist>

Quindi invio il seguente comando:

sudo launchctl load -w /Library/LaunchDaemons/org.elasticsearch.plist

Quando chiedo con sudo launchctl list | grep elastic restituisce org.elasticsearch . Ma quando controllo se elasticsearch è in esecuzione con ps ax | grep elastic non è in esecuzione.

C'è qualcosa di sbagliato nel mio file .plist ?

    
posta mikeglaz 17.08.2017 - 00:23
fonte

1 risposta

2

Elasticsearch non deve essere eseguito come root. Quindi rimuovi il plist dal database launchd, sposta il plist in / Library / LaunchAgents (o ~ / Library / LaunchAgents), crea / opt / local / var e modificalo leggermente:

<?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>EnvironmentVariables</key>
    <dict>
        <key>VAR</key>
        <string>VAL</string>
    </dict>
    <key>KeepAlive</key>
    <false/>
    <key>Label</key>
    <string>org.elasticsearch</string>
    <key>ProgramArguments</key>
    <array>
        <string>/opt/local/elasticsearch-2.3.3/bin/elasticsearch</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/tmp/org.elasticsearch.stderr</string>
    <key>StandardOutPath</key>
    <string>/tmp/org.elasticsearch.stdout</string>
    <key>WorkingDirectory</key>
    <string>/opt/local/var</string>
</dict>
</plist>

Quindi controlla /opt/local/elasticsearch-2.3.3 e le sue sottodirectory per i permessi appropriati, aggiungi EnvironmentVariables se necessario (o rimuovi la chiave & dict) e carica il plist.

Se tutto funziona correttamente, puoi rimuovere StandardErrorPath e StandardOutPath e le loro stringhe.

Puoi anche eseguirlo come demone ma con un utente diverso (cioè il tuo nome utente) - dipende dalle tue esigenze / ambiente.

    
risposta data 17.08.2017 - 03:50
fonte

Leggi altre domande sui tag