From e789e22e9364c9aa508af31ed60ebee17d0d35b7 Mon Sep 17 00:00:00 2001 From: SHIH Date: Wed, 15 Mar 2023 03:07:36 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20=E4=BF=AE=E5=A4=8D=E6=8B=BC=E5=86=99?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index a2e3f52..b31a757 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -29,13 +29,13 @@ grep "password" /var/log/mysqld.log mysql -uroot -p ``` -**五**、修改默认密码(设置密码需要有大小写符号组合—安全性),把下面的`my passrod`替换成自己的密码 +**五**、修改默认密码(设置密码需要有大小写符号组合—安全性),把下面的`my password`替换成自己的密码 ``` ALTER USER 'root'@'localhost' IDENTIFIED BY 'my password'; ``` -**六**、开启远程访问 (把下面的`my passrod`替换成自己的密码) +**六**、开启远程访问 (把下面的`my password`替换成自己的密码) ``` grant all privileges on *.* to 'root'@'%' identified by 'my password' with grant option;