Como posso encontrar por que o 'rpc.gssd' é iniciado toda vez?

1

Eu tenho o SLES 12 e vi que toda vez que eu reinicializo meu computador, o processo rpc.gssd (que é o Kerberos) é iniciado automaticamente. Eu tentei desativá-lo usando systemctl , mas não há tal serviço. Tudo o que posso ver é um PID.

pgrep rpc.gssd

Como posso descobrir qual serviço dispara esse? Ou como posso desativá-lo permanentemente?

    
por drpaneas 09.09.2015 / 15:55

1 resposta

2

Tente:

systemctl status PID

Você deve ver algo assim:

$ systemctl status 16736
● salt-master.service - The Salt Master Server
  Loaded: loaded (/lib/systemd/system/salt-master.service; disabled; vendor preset: enabled)
  Active: active (running) since Thu 2015-09-10 05:11:21 MSK; 1min 8s ago
  Main PID: 16736 (salt-master)
  CGroup: /system.slice/salt-master.service
       ├─16736 /usr/bin/python /usr/local/bin/salt-master
       ├─16744 /usr/bin/python /usr/local/bin/salt-master
       ├─16751 /usr/bin/python /usr/local/bin/salt-master

systemctl (1) diz:

status [PATTERN...|PID...]]

Show terse runtime status information about one or more units, followed by most recent log data from the journal. If a PID is passed, show information about the unit the process belongs to.

    
por 10.09.2015 / 04:15