LAMP ubuntu 11.04 how-to phpmyadmin?

Discussion in 'HOWTO-Related Questions' started by Heeter, Aug 21, 2011.

  1. Heeter

    Heeter Member

    Hi all,

    I am following the Ubuntu 11.04 LAMP how-to,

    I install the phpmyadmin, but it doesn't show up in webbrowser after install (http://192.168.0.100/phpmyadmin/). I checked in /var/www folder, and there is no /phpmyadmin folder.

    I tried reinstalling again, still no phpmyadmin.

    My phpinfo is showing up nicely, with mysql plugins.

    Any ideas?

    Heeter
     
    Last edited: Aug 21, 2011
  2. falko

    falko Super Moderator Howtoforge Staff

    Is there a phpMyAdmin configuration file in the /etc/apache2/conf.d/ directory? If so, what's in it?
     
  3. Heeter

    Heeter Member

    Hi Falko, forgot to mention, this particular ubuntu server is sitting on Amazon EC2 cloud Service. It is just a virtual image anyways, though.

    This is all I see,

    Code:
    root@domU-12-31-39-04-45-E0:/home/ubuntu# cd /etc/apache2/conf.d/
    root@domU-12-31-39-04-45-E0:/etc/apache2/conf.d# ls -l
    total 16
    -rw-r--r-- 1 root root  269 2011-02-22 18:32 charset
    lrwxrwxrwx 1 root root   45 2011-08-20 06:00 javascript-common.conf -> /etc/javascript-common/javascript-common.conf
    -rw-r--r-- 1 root root 3296 2011-02-22 18:32 localized-error-pages
    -rw-r--r-- 1 root root  143 2011-02-22 18:32 other-vhosts-access-log
    -rw-r--r-- 1 root root 1424 2011-02-22 18:32 security
    root@domU-12-31-39-04-45-E0:/etc/apache2/conf.d# 
    

    Thanks Falko

    Heeter
     
    Last edited: Aug 21, 2011
  4. falko

    falko Super Moderator Howtoforge Staff

    Try the following:
    Code:
    cd /etc/apache2/conf.d/
    ln -s ../../phpmyadmin/apache.conf phpmyadmin.conf
    /etc/init.d/apache2 restart
     
  5. Heeter

    Heeter Member

    Your my hero, Falko

    Thanks for this, working now.

    Heeter
     

Share This Page