Where is my phpMyAdmin installation?












37














I just finished installing mysql-server, and then installed phpmyadmin which came with Apache and PHP. It set it up alright and made a phpMyAdmin database, but I can't seem to find the URL to get to it -- I tried going to http://my.server.ip/phpmyadmin but it doesn't seem to be there.



I can't find the location in any of the manuals, does anyone know where this is located? Thanks.










share|improve this question






















  • Try restarting apache, it should be in /phpmyadmin.
    – Nemo
    Jul 26 '12 at 2:09


















37














I just finished installing mysql-server, and then installed phpmyadmin which came with Apache and PHP. It set it up alright and made a phpMyAdmin database, but I can't seem to find the URL to get to it -- I tried going to http://my.server.ip/phpmyadmin but it doesn't seem to be there.



I can't find the location in any of the manuals, does anyone know where this is located? Thanks.










share|improve this question






















  • Try restarting apache, it should be in /phpmyadmin.
    – Nemo
    Jul 26 '12 at 2:09
















37












37








37


9





I just finished installing mysql-server, and then installed phpmyadmin which came with Apache and PHP. It set it up alright and made a phpMyAdmin database, but I can't seem to find the URL to get to it -- I tried going to http://my.server.ip/phpmyadmin but it doesn't seem to be there.



I can't find the location in any of the manuals, does anyone know where this is located? Thanks.










share|improve this question













I just finished installing mysql-server, and then installed phpmyadmin which came with Apache and PHP. It set it up alright and made a phpMyAdmin database, but I can't seem to find the URL to get to it -- I tried going to http://my.server.ip/phpmyadmin but it doesn't seem to be there.



I can't find the location in any of the manuals, does anyone know where this is located? Thanks.







mysql phpmyadmin






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jul 26 '12 at 1:52









Mark

186123




186123












  • Try restarting apache, it should be in /phpmyadmin.
    – Nemo
    Jul 26 '12 at 2:09




















  • Try restarting apache, it should be in /phpmyadmin.
    – Nemo
    Jul 26 '12 at 2:09


















Try restarting apache, it should be in /phpmyadmin.
– Nemo
Jul 26 '12 at 2:09






Try restarting apache, it should be in /phpmyadmin.
– Nemo
Jul 26 '12 at 2:09












9 Answers
9






active

oldest

votes


















41














You just need to make a symbolic link to the installation in your server root. Mine is in /var/www/ (though check your DocumentRoot as default is often /var/www/html) so:



sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin


After that, you'll be able to access trough localhost:



http://localhost/phpmyadmin


As for why is not installed by default in its right location, or the installer creates a symbolic link itself, I have no idea...






share|improve this answer























  • This is what I do and it has always worked.
    – Parto
    Feb 28 '14 at 22:18






  • 8




    If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
    – Dmytro Dzyubak
    May 2 '15 at 0:00












  • After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
    – kneeki
    May 16 '17 at 0:37



















5














This answer is little bit more generic. To know the list of files installed by any package you have to do this




  1. Get the name of the package with dpkg --list | grep phpmyadmin

  2. For list of file installed use this dpkg --listfiles <package_name step 1>






