在centos7虛擬機器中安裝mysql,安裝過程已經完成
systemctl daemon-reload #過載所有修改過的配置檔案
systemctl start mysqld #開機服務
systemctl enable mysqld #開機自啟
獲取初始密碼:
grep "temporary password" /var/log/mysqld.log
登入mysql:
mysql -uroot -p
輸入自己的密碼即可,第一次這個密碼是自己獲取的初始密碼
設定密碼強度為低階:
set global validate_password_policy=0;
設定密碼長度值:
set global validate_password_length=6;
修改本地密碼:
alter user "root"@"localhost" identified by '123456';
退出mysql:
:\q
新密碼登入:
mysql -uroot -p123456
建立使用者;
create user 'root'@'%'identified by '123456';
允許遠端連線:
grant all privileges on *.*to 'root'@'%' with grant option;
重新整理許可權:
flush privileges;
建立資料庫:
centos7安裝後基本配置
1 centos7 最小化安裝後沒有ifconfig命令 解決方法 yum y install net tools 2 centos7 設定靜態ip位址 編輯 etc sysconfig network scripts ifcfg ens33 bootproto static 設定為靜態分配 onb...
CentOS 7安裝後的配置
一 設定ip位址 閘道器dns 說明 centos 7.x預設安裝好之後是沒有自動開啟網路連線的,所 以需要我們自己配置。在命令列輸入 vi etc sysconfig network scripts ifcfg ens33 編輯配置檔案,新增修改或新增以下內容。bootproto static 啟...
centos 7 安裝MySQL 筆記
1.安裝 wget rpm ivh mysql community release el7 5.noarch.rpm yum install mysql community server 成功安裝之後重啟mysql服務 service mysqld restart 初次安裝mysql是root賬戶是...