【mysql基礎系列】mariadb安裝及使用者建立
阿新 • • 發佈:2018-11-20
【環境】
cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
【安裝】
yum install -y mariadb-server
【啟動】
systemctl start mariadb.service
【狀態檢視】
systemctl status mariadb.service
【開機自啟動】
systemctl enable mariadb.service
##################
【建立使用者】
CREATE USER 'username'@'host' IDENTIFIED BY 'password';
【授權】
GRANT all privileges ON databasename.tablename TO 'username'@'host';
flush privileges;
【修改密碼】
SET PASSWORD FOR 'username'@'host' = PASSWORD('newpassword');
【撤銷使用者許可權】
REVOKE privilege ON databasename.tablename FROM 'username'@'host';
【刪除使用者】
DROP USER 'username'@'host';
【檢視預設埠】
命令列 通過mysql 直接登入剛安裝的資料庫
MariaDB [(none)]> show global variables like 'port';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| port | 3306 |
+---------------+-------+
【配置檔案】
[[email protected] my.cnf.d]# pwd
/etc/my.cnf.d
[[email protected] my.cnf.d]# ls
client.cnf mysql-clients.cnf server.cnf
[[email protected] my.cnf.d]#