How do I start the MySQL console in XAMPP
How do I start the MySQL console in XAMPP
in ubuntu : -
start mysql using the command
sudo /opt/lampp/lampp startmysql
and find path of mysql , it will be placed in bin directory of lampp, then login
/opt/lampp/bin/mysql -u root
In Window : -
step 1 go to this location
cd xampp\mysql\bin
start mysql using the command
mysql -u root
0 Comments