While accessing FTP with SFTP,we get the following error: [wpfmb type=’error’ theme=2]No supported authentication methods available.[/wpfmb] If try to work with normal FTP and it might work fine but SFTP will not. For this just check the file /var/log/secure on the server,We find error message as: […]
Category: Cpanel
How to Restart Ruby on Rails from shell for a particular account
Following are the steps to restart ROR for a particular domain: root@server[#] cd /home/username root@server[#] cd rails_apps root@server[#] cd demo (Application name) root@server[#] mongrel_rails mongrel::restart Thats it! […]
Error:no version information available (required by php)
I was facing following error when I was trying to view the php version on the server: root@server [~]# php -v [wpfmb type=’error’ theme=2]php: /usr/lib/libmysqlclient.so.15: version`libmysqlclient_15′ not found (required by php) php: /opt/xml2/lib/libxml2.so.2: no version information available (required by php) php: /opt/xml2/lib/libxml2.so.2: no version information available (required by php) php: /opt/xml2/lib/libxml2.so.2: no version information available […]
rndc: connect failed: 127.0.0.1#953: connection refused
Your servers named service may go unresponsive with the following error logs: [wpfmb type=’error’ theme=2][root@server ~]# service named restart Stopping named: …………………………………….[FAILED] Starting named: named: already running [FAILED] rndc: connect failed: 127.0.0.1#953: connection refused[/wpfmb] For solution check the file /etc/sysconfig/named. You can locate the following line: ROOTDIR=”/var/named/chroot/” Comment the above statement #ROOTDIR=”/var/named/chroot/” Now restart the named […]
Roundcube error :SERVICE CURRENTLY NOT AVAILABLE! Error No. [500]
We were facing one of the following problem: [wpfmb type=’error’ theme=2]SERVICE CURRENTLY NOT AVAILABLE! Error No. [500][/wpfmb] This problem occurs because of Roundcube database structure has not updated properly. […]
There was an error manipulating the password file. This generally means you entered your old password incorrectly.
For some reasons when you try to change any password via cPanel, such as MySQL, FTP and password to cPanel, Get this error every time: [wpfmb type=’error’ theme=2]There was an error manipulating the password file. This generally means you entered your old password incorrectly.[/wpfmb] Even if you confirm the old password is correct, still you might face this […]
Problem with Roundcube
We were experiencing the following error with Roundcube: [wpfmb type=’error’ theme=2]Unexpected condition from IMAP server, closed or corrupt connection to IMAP. Possible mailbox corruption.[/wpfmb] Even the IMAP service on the server is running good but still facing the above error. […]
Error: Unable to open version.txt: No such file or directory at /usr/sbin/csf
Sometimes we face problems while starting the CSF firewall on the server and get the following mentioned error: [wpfmb type=’error’ theme=2]Unable to open version.txt: No such file or directory at /usr/sbin/csf line 1773.[/wpfmb] This error is basically due to the CSF version file missing on the server. To resolve this issue you can simply follow the […]
How to Zip a folder in linux?
You can zip a file easily in Linux, but creating a zip of a folder is a bit boring process. Following is a simple command to create a zip for a folder in Linux. zip -r zipfile.zip foldername You can add the option -9 to the command for best compression. [wpfmb type=’info’ theme=2]if you don’t […]
How to enable Innodb storage engine?
Data in MySQL is saved in data files (or memory) using a variety of different methods. Each of these methods implement different storage space systems, listing features, securing levels and eventually provide a range of different features and abilities. By selecting a different strategy you can gain additional speed or performance benefits that will enhance […]