Mysql user management: Revision history

From wikinotes

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

24 September 2022

9 September 2022

  • curprev 00:4600:46, 9 September 2022Will talk contribs 2,967 bytes +391 No edit summary
  • curprev 00:4500:45, 9 September 2022Will talk contribs 2,576 bytes +2,576 Created page with "= Root Password = <blockquote> == mysql-8.0 == <source lang="bash"> service mysql-server stop mysqld_safe --skip-networking mysql </source> <source lang="MySQL"> # mysql-8.0 ALTER USER 'root'@'localhost' IDENTIFIED BY 'root-password'; FLUSH PRIVILEGES; </source> == mysql-6.0 == <source lang="bash"> service mysql-server stop mysqld_safe --skip-grant-tables --skip-networking mysql </source> <source lang="MySQL"> # mysql-6.0 UPDATE mysql.USER SET authentication_string..."