To reset MySql root password on Ubuntu, you can use following commands.

1. Stop MySql Service on server

sudo /etc/init.d/mysql stop

2. Now configure mysqld

sudo mysqld –skip-grant-tables &

3. Login into MySql as root

mysql -u root mysql

4. Reset old password with new

UPDATE user SET Password=PASSWORD(‘NewPassword’) WHERE User=’root’; FLUSH PRIVILEGES; exit;

Note :: Replace NewPassword with required mysql root password.

Apache Manual Installation

Apache can install manually with the help of following steps.

#cd /usr/local/src
#wget http://archive.apache.org/dist/httpd/httpd-2.2.15.tar.gz
#tar xvfz httpd-2.2.15.tar.gz
#cd httpd-2.2.15
# ./configure –prefix=/usr/local/apache2
# make
# make install
# cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd

Now, Just you need to configure the apache modules which you want to install on the server.

./configure –with-layout=Apache –add-module=../mod_frontpage.c –enable-module=so –enable-module=ssl –enable-module=rewrite –enable-module=info –enable-module=expires –enable-module=headers –enable-module=proxy –enable-module=unique_id –enable-suexec –logfiledir=/usr/local/apache/logs –prefix=/usr/local/apache –suexec-caller=nobody –suexec-docroot=/ –suexec-gidmin=100 –suexec-logfile=/usr/local/apache/logs/suexec_log –suexec-uidmin=100 –suexec-userdir=public_html –sysconfdir=/usr/local/apache/conf

Note :: You can get required version of apache here

100% Customer Satisfaction