Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Start the mysql Server without replication.

Code Block
titleCentOS 7.x
# Start - IMPORTANT - WITHOUT REPLICATION
systemctl set-environment MYSQLD_OPTS="--skip-slave-start"
systemctl start mysqld.service


Code Block
titleCentOS 6.x
# Start - IMPORTANT - WITHOUT REPLICATION
mysqld_safe --skip-slave-start &

Run mysql_upgrade

Either change the password in the following command, or simply use the -p option without specifying a password, and entering it at the prompt.

...