去官網下載MySQL:點我直達html
百度雲盤地址:連接: https://pan.baidu.com/s/1qBN4r6t8gvq-I4CFfQQ-EA 密碼: hei3
若查詢出結果,代碼已經安裝過MySQL,咱們卸載Linux自帶的版本mysql
若是有,就執行rm -rf xxxxsql
若沒有,則建立數據庫
務必記住初始化輸出日誌末尾的密碼(數據庫管理員臨時密碼)測試
./mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql
[client]
default-character-set=utf8
[mysqld]
character_set_server=utf8
datadir=/usr/local/mysql/data
port = 3306
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
symbolic-links=0
max_connections=400
innodb_file_per_table=1
#表名大小寫不明感,敏感爲
lower_case_table_names=1
#跳過權限表,添加該命令
# skip-grant-tables
ln -s /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql
service mysql restart
use mysql #訪問mysql庫
update user set host = '%' where user = 'root'; #使root能再任何host訪問
FLUSH PRIVILEGES; #刷新
一、將服務文件拷貝到init.d下,並重命名爲mysql
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
二、賦予可執行權限
chmod +x /etc/init.d/mysqld
三、添加服務
chkconfig --add mysqld
四、顯示服務列表
chkconfig --list