1. Open your browser
2. In browser type : ftp://
3. Enter ftp password.
You will redirect to home ftp directory.
sudo apt-get purge mysql-server
sudo apt-get purge mysql-client
sudo apt-get purge mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
sudo rm -fr /var/lib/mysql
sudo apt-get install aliensudo alien -i MySQL-server-5.5.14-1.linux2.6.x86_64.rpm --scriptssudo alien -i MySQL-client-5.5.14-1.linux2.6.x86_64.rpm --scriptssudo apt-get install libaio1 libaio-dev
sudo /usr/sbin/mysqld --skip-grant &
sudo /etc/init.d/mysql start
Before command failure :
ALTER TABLE tableName ADD column columnName dataType primary key auto_increment BEFORE secondColumnName;
Above command may fail. Because you cannot add first column with 'before' command. Use FIRST replacing BEFORE keyword and you should be good