com.apple.emond continua sendo reiniciado

6

Meu log de sistema informa que o Event Monitor está sendo constantemente reiniciado e não tenho idéia do problema real.

system.log:

Oct 19 21:03:44 funkymachinename emond[51201]: SetUpLogs: uid = 0 gid = 0
Oct 19 21:03:44 funkymachinename emond[51201]: SetUpLogs: opening /Library/Logs/EventMonitor/EventMonitor.error.log
Oct 19 21:03:44 funkymachinename com.apple.xpc.launchd[1] (com.apple.emond): Service only ran for 0 seconds. Pushing respawn out by 10 seconds.

/Library/Logs/EventMonitor/EventMonitor.error.log:

Event Monitor Started 2014-10-19 20:52:02 +0200
No rules found in /private/etc/emond.d/rules/, quitting....
Event Monitor Shutdown at 2014-10-19 20:52:02 +0200

Verificando a pasta mencionada:

~ $ ll /private/etc/emond.d/rules/
total 0
drwxr-xr-x  3 root  wheel  102 Aug 30 04:55 .
drwxr-xr-x  4 root  wheel  136 Aug 30 04:55 ..
-rw-r--r--  1 root  wheel  822 Aug 30 04:55 SampleRules.plist

Eu comparei isso a uma instalação do OSX que não resgata constantemente e parece estar bem assim.

Qual pode ser o problema aqui?

    
por Till 19.10.2014 / 21:09

2 respostas

9

Eu vi esse mesmo comportamento após desinstalar o Server.app. Acredito que o consertei fazendo o seguinte:

sudo launchctl unload /System/Library/LaunchDaemons/com.apple.emond.plist

# remove the Server.app paths from the additionalRulesPaths array
sudo vi /etc/emond.d/emond.plist

sudo rm /var/db/emondClients/com.apple.server

sudo launchctl load /System/Library/LaunchDaemons/com.apple.emond.plist
    
por 16.12.2014 / 20:45
7

Abra o /private/etc/emond.d/rules/Sample.plist

Alterar

    <key>name</key>
    <string>sample rule</string>
    <key>enabled</key>
    <false/>

Para

    <key>name</key>
    <string>sample rule</string>
    <key>enabled</key>
    <true/>

A regra de amostra registra apenas o tempo de inicialização do daemon de monitoramento de eventos, mas dar a ele algo para fazer interrompe as constantes reinicializações do daemon.

    
por 28.10.2014 / 05:29