Category Archives: Servers

Linux : PHP Unable to load dynamic library ‘/usr/lib64/php/modules/module.so

Having this error on your RHEL/CentOS 6 Web server or issuing “php -v” command? PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib64/php/modules/module.so’ – /usr/lib64/php/modules/module.so: cannot open shared object file: No such file or directory in Unknown on line 0 Then you probably have “php-mcrypt” module installed. Apparently, the “mcrypt.ini” file do not have… Read More »

Linux : Unable to connect to xend: No such file or directory. Is xend running?

Ending up with this kind of error booting a guest machine on your Xen hypervisor? Running: xm create /cloud/config/hjxmogr553e5jx Using config file “/cloud/config/hjxmogr553e5jx”. Error: Unable to connect to xend: No such file or directory. Is xend running? Fatal: Virtual machine has not been started on hypervisor Executing Rollback… The two possible causes would be the… Read More »

Servers : How to manually test a SMTP connection using Telnet

Here is the steps required to test and send an e-mail using the command prompt and Telnet. See the commands required below : EHLO MAIL from: RCPT to: DATA From: To: Subject: . QUIT Here is an overview of what you’ll get with the commands in bold : # telnet smtp.domain.tld 25 Trying 0.0.0.0… Connected… Read More »

R1Soft : Could not authenticate agent

Having this error while trying to test connection between your machine and R1Soft server? ERROR: Could not authenticate agent ERROR: Agent authentication failed. ERROR: AGENT: host (0.0.0.0) port (00000) failed authentication ERROR: AGENT: RSA decrypt failed This mean your server have a different authentication key than expected. You need to remove the current key and… Read More »

Linux : newrelic.so: undefined symbol: php_end_ob_buffer after PHP upgrade

Getting this error for NewRelic module after PHP update from 5.3 to 5.4? newrelic.so: undefined symbol: php_end_ob_buffer in Unknown on line 0 This mean the module is not compatible with your new PHP version. To resolve this matter, follow these easy steps. Uninstall NewRelic completely : yum remove newrelic-daemon newrelic-sysmond newrelic-php5 newrelic-php5-common Then reinstall : yum… Read More »