About 187,000 results
Open links in new tab
  1. “mysql_secure_installation” asks for root password on Red Hat ...

    Nov 4, 2024 · On a brand new installation of mysql on RHEL 8, I'm not asked at any point to set a root password. When I run mysql_secure_installation, it asks for the password for user root.

  2. How to add an environment variable to a container in Docker Desktop ...

    Aug 14, 2023 · - MYSQL_ROOT_PASSWORD - MYSQL_ALLOW_EMPTY_PASSWORD - MYSQL_RANDOM_ROOT_PASSWORD Unfortunately, being new to Docker in general and to …

  3. mysql how to fix Access denied for user 'root'@'localhost'

    Jun 3, 2013 · ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'test'; Some other answers also have mentioned the native_password plugin but this is how you can do it …

  4. mysql doesn't ask for root password when installing

    Dec 4, 2020 · Unfortunately, some applications and services that depend on MySQL will fail if a root password is needed for authentication. The following method will allow you set a password, or reset …

  5. Access denied for user 'root'@'localhost' (using password: YES)

    TO 'root'@'X.X.X.X' IDENTIFIED BY PASSWORD '*root_user_password' WITH GRANT OPTION Note : Above command must be followed by FLUSH PRIVILEGES; & restart on MySQL service

  6. MySQL password restrictions? - Super User

    Nov 19, 2015 · I installed MySQL 5.5 on a fresh VM running Ubuntu 14 LTS through apt-get. During installation, I set a root user password generated by a password manager. After installation, I could …

  7. linux - How can I reset my MySQL root password in MySQL 8.0.36 on …

    Apr 3, 2024 · 1 There are definitely a lot of answers on the Internet pertaining to how to change the MySQL root user password. And the main takeaway I got from them in 2024 is this: The mysqld_safe …

  8. How Do I Reset My Root Password on MySQL on a Mac?

    How Do I Reset My Root Password on MySQL on a Mac? Ask Question Asked 15 years, 9 months ago Modified 11 years, 6 months ago

  9. What's the point of having mysql root password for root user?

    Sep 20, 2022 · 0 As a root user on Fedora I have install mysql server with a mysql root password . Then I forgot the password and used sudo mysqld_safe --skip-grant-tables & and bypassed the password , …

  10. Can't reset MySQL (MariaDB) root password - Super User

    Aug 2, 2015 · If not, update it with: UPDATE user SET password=PASSWORD("my_password") WHERE user="root"; Privileges parameters need to be saved explicitly: FLUSH PRIVILEGES; Then, …