1、切換到root身份
2、安裝命令
sudo apt-get update
apt-get install mysql-client-core-5.6
apt-get install mysql-client-5.6
apt-get install mysql-server-5.6
3、檢查mysql程序是否執行
ps -ef | grep mysql
4、檢視mysql監聽的埠:
netstat -tap | grep mysql
5、啟動mysql服務
service mysql start
停止mysql服務:
service mysql stop
重啟:service mysql restart
6、遠端服務訪問
vim /etc/mysql/my.cnf
注釋掉bind address位址 並重啟資料庫:service mysql restart
授權非本機使用者登陸資料庫:
grant all privileges on *.* to 'root'@'%' identified by '941219' with grant option;--對使用者名為root並且密碼為941219的使用者授予對mysql中所有物件的所有許可權。
最後重新整理許可權:
flush privileges;
7、解除安裝mysql資料庫
sudo apt-get autoremove --purge mysql-server-5.0
sudo apt-get remove mysql-server
sudo apt-get autoremove mysql-server
sudo apt-get remove mysql-common
8、清理殘留資料
dpkg -l |grep ^rc|awk '' |sudo xargs dpkg -p
9、mysql資料庫更新使用者密碼
alter user 'root'@'localhost' identified by 'root@941219';
flush privileges;
10、mysql新建使用者並授權
create user dev@'%' identified by '123456';
create user dev@'localhost' identified by '123456';
grant all privileges on mycat_eye.* to dev@'%';
grant all privileges on mycat_eye.* to dev@'localhost';
flush privileges;
11、mysql慢查詢開啟
-- 顯示慢查詢時間
show variables like 'long_query_time'
-- 顯示慢查詢檔案位置
show variables like 'slow_query_log_file'
-- 顯示慢查詢的日誌儲存形式 可以為table可以為file
show variables like '%log_output%';
set global log_output='table'
Ubuntu上MySQL安裝指南
要安裝 mysql,可以在終端提示符後執行下列命令 sudo apt get install mysql server sudo apt get install mysql client sudo apt get install php5 mysql 安裝php5 mysql 是將php和mysql...
MySQL在ubuntu上的安裝指南
安裝mysql sudo apt get install mysql server 這個應該很簡單了,而且我覺得大家在安裝方面也沒什麼太大問題,所以也就不多說了,下面我們來講講配置。配置mysql 注意,在ubuntu下mysql預設是只允許本地訪問的,如果你要其他機器也能夠訪問的話,那麼需要改變 ...
mysql在ubuntu上的安裝過程
1 安裝mysql server hadoop stcn501a0166 mysql 程式 mysql 已包含在下列軟體包中 mysql client core 5.5 mariadb client core 5.5 mysql client core 5.6 percona xtradb clus...