The Issue of the Day Before

重設本機上的 mysql 密碼

> sudo mysql
-- 新增使用者
-- CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'newpassword';
-- 既有使用者
ALTER USER 'newuser'@'localhost' IDENTIFIED BY 'newpassword';
-- 設定權限
GRANT ALL PRIVILEGES ON *.* TO 'newuser'@'localhost';
-- 更新資料
FLUSH PRIVILEGES;