Esecuzione di Postgres come Launch Daemon

0

Sto lavorando alla creazione di un server psql e quindi mi piacerebbe che postgres fosse eseguito quando il computer è acceso, indipendentemente dal fatto che io abbia effettuato il login. (La macchina sta eseguendo OS X Yosemite.) Ho installato un demone di lancio per farlo, ma non funziona. syslog fornisce i seguenti messaggi di errore:

Jul 14 17:43:01 user@server sudo[276]:     jaia : TTY=ttys000 ; 
PWD=/Users/jaia ; USER=root ; COMMAND=/usr/bin/nano /Library/LaunchDaemons/homeb
rew.mxcl.postgresql.plist
Jul 14 17:44:35 localhost com.apple.xpc.launchd[1] (homebrew.mxcl.postgresql): T
his service is defined to be constantly running and is inherently inefficient.
Jul 14 17:44:44 localhost com.apple.xpc.launchd[1] (homebrew.mxcl.postgresql): S
ervice only ran for 9 seconds. Pushing respawn out by 1 seconds.
Jul 14 17:44:45 localhost com.apple.xpc.launchd[1] (homebrew.mxcl.postgresql): S
ervice only ran for 0 seconds. Pushing respawn out by 10 seconds.

Dopo questo, l'ultimo messaggio si ripete indefinitamente.

Ecco il mio file .plist. Il motivo per sudo -u _postgres è che postgres non può essere eseguito come root, che i daemon di lancio eseguono per impostazione predefinita.

<?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>KeepAlive</key>
  <true/>
  <key>Label</key>
  <string>homebrew.mxcl.postgresql</string>
  <key>ProgramArguments</key>
  <array>
    <string>sudo</string>
    <string>-u</string>
    <string>_postgres</string>
    <string>/usr/local/bin/pg_ctl</string>
    <string>-D</string>
    <string>/usr/local/var/postgres</string>
    <string>start</string>
  </array>
  <key>RunAtLoad</key>
  <true/>
  <key>UserName</key>
  <string>_postgres</string>
  <key>WorkingDirectory</key>
  <string>/usr/local/var/postgres</string>
  <key>StandardErrorPath</key>
  <string>/usr/local/var/postgres/server.log</string>
</dict>
</plist>

ULTERIORI INFORMAZIONI: il caricamento manuale del lavoro tramite ssh fornisce il messaggio di errore sgrammaticato "Impossibile trovare il dominio per". Caricalo sulla macchina stessa dà "/Library/LaunchDaemons/homebrew.mxcl.postgresql.plist: File esiste".

Che cosa potrebbe andare storto qui?

    
posta jaia 15.07.2015 - 07:20
fonte

1 risposta

1

Lascia il sudo , -u e _postgres in ProgramArguments . launchd si occupa di questo con la chiave UserName .

    
risposta data 15.07.2015 - 10:59
fonte

Leggi altre domande sui tag