mysql8 0依賴 安裝mysql8 0 11

2021-10-18 02:45:49 字數 1102 閱讀 6139

1、安裝依賴關係

yum -y install openssl-devel

yum install perl-json

2、安裝mysql(要一起安裝)

rpm -ivh mysql-community-common-8.0.11-1.el7.x86_64.rpm

mysql-community-devel-8.0.11-1.el7.x86_64.rpm

mysql-community-embedded-compat-8.0.11-1.el7.x86_64.rpm

mysql-community-libs-8.0.11-1.el7.x86_64.rpm

mysql-community-server-8.0.11-1.el7.x86_64.rpm

mysql-community-client-8.0.11-1.el7.x86_64.rpm

mysql-community-test-8.0.11-1.el7.x86_64.rpm

3、檢視密碼

grep 'temporary password' /var/log/mysqld.log

4、登陸後重新設定root密碼

alter user 'root'@'localhost' identified by 'fan2018!';

5、建立使用者

create user 'fangx'@'%' identified with mysql_native_password by 'fan2018!';

#(需要注意:mysql8.0加密方式修改了)

#檢查使用者

select user, host, plugin, authentication_string from user\g;

6、授權遠端資料庫

#授權所有許可權

grant all privileges on *.* to 'fangx'@'%';

#授權基本的查詢修改許可權,按需求設定

grant select,insert,update,delete,create,drop,alter on *.* to 'fangx'@'%';

7、檢視使用者許可權

show grants for 'fangx'@'%';

MySQL8 0安裝教程

環境 mysql8.0.20,windows10專業版 2.配置環境變數,在path中新增值為 c program files x86 mysql mysql 8.0.20 winx64 bin 3.開啟cmd,輸入 mysqld initialize insecure user mysql 然後輸...

MySql 8 0 安裝除錯

mysql my.ini mysqld 設定3306埠 port 3306 設定mysql的安裝目錄 basedir c program files mysql mysql 8.0.11 winx64 設定mysql資料庫的資料的存放目錄 datadir c program files mysql ...

手動安裝MySQL8 0

就在此處手動建立my.ini檔案,檔案內容如下 mysql 設定mysql客戶端預設字符集 default character set utf8 mysqld 設定3306埠 port 3306 設定mysql的安裝目錄 允許最大連線數 max connections 200 服務端使用的字符集預設...