From 86db2585623515fe38347811ec4bf46565d2c44b Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Fri, 25 Apr 2025 17:37:39 -0500 Subject: MySQL & Postgres Enhancements (#5) * remove mysql login script and add password script * move excess mysql password query to new script * add db admin folders * add postgres * add mongo admins script * Commit from GitHub Actions (Ruff) * update tests for mysql and postgres * update tests for mysql and postgres --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- databases/passwords/mysql/passwords.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 databases/passwords/mysql/passwords.sql (limited to 'databases/passwords/mysql/passwords.sql') diff --git a/databases/passwords/mysql/passwords.sql b/databases/passwords/mysql/passwords.sql new file mode 100644 index 0000000..1a5bf81 --- /dev/null +++ b/databases/passwords/mysql/passwords.sql @@ -0,0 +1,13 @@ +-- NOTE: Please review the server's "my.cnf" file for default values; +-- OR: run the "SHOW [GLOBAL | SESSION] VARIABLES" command(s) on the database. + +-- Authentication methods only +SELECT user, host, plugin FROM mysql.user; + +-- Default password configuration only +SHOW GLOBAL VARIABLES LIKE 'validate_password%'; +SHOW VARIABLES LIKE 'validate_password%'; + +-- Authentication methods and MySQL password configurations +-- Reference: https://mariadb.com/kb/en/mysql-user-table/ +SELECT * FROM mysql.user -- cgit v1.2.3-70-g09d2