Difference between phpMyAdmin and MySQL
MySQL is a database server (which comes with a command line client for it)
PHPMyAdmin is a (web application) client for MySQL.
MySql is server where your commands get executed and returns you data, It manages all about data while PhpMyAdmin is a web Application, with user friendly, easy to use GUI makes it easy to handle database, which is difficult to use on command line. So this will write and run commands for you on MySql server for you.
Other tools are :
1. dbeaver
Related Articles
Connecting to development database
Overview: Database Admin UI URL PHPMyAdmin https://pma.openxcell.dev Adminer https://adminer.openxcell.dev MySQL Databases: For all the application using mysql database https://pma.openxcell.dev serves the PHPMyAdmin Frontend. To access the ...
Installing phpMyAdmin and MySQL via Docker In local
Prerequisite: 1. Basic Understanding of Docker and Container : If you haven't attend any Docker 101 webinars and seminars, ask your TL to arrange one. 2. Docker is installed : Ref : ...
What & How : MySQL User
Run below commands to create MySQL user. 1. For local MySQL 1.CREATE USER 'username'@'%' IDENTIFIED BY 'password'; 2.GRANT ALL ON *.* TO 'username'@'%'; 2. For AWS RDS 1. CREATE USER 'username'@'%' IDENTIFIED BY 'password'; 2. GRANT SELECT, INSERT, ...
How do I create another master user for my RDS DB instance running MySQL?
1. Begin by getting a list of the permissions currently available to the master user by running the SHOW GRANTS command: mysql> SHOW GRANTS FOR 'master_user'; The command provides output similar to the following (note: "master_user" is the master ...
Basic Command For LAMP
Find largest files find / -size +10M -ls Server size (use/available) df -h Basic Command https://www.fastwebhost.in/blog/putty-30-useful-putty-commands-for-beginners/ Basic Git Command ...