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
+14.1k Golang : Find network of an IP address
+37.4k Golang : Read a text file and replace certain words
+11.3k How to tell if a binary(executable) file or web application is built with Golang?
+5.6k Fontello : How to load and use fonts?
+33.5k Golang : Proper way to set function argument default value
+13.5k Golang : Reverse IP address for reverse DNS lookup example
+6.9k Linux : How to fix Brother HL-1110 printing blank page problem
+13.7k Android Studio : Use image as AlertDialog title with custom layout example
+12.7k Golang : List objects in AWS S3 bucket
+30.8k Golang : How to convert(cast) string to IP address?
+11.9k Golang : Validate email address
+24k Golang : Time slice or date sort and reverse sort example