exim dead but subsys locked

3245

Verified User
Joined
Mar 28, 2013
Messages
34
hello
server was full HDD, i remove some file's and now have available 39%
when i run service exim status
out is:
[root@mail custombuild]#
service exim status exim dead but subsys locked

i rebuild exim and have not different. have again problem.

Please help me for resolve.

Thanks.
 
Try running these commands in order:

service exim stop
service exim start

The "service exim stop" will make sure that exim is not running and will remove the file /var/lock/subsys/exim (which is causing the locked subsys message). The start does what you think, starts exim back up again. If it goes down after that, then you need to start looking through the /var/log/exim/mainlog for anything that would cause it not to start again.
 
Try running these commands in order:

service exim stop
service exim start

The "service exim stop" will make sure that exim is not running and will remove the file /var/lock/subsys/exim (which is causing the locked subsys message). The start does what you think, starts exim back up again. If it goes down after that, then you need to start looking through the /var/log/exim/mainlog for anything that would cause it not to start again.

i do but not differen
[root@mail custombuild]# service exim stop
Shutting down exim:
[root@mail custombuild]# service exim start
Starting exim:
[root@mail custombuild]# service exim status
exim dead but subsys locked
[root@mail custombuild]#
 
User contacted me to fix the problem. The cause of the problem was not existing directory of exim logs. That was fixed by:
Code:
mkdir /var/log/exim
chown mail:mail /var/log/exim
 
Back
Top