1. 程式人生 > >Deepin下安裝Mysql

Deepin下安裝Mysql

mysql like 數據 art alt 默認安裝路徑 variable ctr 輸入

一.打開終端(Alt+Ctrl+T):

sudo apt-get install mysql-server mysql-client

安裝過程中會需要輸入root賬號的密碼,輸入密碼後,等待安裝完成即可

二.設置MySql:

1.將mysql加入到系統服務

chkconfig --add mysql

2.將mysql設置開機啟動

chkconfig mysql on

3.註意:在這裏可能chkconfig沒有安裝,如果是的話 ,則需要安裝chkconfig命令:

sudo apt-get install chkconfig

三.登陸MySql

1.查看數據庫當前編碼:

SHOW VARIABLES LIKE 
character%;

2.修改默認編碼為utf-8:

修改/etc/mysql/my.cnf (默認安裝路徑下) (標簽下沒有的添加,有的修改)

 [mysqld]

 character_set_server=utf8

 [mysql]

 default-character-set= utf8

3.查詢的一些命令

停止MySQL數據庫服務:

sudo systemctl stop mysql.service

  啟動MySQL數據庫服務:

sudo systemctl start mysql.service

  重啟MySQL數據庫服務:

sudo systemctl restart mysql.service

  查看MySQL運行狀態:

sudo systemctl status mysql.service


Deepin下安裝Mysql