Skip to content

Commit

Permalink
Update MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-Willemsen committed Oct 15, 2024
1 parent d7556a3 commit 0a91e3a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

MYSQL8_INSTALL_DIR = os.path.join(APPS_BASE_DIR, "MySQL")
MYSQL57_INSTALL_DIR = os.path.join("C:\\", "Program Files", "MySQL", "MySQL Server 5.7")
MYSQL_LATEST_VERSION = "8.0.39"
MYSQL_LATEST_VERSION = "8.4.2"
MYSQL_ZIP = os.path.join(
INST_SHARE_AREA,
"kits$",
Expand Down Expand Up @@ -239,7 +239,7 @@ def _setup_database_users_and_tables(self, vhd_install: bool = True) -> None:
"root",
"-e",
"ALTER USER 'root'@'localhost' "
f"IDENTIFIED WITH mysql_native_password BY '{sql_password}';FLUSH "
f"IDENTIFIED WITH caching_sha2_password BY '{sql_password}';FLUSH "
"privileges; ",
],
log_command_args=False, # To make sure password doesn't appear in jenkins log.
Expand Down

0 comments on commit 0a91e3a

Please sign in to comment.