debian9安裝mysql mariadb
debian9下mysql 替換成mariadb-server-10.1
不過兩者類似
具體可見 《MySQL和mariadb區別》
http://ask.chinaunix.net/question/556
MySQL之父Widenius先生離開了Sun之後,覺得依靠Sun/Oracle來發展MySQL,實在很不靠譜,於是決定另開分支,這個分支的名字叫做MariaDB。
。。。。。
所以對於大部分的MySQL用戶來說,從現在主流的MySQL轉到MariaDB應該是沒有什麽難度的
1 su 切換到root賬號
apt-get install mysql-server
顯示如下(安裝完成後 再次運行安裝命令的提示 )
# apt-get install mysql
Reading package lists... Done
Building dependency tree
Reading state information... Done
mysql 也就是debian的MariaDB 安裝成功
2 開啟服務器 遠程ping服務器Ip 發現可ping通
但是無法登陸MariaDB 這是因為沒有開啟遠端訪問
默認路徑下 /etc/mysql/mariadb.conf.d 開啟50-server.cnf
將
# Instead of skip-networking the default is now to listen only on
bind-address = 127.0.0.1
修改為
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
#bind-address = 127.0.0.1
使用ROOT權限保存文檔 服務器可識別除了127.0.0.1 以外的連接
3 進入服務器開啟遠程賬號訪問
在mysql 下 輸入 grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘ROOTpassword‘ with grant option;
開啟遠程訪問數據庫的賬號.
4 可以進行遠程訪問了 我這裏使用的是navicat
按照提示設置連接屬性即可
debian9安裝mysql mariadb