How to create Database in ubuntu with command line

Please follow the below commands to create a database and user in ubuntu with command line

  1. mysql -u root
  2. CREATE DATABASE new_database;
  3. CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
  4. GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'lo
  5. FLUSH PRIVILEGES;
  6. exit;
  • database, ubuntu, ssh, comandline
  • 25 Utilisateurs l'ont trouvée utile
Cette réponse était-elle pertinente?

Articles connexes

Backup restoration

Since backups are saved at various nodes to avoid data loss, we manage the backup and...

How To allow SQL Express traffic in windows firewall

Please follow the below steps to allow SQL express communication in the firewall. Open SQL...

How to change SQL authentication in SQL Express

Please follow the below steps Login to SQL Express using SQL management studio. Right-click...

Set Up Sending of Email in Plesk

To Set Up Sending of Email in Plesk, You need to follow the below Points   1. Go to Tools...

How to check Port status of VPS

It may possible that the firewall has blocked a few ports and it is not accessible.  To check...

Powered by WHMCompleteSolution