Archive for the “Control Panels” Category

Control Panels i work with, what i know and still learn about them

When performing installs on Fedora Core 6 you may run into the error below.

dependency error:
libsybdb.so.4 needed by package dsmphp

The problem is a conflicting freetds package within the Fedora extras reposistory. You can do one of two things to complete the install.

1. Add the below line to the /etc/yum.repos.d/fedora-extras.repo
exclude=freetds freetds-devel

2. Run the command:
yum clean all

Update!

Same error shows up under Centos 5 systems:

dependency error:
libsybdb.so.5 needed by package dsmphp

Fix:
1. Run: yum clean all

2. Download latest RHEL 5 or Centos 5 rpm packages for: freetds, freetds-devel and unixODBC and install them.

3. Run the installer again!

Comments No Comments »

I put together a small list of useful commands for Exim mail server, needless to say that i am using this commands on a day-to-day basis.

exim -bp – Shows exim mail queue
exim -M emailID – Force delivery of one message
exim -Mvl messageID – View Log for message
exim -Mvb messageID – View Body for message
exim -Mvh messageID – View Header for message
exim -Mrm messageID – Remove message (no errors sent)
exiqgrep -zi | xargs exim -Mrm – Remove all frozen emails in queue
exiqgrep -i -f '<example@example.com>' | xargs exim -Mrm – Delete the emails from that address
exiqgrep -i -o 172000 | xargs exim -Mrm – Delete the emails which were not delivered 2-3days
exim -bpc – Show emails number in queue
exim -d -bt your@email.com – To see where exim is delivering (resolving the mail) login to your server
exim -bpru |awk '{print $3}' | xargs -n 1 -P 40 exim -v -M – This will force the queue and will run multiple instances along

Comments No Comments »