So I started to investigate two particular issues which are now part of the systems environment:
- Code: Select all
systemctl --all | grep pop
poprelay-iptc.service loaded failed failed POP Relay info for remote Sendmail communications.
poprelay.service loaded failed failed POP Relay info for remote Sendmail communications.
So I attempted to restart the first service.
- Code: Select all
systemctl start poprelay-itpc.service
Failed to issue method call: Unit poprelay-itpc.service failed to load: No such file or directory. See system logs and 'systemctl status poprelay-itpc.service' for details.
This brings me to the status:
- Code: Select all
systemctl status poprelay-itpc.service
poprelay-itpc.service
Loaded: error (Reason: No such file or directory)
Active: inactive (dead)
Interestingly enough, I challenged the error message:
- Code: Select all
find /etc -name "poprelay*" -print
/etc/systemd/system/multi-user.target.wants/poprelay-iptc.service
/etc/systemd/system/multi-user.target.wants/poprelay.service
/etc/systemd/system/poprelay-iptc.service
/etc/systemd/system/poprelay.service
/etc/mail/poprelay.conf
/etc/mail/mail/poprelay.conf
Hmm, that looks like the files are there, better check to see if I can execute the process manually:
- Code: Select all
more /etc/systemd/system/multi-user.target.wants/poprelay-iptc.service
[Unit]
Description=POP Relay info for remote Sendmail communications.
[Service]
ExecStart=/sysadm/scripts/poprelayd-ABS-iptc.pl -dn
Restart=always
[Install]
WantedBy=multi-user.target
Hmm, looks like I can start this manually:
- Code: Select all
ps ax | grep -i pop
12394 pts/0 S 0:00 /usr/bin/perl /sysadm/scripts/poprelayd-ABS-iptc.pl -dn
Can anyone explain what is happening here?
Thank you.