Rebuilding/Restarting Exim Mail Server
When troubleshooting the Exim log file:
tail -f /var/log/exim_mainlog
If you need to restart or rebuild Exim, you can dump your databases
* /etc/exim.conf
* /var/spool/exim/db
Which Exim just rebuilds automatically by issuing the following command via SSH:
rm -fv /var/spool/exim/db/*
Then to start Exim:
/scripts/eximup –force

|

|

|

|

|

|
No related posts.
This entry was posted on February 17, 2010, 12:24 and is filed under Linux Tutorials. You can follow any responses to this entry through RSS 2.0.
You can leave a response, or trackback from your own site.
No trackbacks yet.
February 16, 2010 - 18:08
Tags: Linux, MySQL, Simlink, SSH
Posted in MySQL | No Comments
If you’re unable to restart mysqld and troubleshooting the cause: if u log into SSH and go to /tmp you may see that there is no simlink To create a simlink you can do the following: cd /var/lib/mysql/ touch mysql.sock chmod 1777 mysql.sock chown mysql.mysql mysql.sock Create a symlink for the sock file :- ln [...]