8/14/2019

Ubuntu : Ubuntu 18.04 Change Pasword root phpmyadmin

Ubuntu : Ubuntu 18.04 Change Pasword root phpmyadmin

User เริ่มต้น เป็น : phpmyadmin
รหัสตั้งตอนลง pypmyadmin

ต้องการใช้ user root หรือ sa
  1. sudo mysql
  2. SELECT user,authentication_string,plugin,host FROM mysql.user;
ตั้งรหัสของ root ใหม่
  1. SET PASSWORD 'root'@'localhost'=PASSWORD('mynewpasword');

ถ้า Error ไม่ผ่านใช้คำสั่ง
  1. ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mynewpassword';

ตามด้วย
  1. FLUSH PRIVILEGES;
สร้าง User ใหม่ sa
  1. mysql -u root -p
  2. CREATE USER 'NewUser'@'localhost' IDENTIFIED BY 'NewPassword';
  3. GRANT ALL PRIVILEGES ON *.* TO 'NewUser'@'localhost' WITH GRANT OPTION;
  4. exit

https://linuxhint.com/install_phpmyadmin_ubuntu_1804/

No comments:

Post a Comment