一、建立mariadb.repo
vim /etc/yum.repos.d/mariadb.repo
寫入如下內容:
# MariaDB 10.2 CentOS repository list - created 2017-07-03 06:59 UTC
# http://downloads.mariadb.org/mariadb/repositories/html
1 [mariadb] 2 name = MariaDB 3 baseurl = https://mirrors.ustc.edu.cn/mariadb/yum/10.2/centos7-amd64 4 gpgkey=https://mirrors.ustc.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB 5 gpgcheck=1
參考連接:http://mirrors.ustc.edu.cn/help/mariadb.html
以上是中國科學技術大學的 mariadb yum源,下載起來很是快,若是直接官網下載,很是的慢,很是的慢,由於這軟件加依賴包,都有167M !!!
二、yum安裝最新版本mariadbmysql
yum install MariaDB-server MariaDB-client
三、錯誤處理:
若安裝時遇到錯誤 「Failed to connect to 2001:da8:d800:95::110: Network is unreachable」,將源地址中的 mirrors.ustc.edu.cn 替換爲 ipv4.mirrors.edu.cn 以強制使用 IPv4:linux
sudo sed -i 's#//mirrors.ustc.edu.cn#//ipv4.mirrors.ustc.edu.cn#g' /etc/yum.repos.d/mariadb.repo
Mariadb安裝以後的各類設置
sql
一、啓動MariaDB
安裝完成MariaDB,首先啓動MariaDB,兩條命令均可以數據庫
systemctl start mariadb
或者vim
service mariadb start
二、設置開機自啓動centos
systemctl enable mariadb
或者bash
chkconfig mariadb on
二、接下來進行MariaDB的相關簡單配置ide
mysql_secure_installation
首先是設置密碼,會提示先輸入密碼
測試
Enter current password for root (enter for none):<–初次運行直接回車
設置密碼
Set root password? [Y/n] <– 是否設置root用戶密碼,輸入y並回車或直接回車 New password: <– 設置root用戶的密碼 Re-enter new password: <– 再輸入一次你設置的密碼
其餘配置
Remove anonymous users? [Y/n] <– 是否刪除匿名用戶,回車 Disallow root login remotely? [Y/n] <–是否禁止root遠程登陸,回車, Remove test database and access to it? [Y/n] <– 是否刪除test數據庫,回車 Reload privilege tables now? [Y/n] <– 是否從新加載權限表,回車
初始化MariaDB完成,接下來測試登陸
mysql -uroot -p [回車,以後輸入密碼]
三、配置MariaDB的字符集
設置客戶端:
vim /etc/my.cnf.d/mysql-clients.cnf [mysql] default-character-set=utf8
設置服務端:
vim /etc/my.cnf.d/server.cnf [mysqld] init_connect='SET collation_connection = utf8_general_ci' init_connect='SET NAMES utf8' character-set-server=utf8 collation-server=utf8_general_ci skip-character-set-client-handshake
#開啓慢查詢
slow_query_log = ON slow_query_log_file = /usr/local/mysql/data/slow.log long_query_time = 1
所有配置完成,重啓mariadb
systemctl restart mariadb
進入MariaDB查看字符集
mysql> show variables like "%character%";show variables like "%collation%";
顯示爲:
ariaDB [(none)]> show variables like "%character%";show variables like "%collation%"; +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | utf8 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | utf8 | | character_set_system | utf8 | | character_sets_dir | /usr/share/mysql/charsets/ | +--------------------------+----------------------------+ 8 rows in set (0.00 sec) +----------------------+-----------------+ | Variable_name | Value | +----------------------+-----------------+ | collation_connection | utf8_general_ci | | collation_database | utf8_general_ci | | collation_server | utf8_general_ci | +----------------------+-----------------+ 3 rows in set (0.00 sec)
字符集配置完成。
四、添加用戶,設置權限
建立用戶命令
mysql>create user username@localhost identified by 'password';
直接建立用戶並受權的命令
mysql>grant all on *.* to username@localhost indentified by 'password';
授予外網登錄權限,但不能二級受權;
mysql>grant all privileges on *.* to username@'%' identified by 'password';
授予權限而且能夠二次受權
mysql>grant all privileges on *.* to username@'hostname' identified by 'password' with grant option;
簡單的用戶和權限配置基本就這樣了。
其中只授予部分權限把 其中 all privileges或者all改成:
select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file
其中一部分。
其餘參考資料以下:
Linux系統教程:如何檢查MariaDB服務端版本 http://www.linuxidc.com/Linux/2015-08/122382.htmMariaDB Proxy讀寫分離的實現 http://www.linuxidc.com/Linux/2014-05/101306.htmLinux下編譯安裝配置MariaDB數據庫的方法 http://www.linuxidc.com/Linux/2014-11/109049.htmCentOS系統使用yum安裝MariaDB數據庫 http://www.linuxidc.com/Linux/2014-11/109048.htm安裝MariaDB與MySQL並存 http://www.linuxidc.com/Linux/2014-11/109047.htmUbuntu 上如何將 MySQL 5.5 數據庫遷移到 MariaDB 10 http://www.linuxidc.com/Linux/2014-11/109471.htm[翻譯]Ubuntu 14.04 (Trusty) Server 安裝 MariaDB http://www.linuxidc.com/Linux/2014-12/110048htmMariaDB 的詳細介紹:http://www.linuxidc.com/Linux/2012-03/56857.html