centos推薦yum安裝,省去很多配置環節
安裝mysql源,
rpm -ivh mysql57-community-release-el7-9.noarch.rpm
接下來使用yum安裝,
# 更新yum軟體包
yum check-update
# 更新系統
yum update
# 安裝mysql
yum install mysql mysql-server
啟動mysql服務,
systemctl start mysqld
設定mysql服務開機自啟動,
systemctl enable mysqld
執行以下命令檢視/var/log/mysqld.log檔案,得到臨時密碼
grep 'temporary password'
/var
/log/mysqld.log
登入mysql資料庫,
mysql -uroot -p'密碼'
設定root賬號的密碼,
alter
user
'root'@'localhost' identified by '
123456
!';
允許root遠端訪問,
grant
allprivilegeson*
.*to'root'@'%
' identified by '
123456' with
grant
option
;
使得修改生效,
flush rivileges;
阿里雲的伺服器設定了安全組規則來限制ecs伺服器的ip,埠訪問策略,因此需要修改。
登入阿里雲,進入ecs控制台,
選擇配置規則,新增安全組規則,按如下配置
配置完後,就可以遠端連線了。
centos mysql安裝與解除安裝
解壓重新命名 tar zxvf mysql 5.7.25 linux glibc2.12 x86 64.tar.gz c usr local mv usr local mysql 5.7.25 linux glibc2.12 x86 64 usr local mysql 建立data目錄 mkdir...
CentOS mysql安裝以及使用
前言 如何檢視linux伺服器的各個狀態?版本查詢 123 4567 89 lsb release a lsb version core 4.1 amd64 core 4.1 noarch distributor id centos description centos linux release ...
centos mysql解壓版安裝
選擇免安裝版本進行解壓 mysqld initialize insecure這種預設初始化的沒密碼,jdbc連線會報錯,修改密碼後就可以連線 mysqld initialize這種方式會給乙個預設的初始密碼 如圖,預設密碼是rcwnnd hy92 mysqld user root mysqladmi...