Skip to content

Commit 275e1cb

Browse files
some text improvements
1 parent 8af5a27 commit 275e1cb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/upgrading/upgrade/upgrade_notes.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,29 +130,29 @@ without any changes.
130130

131131
If you are running MySQL 8.0 and would like to upgrade to MySQL 8.4,
132132
you may follow the standard MySQL upgrade process to migrate safely to version 8.4,
133-
and then update the authentication method for the CloudStack and root users with
133+
and then update the authentication method for the root and CloudStack (cloud) users with
134134
caching_sha2_password plugin using the below steps as the mysql_native_password plugin
135135
is deprecated as of MySQL 8.0.34, and disabled by default in MySQL 8.4.
136136

137-
* Stop MySQL if already running
137+
* Stop MySQL server if already running
138138

139139
.. code-block:: bash
140140
141141
sudo systemctl stop mysqld
142142
143-
* Start in safe mode without auth
143+
* Start MySQL server in safe mode without auth
144144

145145
.. code-block:: bash
146146
147147
sudo mysqld --skip-grant-tables --skip-networking &
148148
149-
* Login without password
149+
* Login to MySQL without password
150150

151151
.. code-block:: bash
152152
153153
mysql -u root
154154
155-
* Reset passwords
155+
* Reset passwords for root and CloudStack (cloud) user
156156

157157
.. code-block:: bash
158158
@@ -173,13 +173,13 @@ is deprecated as of MySQL 8.0.34, and disabled by default in MySQL 8.4.
173173
-i "$(grep -oP 'db.cloud.password=ENC\(\K[^\)]+(?=\))' /etc/cloudstack/management/db.properties)" \
174174
-p "$(cat /etc/cloudstack/management/key)"
175175
176-
* Remove deprecated authentication plugin 'mysql_native_password' from the configuration. Either comment or remove the below line from /etc/my.cnf
176+
* Remove deprecated authentication plugin 'mysql_native_password' from the MySQL configuration. Either comment or remove the below line from /etc/my.cnf
177177

178178
.. code-block:: bash
179179
180180
default_authentication_plugin=mysql_native_password
181181
182-
* Restart mysql server
182+
* Restart MySQL server
183183

184184
.. code-block:: bash
185185

0 commit comments

Comments
 (0)