How to change MySQL password on Ubntu 11.10

Here are the steps to change or reset or set your MySQL password on a Ubuntu 11.10 or Linux machines. 1. Stop the mysql server using the following command: sudo /etc/init.d/mysql stop 2. Start the mysqld demon process using the –skip-grant-tables option with the following command: sudo /usr/sbin/mysqld –skip-grant-tables –skip-networking & 3. Start the mysql… Continue reading How to change MySQL password on Ubntu 11.10

Steps to install Apache, MySQL, PHP, PhpMyAdmin over Ubuntu 11.10

Here is a brief description of installing the top most Web-Application developments tools for LAMP Technologies (Linux, Apache, MySQL, PHP). Here, I’m presuming that you already have a Linux machine with Ubuntu(likely v11.10). Steps to install Apache2 Server: sudo apt-get install apache2 Steps to install MySQL5 Client and Server: sudo apt-get install mysql-server mysql-client Steps to… Continue reading Steps to install Apache, MySQL, PHP, PhpMyAdmin over Ubuntu 11.10