share|improve this answer





























    2














    I imagine that you probably are facing the same issue that I had the first time I installed phpmyadmin. Considering it's been over a year since you asked this, I'm assuming you've figured it out by now, but for future reference for others, if you can't see it when going to http://yourdomain.com/phpmyadmin, you probably need to reconfigure the package, and make sure that you place a checkbox in the apache2 box (assuming that's what you're using for your server) by pressing the spacebar before you continue. I was going quickly and just pressed enter, not realizing that I hadn't selected apache2. To reconfigure the package, use the following:



    sudo dpkg-reconfigure phpmyadmin





    share|improve this answer





















    • Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
      – SRDC
      Aug 26 '16 at 2:56



















    1














    Oh, usually the phpmyadmin goes to /usr/lib/phpmyadmin if I'm not wrong.



    I always need to move the folder to my www path.






    share|improve this answer



















    • 2




      Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
      – animaletdesequia
      Nov 23 '13 at 22:54












    • yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
      – RagazziD
      Nov 24 '13 at 3:21






    • 1




      I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
      – animaletdesequia
      Nov 24 '13 at 15:51










    • you are right, u just solve the problem (:
      – RagazziD
      Nov 24 '13 at 18:44



















    0














    Presumably you have Apache installed and that's what you use as your main web server (ie, it listens on port 80). If you have not done (much) customisation to your Apache install, it should be accessible at:



    http://localhost/phpmyadmin/


    (If you're accessing the server from a different machine, then obviously substitute localhost).



    The installer for phpMyAdmin installs a config file into /etc/apache2/conf.d/ called phpmyadmin, which sets up an alias. Look at this file to see how it works and where it should appear on your website.



    If you have modified your Apache configuration, it's possible though unlikely that you have done something which overrides the directives in that phpmyadmin config file. In which case you should be able to fix phpmyadmin's configuration yourself to get it working how you like it.






    share|improve this answer





























      0














      http://127.0.0.1/phpmyadmin



      or also http://::1/phpmyadmin or http://localhost/phpmyadmin



      read: https://en.wikipedia.org/wiki/Localhost



      also, type "ip addr" to see your public address (or semi-public with NAT)






      share|improve this answer





























        0














        Try using:
        <server_ip or localhost>/phpmyadmin/index.php

        That might just do the trick. In the past this one solved it for me.






        share|improve this answer





























          0














          In my case I had it under



          /usr/local/phpMyAdmin-*


          I guess you can always try to find it through (some) httpd configuration file.






          share|improve this answer





























            0














            For me it worked out differently.



            I've had to copy the apache.conf file from /etc/phpmyadmin to /etc/apache2/sites-available and to /etc/apache2/sites-enabled using file manager as root.



            Then I ran sudo service apache2 restart and everything was just fine.



            Hope it's usefull.






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "89"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f168191%2fwhere-is-my-phpmyadmin-installation%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              9 Answers
              9






              active

              oldest

              votes








              9 Answers
              9






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              41














              You just need to make a symbolic link to the installation in your server root. Mine is in /var/www/ (though check your DocumentRoot as default is often /var/www/html) so:



              sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin


              After that, you'll be able to access trough localhost:



              http://localhost/phpmyadmin


              As for why is not installed by default in its right location, or the installer creates a symbolic link itself, I have no idea...






              share|improve this answer























              • This is what I do and it has always worked.
                – Parto
                Feb 28 '14 at 22:18






              • 8




                If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
                – Dmytro Dzyubak
                May 2 '15 at 0:00












              • After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
                – kneeki
                May 16 '17 at 0:37
















              41














              You just need to make a symbolic link to the installation in your server root. Mine is in /var/www/ (though check your DocumentRoot as default is often /var/www/html) so:



              sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin


              After that, you'll be able to access trough localhost:



              http://localhost/phpmyadmin


              As for why is not installed by default in its right location, or the installer creates a symbolic link itself, I have no idea...






              share|improve this answer























              • This is what I do and it has always worked.
                – Parto
                Feb 28 '14 at 22:18






              • 8




                If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
                – Dmytro Dzyubak
                May 2 '15 at 0:00












              • After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
                – kneeki
                May 16 '17 at 0:37














              41












              41








              41






              You just need to make a symbolic link to the installation in your server root. Mine is in /var/www/ (though check your DocumentRoot as default is often /var/www/html) so:



              sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin


              After that, you'll be able to access trough localhost:



              http://localhost/phpmyadmin


              As for why is not installed by default in its right location, or the installer creates a symbolic link itself, I have no idea...






              share|improve this answer














              You just need to make a symbolic link to the installation in your server root. Mine is in /var/www/ (though check your DocumentRoot as default is often /var/www/html) so:



              sudo ln -s /usr/share/phpmyadmin/ /var/www/phpmyadmin


              After that, you'll be able to access trough localhost:



              http://localhost/phpmyadmin


              As for why is not installed by default in its right location, or the installer creates a symbolic link itself, I have no idea...







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Apr 29 '15 at 17:46









              David Foerster

              27.7k1364109




              27.7k1364109










              answered Nov 23 '13 at 22:34









              animaletdesequia

              6,57741938




              6,57741938












              • This is what I do and it has always worked.
                – Parto
                Feb 28 '14 at 22:18






              • 8




                If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
                – Dmytro Dzyubak
                May 2 '15 at 0:00












              • After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
                – kneeki
                May 16 '17 at 0:37


















              • This is what I do and it has always worked.
                – Parto
                Feb 28 '14 at 22:18






              • 8




                If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
                – Dmytro Dzyubak
                May 2 '15 at 0:00












              • After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
                – kneeki
                May 16 '17 at 0:37
















              This is what I do and it has always worked.
              – Parto
              Feb 28 '14 at 22:18




              This is what I do and it has always worked.
              – Parto
              Feb 28 '14 at 22:18




              8




              8




              If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
              – Dmytro Dzyubak
              May 2 '15 at 0:00






              If the Apache2 Default Page (index.html document that You access as localhost/index.html) is located in /var/www/html/, You have to execute sudo ln -s /usr/share/phpmyadmin/ /var/www/html/phpmyadmin Had to make this after upgrading to Apache 2.4. Now everything works fine, thanks.
              – Dmytro Dzyubak
              May 2 '15 at 0:00














              After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
              – kneeki
              May 16 '17 at 0:37




              After freshly installing Apache/2.4.18 on a Google Cloud server with PHP 7.0.15-0, the command provided by @DmytroDzyubak solved my issue.
              – kneeki
              May 16 '17 at 0:37













              5














              This answer is little bit more generic. To know the list of files installed by any package you have to do this




              1. Get the name of the package with dpkg --list | grep phpmyadmin

              2. For list of file installed use this dpkg --listfiles <package_name step 1>






              share|improve this answer


























                5














                This answer is little bit more generic. To know the list of files installed by any package you have to do this




                1. Get the name of the package with dpkg --list | grep phpmyadmin

                2. For list of file installed use this dpkg --listfiles <package_name step 1>






                share|improve this answer
























                  5












                  5








                  5






                  This answer is little bit more generic. To know the list of files installed by any package you have to do this




                  1. Get the name of the package with dpkg --list | grep phpmyadmin

                  2. For list of file installed use this dpkg --listfiles <package_name step 1>






                  share|improve this answer












                  This answer is little bit more generic. To know the list of files installed by any package you have to do this




                  1. Get the name of the package with dpkg --list | grep phpmyadmin

                  2. For list of file installed use this dpkg --listfiles <package_name step 1>







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 26 '12 at 6:12









                  Rituparna Kashyap

                  1512




                  1512























                      2














                      I imagine that you probably are facing the same issue that I had the first time I installed phpmyadmin. Considering it's been over a year since you asked this, I'm assuming you've figured it out by now, but for future reference for others, if you can't see it when going to http://yourdomain.com/phpmyadmin, you probably need to reconfigure the package, and make sure that you place a checkbox in the apache2 box (assuming that's what you're using for your server) by pressing the spacebar before you continue. I was going quickly and just pressed enter, not realizing that I hadn't selected apache2. To reconfigure the package, use the following:



                      sudo dpkg-reconfigure phpmyadmin





                      share|improve this answer





















                      • Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                        – SRDC
                        Aug 26 '16 at 2:56
















                      2














                      I imagine that you probably are facing the same issue that I had the first time I installed phpmyadmin. Considering it's been over a year since you asked this, I'm assuming you've figured it out by now, but for future reference for others, if you can't see it when going to http://yourdomain.com/phpmyadmin, you probably need to reconfigure the package, and make sure that you place a checkbox in the apache2 box (assuming that's what you're using for your server) by pressing the spacebar before you continue. I was going quickly and just pressed enter, not realizing that I hadn't selected apache2. To reconfigure the package, use the following:



                      sudo dpkg-reconfigure phpmyadmin





                      share|improve this answer





















                      • Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                        – SRDC
                        Aug 26 '16 at 2:56














                      2












                      2








                      2






                      I imagine that you probably are facing the same issue that I had the first time I installed phpmyadmin. Considering it's been over a year since you asked this, I'm assuming you've figured it out by now, but for future reference for others, if you can't see it when going to http://yourdomain.com/phpmyadmin, you probably need to reconfigure the package, and make sure that you place a checkbox in the apache2 box (assuming that's what you're using for your server) by pressing the spacebar before you continue. I was going quickly and just pressed enter, not realizing that I hadn't selected apache2. To reconfigure the package, use the following:



                      sudo dpkg-reconfigure phpmyadmin





                      share|improve this answer












                      I imagine that you probably are facing the same issue that I had the first time I installed phpmyadmin. Considering it's been over a year since you asked this, I'm assuming you've figured it out by now, but for future reference for others, if you can't see it when going to http://yourdomain.com/phpmyadmin, you probably need to reconfigure the package, and make sure that you place a checkbox in the apache2 box (assuming that's what you're using for your server) by pressing the spacebar before you continue. I was going quickly and just pressed enter, not realizing that I hadn't selected apache2. To reconfigure the package, use the following:



                      sudo dpkg-reconfigure phpmyadmin






                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Jun 6 '13 at 19:59









                      Dennis Beatty

                      211




                      211












                      • Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                        – SRDC
                        Aug 26 '16 at 2:56


















                      • Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                        – SRDC
                        Aug 26 '16 at 2:56
















                      Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                      – SRDC
                      Aug 26 '16 at 2:56




                      Did the trick after just moving files from one install to another. Forgot that I hadn't installed PHPMYADMIN. Thanks.
                      – SRDC
                      Aug 26 '16 at 2:56











                      1














                      Oh, usually the phpmyadmin goes to /usr/lib/phpmyadmin if I'm not wrong.



                      I always need to move the folder to my www path.






                      share|improve this answer



















                      • 2




                        Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                        – animaletdesequia
                        Nov 23 '13 at 22:54












                      • yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                        – RagazziD
                        Nov 24 '13 at 3:21






                      • 1




                        I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                        – animaletdesequia
                        Nov 24 '13 at 15:51










                      • you are right, u just solve the problem (:
                        – RagazziD
                        Nov 24 '13 at 18:44
















                      1














                      Oh, usually the phpmyadmin goes to /usr/lib/phpmyadmin if I'm not wrong.



                      I always need to move the folder to my www path.






                      share|improve this answer



















                      • 2




                        Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                        – animaletdesequia
                        Nov 23 '13 at 22:54












                      • yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                        – RagazziD
                        Nov 24 '13 at 3:21






                      • 1




                        I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                        – animaletdesequia
                        Nov 24 '13 at 15:51










                      • you are right, u just solve the problem (:
                        – RagazziD
                        Nov 24 '13 at 18:44














                      1












                      1








                      1






                      Oh, usually the phpmyadmin goes to /usr/lib/phpmyadmin if I'm not wrong.



                      I always need to move the folder to my www path.






                      share|improve this answer














                      Oh, usually the phpmyadmin goes to /usr/lib/phpmyadmin if I'm not wrong.



                      I always need to move the folder to my www path.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jun 26 '16 at 1:24









                      Gonzalo.-

                      1034




                      1034










                      answered Nov 23 '13 at 22:30









                      RagazziD

                      2615




                      2615








                      • 2




                        Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                        – animaletdesequia
                        Nov 23 '13 at 22:54












                      • yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                        – RagazziD
                        Nov 24 '13 at 3:21






                      • 1




                        I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                        – animaletdesequia
                        Nov 24 '13 at 15:51










                      • you are right, u just solve the problem (:
                        – RagazziD
                        Nov 24 '13 at 18:44














                      • 2




                        Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                        – animaletdesequia
                        Nov 23 '13 at 22:54












                      • yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                        – RagazziD
                        Nov 24 '13 at 3:21






                      • 1




                        I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                        – animaletdesequia
                        Nov 24 '13 at 15:51










                      • you are right, u just solve the problem (:
                        – RagazziD
                        Nov 24 '13 at 18:44








                      2




                      2




                      Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                      – animaletdesequia
                      Nov 23 '13 at 22:54






                      Is in /usr/share/phpmyadmin/ in my installation. Please correct me if I'm wrong.
                      – animaletdesequia
                      Nov 23 '13 at 22:54














                      yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                      – RagazziD
                      Nov 24 '13 at 3:21




                      yeah, perfect, you are totally right, and to make it work on localhost/phpmyadmin you must change some apache settings or move the folder to you www path
                      – RagazziD
                      Nov 24 '13 at 3:21




                      1




                      1




                      I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                      – animaletdesequia
                      Nov 24 '13 at 15:51




                      I find easier just ln the path to my server root, as I said in my answer, but I'm not an expert...
                      – animaletdesequia
                      Nov 24 '13 at 15:51












                      you are right, u just solve the problem (:
                      – RagazziD
                      Nov 24 '13 at 18:44




                      you are right, u just solve the problem (:
                      – RagazziD
                      Nov 24 '13 at 18:44











                      0














                      Presumably you have Apache installed and that's what you use as your main web server (ie, it listens on port 80). If you have not done (much) customisation to your Apache install, it should be accessible at:



                      http://localhost/phpmyadmin/


                      (If you're accessing the server from a different machine, then obviously substitute localhost).



                      The installer for phpMyAdmin installs a config file into /etc/apache2/conf.d/ called phpmyadmin, which sets up an alias. Look at this file to see how it works and where it should appear on your website.



                      If you have modified your Apache configuration, it's possible though unlikely that you have done something which overrides the directives in that phpmyadmin config file. In which case you should be able to fix phpmyadmin's configuration yourself to get it working how you like it.






                      share|improve this answer


























                        0














                        Presumably you have Apache installed and that's what you use as your main web server (ie, it listens on port 80). If you have not done (much) customisation to your Apache install, it should be accessible at:



                        http://localhost/phpmyadmin/


                        (If you're accessing the server from a different machine, then obviously substitute localhost).



                        The installer for phpMyAdmin installs a config file into /etc/apache2/conf.d/ called phpmyadmin, which sets up an alias. Look at this file to see how it works and where it should appear on your website.



                        If you have modified your Apache configuration, it's possible though unlikely that you have done something which overrides the directives in that phpmyadmin config file. In which case you should be able to fix phpmyadmin's configuration yourself to get it working how you like it.






                        share|improve this answer
























                          0












                          0








                          0






                          Presumably you have Apache installed and that's what you use as your main web server (ie, it listens on port 80). If you have not done (much) customisation to your Apache install, it should be accessible at:



                          http://localhost/phpmyadmin/


                          (If you're accessing the server from a different machine, then obviously substitute localhost).



                          The installer for phpMyAdmin installs a config file into /etc/apache2/conf.d/ called phpmyadmin, which sets up an alias. Look at this file to see how it works and where it should appear on your website.



                          If you have modified your Apache configuration, it's possible though unlikely that you have done something which overrides the directives in that phpmyadmin config file. In which case you should be able to fix phpmyadmin's configuration yourself to get it working how you like it.






                          share|improve this answer












                          Presumably you have Apache installed and that's what you use as your main web server (ie, it listens on port 80). If you have not done (much) customisation to your Apache install, it should be accessible at:



                          http://localhost/phpmyadmin/


                          (If you're accessing the server from a different machine, then obviously substitute localhost).



                          The installer for phpMyAdmin installs a config file into /etc/apache2/conf.d/ called phpmyadmin, which sets up an alias. Look at this file to see how it works and where it should appear on your website.



                          If you have modified your Apache configuration, it's possible though unlikely that you have done something which overrides the directives in that phpmyadmin config file. In which case you should be able to fix phpmyadmin's configuration yourself to get it working how you like it.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jul 26 '12 at 5:21









                          thomasrutter

                          26.4k46389




                          26.4k46389























                              0














                              http://127.0.0.1/phpmyadmin



                              or also http://::1/phpmyadmin or http://localhost/phpmyadmin



                              read: https://en.wikipedia.org/wiki/Localhost



                              also, type "ip addr" to see your public address (or semi-public with NAT)






                              share|improve this answer


























                                0














                                http://127.0.0.1/phpmyadmin



                                or also http://::1/phpmyadmin or http://localhost/phpmyadmin



                                read: https://en.wikipedia.org/wiki/Localhost



                                also, type "ip addr" to see your public address (or semi-public with NAT)






                                share|improve this answer
























                                  0












                                  0








                                  0






                                  http://127.0.0.1/phpmyadmin



                                  or also http://::1/phpmyadmin or http://localhost/phpmyadmin



                                  read: https://en.wikipedia.org/wiki/Localhost



                                  also, type "ip addr" to see your public address (or semi-public with NAT)






                                  share|improve this answer












                                  http://127.0.0.1/phpmyadmin



                                  or also http://::1/phpmyadmin or http://localhost/phpmyadmin



                                  read: https://en.wikipedia.org/wiki/Localhost



                                  also, type "ip addr" to see your public address (or semi-public with NAT)







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Jul 26 '12 at 5:25









                                  user72421

                                  2,221188




                                  2,221188























                                      0














                                      Try using:
                                      <server_ip or localhost>/phpmyadmin/index.php

                                      That might just do the trick. In the past this one solved it for me.






                                      share|improve this answer


























                                        0














                                        Try using:
                                        <server_ip or localhost>/phpmyadmin/index.php

                                        That might just do the trick. In the past this one solved it for me.






                                        share|improve this answer
























                                          0












                                          0








                                          0






                                          Try using:
                                          <server_ip or localhost>/phpmyadmin/index.php

                                          That might just do the trick. In the past this one solved it for me.






                                          share|improve this answer












                                          Try using:
                                          <server_ip or localhost>/phpmyadmin/index.php

                                          That might just do the trick. In the past this one solved it for me.







                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Jul 26 '12 at 6:04









                                          saji89

                                          9,80753559




                                          9,80753559























                                              0














                                              In my case I had it under



                                              /usr/local/phpMyAdmin-*


                                              I guess you can always try to find it through (some) httpd configuration file.






                                              share|improve this answer


























                                                0














                                                In my case I had it under



                                                /usr/local/phpMyAdmin-*


                                                I guess you can always try to find it through (some) httpd configuration file.






                                                share|improve this answer
























                                                  0












                                                  0








                                                  0






                                                  In my case I had it under



                                                  /usr/local/phpMyAdmin-*


                                                  I guess you can always try to find it through (some) httpd configuration file.






                                                  share|improve this answer












                                                  In my case I had it under



                                                  /usr/local/phpMyAdmin-*


                                                  I guess you can always try to find it through (some) httpd configuration file.







                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Nov 5 at 10:08









                                                  PJunior

                                                  280212




                                                  280212























                                                      0














                                                      For me it worked out differently.



                                                      I've had to copy the apache.conf file from /etc/phpmyadmin to /etc/apache2/sites-available and to /etc/apache2/sites-enabled using file manager as root.



                                                      Then I ran sudo service apache2 restart and everything was just fine.



                                                      Hope it's usefull.






                                                      share|improve this answer




























                                                        0














                                                        For me it worked out differently.



                                                        I've had to copy the apache.conf file from /etc/phpmyadmin to /etc/apache2/sites-available and to /etc/apache2/sites-enabled using file manager as root.



                                                        Then I ran sudo service apache2 restart and everything was just fine.



                                                        Hope it's usefull.






                                                        share|improve this answer


























                                                          0












                                                          0








                                                          0






                                                          For me it worked out differently.



                                                          I've had to copy the apache.conf file from /etc/phpmyadmin to /etc/apache2/sites-available and to /etc/apache2/sites-enabled using file manager as root.



                                                          Then I ran sudo service apache2 restart and everything was just fine.



                                                          Hope it's usefull.






                                                          share|improve this answer














                                                          For me it worked out differently.



                                                          I've had to copy the apache.conf file from /etc/phpmyadmin to /etc/apache2/sites-available and to /etc/apache2/sites-enabled using file manager as root.



                                                          Then I ran sudo service apache2 restart and everything was just fine.



                                                          Hope it's usefull.







                                                          share|improve this answer














                                                          share|improve this answer



                                                          share|improve this answer








                                                          edited Dec 11 at 14:37









                                                          Mr Shunz

                                                          2,1901922




                                                          2,1901922










                                                          answered Dec 11 at 14:11









                                                          Dimitar Fenerski

                                                          1




                                                          1






























                                                              draft saved

                                                              draft discarded




















































                                                              Thanks for contributing an answer to Ask Ubuntu!


                                                              • Please be sure to answer the question. Provide details and share your research!

                                                              But avoid



                                                              • Asking for help, clarification, or responding to other answers.

                                                              • Making statements based on opinion; back them up with references or personal experience.


                                                              To learn more, see our tips on writing great answers.





                                                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                                              Please pay close attention to the following guidance:


                                                              • Please be sure to answer the question. Provide details and share your research!

                                                              But avoid



                                                              • Asking for help, clarification, or responding to other answers.

                                                              • Making statements based on opinion; back them up with references or personal experience.


                                                              To learn more, see our tips on writing great answers.




                                                              draft saved


                                                              draft discarded














                                                              StackExchange.ready(
                                                              function () {
                                                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f168191%2fwhere-is-my-phpmyadmin-installation%23new-answer', 'question_page');
                                                              }
                                                              );

                                                              Post as a guest















                                                              Required, but never shown





















































                                                              Required, but never shown














                                                              Required, but never shown












                                                              Required, but never shown







                                                              Required, but never shown

































                                                              Required, but never shown














                                                              Required, but never shown












                                                              Required, but never shown







                                                              Required, but never shown







                                                              Popular posts from this blog

                                                              flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                                                              Mangá

                                                               ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