Linux/Unix : fatal: the Postfix mail system is already running
Problem :
Postfix throws out this error message :
fatal: the Postfix mail system is already running
when attempting to start postfix service. The strange thing is that the postfix daemon is not running. You can find out if the postfix service is running or not by issuing this command :
>service postfix status
postfix is not running.
Solution :
Chances are that the postfix's PID file was not deleted during previous shutdown or because of some other reason. Navigate to /var/spool/postfix/pid
and remove the master.pid
file.
Start the service again :
>service postfix start
and if every goes smoothly, it should produce this message :
Starting Postfix Mail Transport Agent: postfix
Hope this helps!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.8k Golang : Populate or initialize struct with values example
+19.1k Golang : Check if directory exist and create if does not exist
+4.6k Facebook : How to place save to Facebook button on your website
+6k Golang : Dealing with backquote
+3.3k Golang : Fix go-cron set time not working issue
+16.1k Golang : Loop each day of the current month example
+17.3k Golang : Linked list example
+10.5k Golang : Flip coin example
+7.1k Golang : Dealing with postal or zip code example
+23.8k Golang : Call function from another package
+27.4k PHP : Convert(cast) string to bigInt
+5.8k Golang : Function as an argument type example