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
+18.1k Golang : Get path name to current directory or folder
+7.9k Golang : Routes multiplexer routing example with regular expression control
+8.7k Golang : GMail API create and send draft with simple upload attachment example
+8.1k Your page has meta tags in the body instead of the head
+6.7k Golang : Fibonacci number generator examples
+11.7k Golang : Determine if time variables have same calendar day
+13k Golang : Date and Time formatting
+29.1k Golang : Record voice(audio) from microphone to .WAV file
+12.1k Golang : Get month name from date example
+12.6k Golang : Convert int(year) to time.Time type
+5.2k Golang : Intercept, inject and replay HTTP traffics from web server
+13.2k Golang : Read from buffered reader until specific number of bytes