Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Install and Configure MySQL Database Server
#1
To install MySQL Server on Linux call:
      sudo apt install mysql-server-8.0
      sudo mysql_secure_installation

If mysql_secure_installation does not offer to set root password, you can call:
      sudo mysql 
      ALTER USER 'root'@'localhost' IDENTIFIED BY 'new password' PASSWORD EXPIRE NEVER;

To create a new user dedicated to NodeActa server call:
      sudo mysql 
      CREATE USER 'NODEACTA'@'localhost' IDENTIFIED BY 'new password' PASSWORD EXPIRE NEVER;
      GRANT ALL PRIVILEGES ON *.* TO 'NODEACTA'@'localhost' WITH GRANT OPTION;
      FLUSH PRIVILEGES;
Reply


Messages In This Thread
Install and Configure MySQL Database Server - by boban - 11-23-2025, 06:42 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)