Clamd.conf file for CentOS

## ## Example config file for the Clam AV daemon ## Please read the clamd.conf(5) manual before editing this file. ## # Comment or remove the line below. #Example # Uncomment this option to enable logging. # LogFile must be writable for the user running daemon. # A full path is required. # Default: disabled … Read more

Check RAID

root@E31230211151 ~]# tw_cli //E31230211151> show Ctl Model (V)Ports Drives Units NotOpt RRate VRate BBU ———————————————————————— c0 9650SE-2LP 2 2 1 0 1 1 – //E31230211151> /c0 show Unit UnitType Status %RCmpl %V/I/M Stripe Size(GB) Cache AVrfy —————————————————————————— u0 RAID-1 VERIFYING – 2% – 1862.63 RiW ON VPort Status Unit Size Type Phy Encl-Slot Model —————————————————————————— … Read more

Change Exim Sending IP

If you want everyone on the server to send out on the same IP, just add the following to # nano /etc/mailips: *: xxx.xxx.xxx.xxx Then add the IP and it’s matching PTR to /etc/mail_reverse_dns: # nano /etc/mail_reverse_dns # xxx.xxx.xxx.xxx hostname.tld This will tell Exim to use that IP for any sender on the server. Restart … Read more

Cannot edit /etc/mailips on cPanel Server

Check /etc/mailips permissions: Code: # ls -lah /etc/mailips It should show the following: # ls -lah /etc/mailips -rw-r—– 1 root mail 0 Mar 11 21:40 /etc/mailips If it does not show root:mail for ownership, then fix that: # chown root:mail /etc/mailips If it doesn’t show 640 for file permissions, fix that: # chmod 640 /etc/mailips … Read more

FTP Errors on CentOS

AI_NODATA – No address associated with nodename error in your FTP client. Sometimes an EAI_NODATA error is also related to either a EHOSTUNREACH error, or an ECONNABORTED error as well. Command: MLSDError: Connection timed outError: Failed to retrieve directory listing Status: Waiting to retry…Status: Disconnected from serverStatus: Resolving address of robertlacylv.comStatus: Connection attempt failed with … Read more

Plesk Postfix error – Delivery to the following recipient failed permanently

An email sender to your server is getting a bounce message: Delivery to the following recipient failed permanently". Email logs show: Feb 3 11:57:52 mail postfix/cleanup[21623]: D4153A20130: milter-reject: END-OF-MESSAGE from mail-ob0-f181.google.com[209.85.214.181]: 5.7.1 Command rejected; from=<user@domain.org> to=<user@domain2.org> proto=ESMTP helo=<mail-ob0-f181.google.com> Resolution: Check the logs as the email is being rejected for a non SPF record: Feb 3 … Read more

Yum update errors for ghost update

Running yum update on CentOS 6.2 produces errors: yum update Error: Package: matahari-host-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-service-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidcommon.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidcommon.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 (base) Not found Error: Package: matahari-agent-lib-0.4.4-11.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) Requires: libqpidclient.so.5()(64bit) Removing: qpid-cpp-client-0.12-6.el6.x86_64 (@anaconda-CentOS-201112091719.x86_64/6.2) libqpidclient.so.5()(64bit) Updated By: qpid-cpp-client-0.14-22.el6_3.x86_64 … Read more