- Open your terminal and type the command:
sudo apt-get install phpmyadmin - It will ask for your password, type your ubuntu password and press enter key, it will ask for confirmation. Type
and press enter keyy - During the installation you will be prompted for a web server configuration. Select
and press EnterApache - Now you will be prompted for phpmyadmin configuration, select
no - In terminal run the command:
sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d - Restart your apache server:
sudo /etc/init.d/apache2 restart - Open your browser and type
http://localhost/phpmyadmin/ - Enter root for username and leave password field empty and click on Go
- You will get the following error:
when trying to login to your passwordless account;Login without a password is forbidden by configuration (see AllowNoPassword) - To enable AllowNoPassword, uncomment or add the following line in /etc/phpmyadmin/config.inc.php :
$cfg['Servers'][$i]['AllowNoPassword'] = TRUE; - To make this file editable in ubuntu, type in the terminal:
then press entercd /etc/phpmyadmin - Then type
gksu nautilus - Make necessary changes and save the file. Now type
in the browser and enter only the username as root and click on Go.http://localhost/phpmyadmin/
Wednesday, November 21, 2012
Installing phpmyadmin in ubuntu
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment