Skip to main content

HOW-TO:- Solve phpmyadmin is not working but MySQL accessed using Ubuntu cmd

Here is the error:
==================================================

Not Found

The requested URL /phpmyadmin was not found on this server.

Apache/2.4.18 (Ubuntu) Server at localhost.com Port 80

==================================================

To solve this you need to open Terminal in Ubuntu and type the below commands.

  1. cd /etc/apache2 
  2. Give permission to apache2.conf to edit the file - sudo chmod -R 0777 apache2.conf
  3. Now, type vi apache2.conf the file will to edit, click i to bring terminator/terminal in editing mode
  4. Enter the line at the end of the file in apache2.confInclude /etc/phpmyadmin/apache.conf
  5. Save it by typing :wq! and hit Enter.
  6. Then restart apache by typing /etc/init.d/apache2 restart in terminal, it'll ask for system password to restart apache
  7. You can also start apache by using command - sudo service apache2 restart
    
    

Comments

Popular posts from this blog

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Indian HAL Tejas | Touch The Sky With Glory | ShotOnNikonD3500

Git Commands

  Git commands sorted. Reference: https://git-scm.com/docs Git task Notes Git commands Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name . git config --global user.name "Sam Smith" git config --global user.email sam@example.com Create a new local repository   git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository For a remote server, use: git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add <filename> git add * Commit Commit changes to head (but not yet to the remote repository): git commit -m "Commit message" Commit any files you've added with git add , and also commit any files you've changed since then: git commit -a Push Send changes to the master branch of your remote repository: git push origin master Status List the...

GraphQL vs REST

  GraphQL   GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. GraphQL can optimize RESTful API calls. It gives a declarative way of fetching and updating your data. GraphQL helps you to load data from server to client. It enables programmers to choose the types of requests they want to make. REST REST is a software architectural style that defines a set of constraints for creating web services. It is designed specifically for working with media components, files, or hardware device. The full form of REST is Representational State Transfer. ========================================================= Here is the important difference between GraphQL and REST. GraphQL REST GraphQL is an application layer server-side technology which is developed by Facebook for executing queries with existing data. REST is a software architectural style that defines a set of constraints for creating Web services. It follow...