Difference between revisions of "APPSHEET"

From rbachwiki
Jump to navigation Jump to search
(Created page with "== Fix permission error when connecting to a mysql database == '''On the mysql server, loginto mysql then run command''' ALTER USER 'bacchas'@'%' IDENTIFIED WITH mysql_native_password BY 'Outwater24!'; FLUSH PRIVILEGES;")
 
 
Line 2: Line 2:
'''On the mysql server, loginto mysql then run command'''
'''On the mysql server, loginto mysql then run command'''


  ALTER USER 'bacchas'@'%' IDENTIFIED WITH mysql_native_password BY 'Outwater24!';
  ALTER USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'password!';
  FLUSH PRIVILEGES;
  FLUSH PRIVILEGES;

Latest revision as of 14:58, 6 October 2025

Fix permission error when connecting to a mysql database

On the mysql server, loginto mysql then run command

ALTER USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'password!';
FLUSH PRIVILEGES;