手把手教你在centos7中安裝mysql

xmuwww發表於2017-08-15

CentOS 7 版本將MySQL資料庫軟體從預設的程式列表中移除,用mariadb代替了。所以要安裝mysql有兩種方法,一種是直接安裝mariadb,另一種是從官網下載mysql手動安裝
這裡只介紹第二種方法。

一、系統環境

# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)

二、官網下載安裝mysql-server

# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server

安裝成功後重啟mysql服務。

# service mysqld restart

初次安裝mysql,root賬戶沒有密碼。

# mysql -u root

設定密碼

mysql> set password for `root`@`localhost` =password(`password`);

三、配置mysql

  1. 編碼
    mysql配置檔案為/etc/my.cnf
[mysql]
default-character-set =utf8
  1. 遠端連線
create user `username`@`%` identified by `password`;  
grant all privileges on *.* to root@`%`identified by `password`;


相關文章