本文主要給大家簡單講講centos7 系統(tǒng)安裝MySQL具體方法,相關(guān)專業(yè)術(shù)語大家可以上網(wǎng)查查或者找一些相關(guān)書籍補(bǔ)充一下,這里就不涉獵了,我們就直奔主題吧,希望centos7 系統(tǒng)安裝MySQL具體方法這篇文章可以給大家?guī)硪恍嶋H幫助。
成都地區(qū)優(yōu)秀IDC服務(wù)器托管提供商(創(chuàng)新互聯(lián)公司).為客戶提供專業(yè)的樂山服務(wù)器托管,四川各地服務(wù)器托管,樂山服務(wù)器托管、多線服務(wù)器托管.托管咨詢專線:13518219792
本示例為centos7版本:mysql為mysql-5.5.56.tar.gz
1.云服務(wù)器上的卸載原有數(shù)據(jù)庫
rpm -qa | grep mariadb ###查詢本機(jī)有沒有默認(rèn)的mysql,centos7版本數(shù)據(jù)庫為mariadb
rpm -e --nodeps ###有的話卸載掉
2.下載源碼包
https://www.mysql.com/ ###下載地址
下載好后傳到云服務(wù)器
3.安裝依賴包
yum -y install make gcc-c++ cmake bison-devel ncurses-devel
4.創(chuàng)建用戶
groupadd mysql
useradd -M -s /sbin/nologin mysql -g mysql
5.解壓,源碼編譯安裝
tar zvxf mysql-5.5.56.tar.gz -C /usr/local/
cd /usr/local/mysql-5.5.56/
編譯:cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DSYSCONFDIR=/etc -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLL
ATION=utf8_general_ci -DWITH_EXTRA_CHARSETS=all
安裝:make
make install
6.對數(shù)據(jù)庫目錄進(jìn)行授權(quán)
chmown -R mysql:mysql /usr/local/mysql
7.建立配置文件
拷貝mysql源碼目錄中的support-files文件夾下到/etc/mycnf
cp support-files/my-medium.cnf /etc/my.cnf
8.初始化數(shù)據(jù)庫
/usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/loca
l/mysql/data/
9.設(shè)置環(huán)境變量
export PATH=$PATH:/usr/local/mysql/bin
10.添加系統(tǒng)服務(wù)
cp -P support-files/mysql.server /etc/rc.d/init.d/mysqld
chmod a+x /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
11.啟動數(shù)據(jù)庫:
service mysqld start
service mysqld status
netstat -anpt | grep mysqld
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 14245/mysqld
12.訪問數(shù)據(jù)庫(默認(rèn)沒有密碼)
mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.5.56-log Source distribution
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
centos7 系統(tǒng)安裝MySQL具體方法就先給大家講到這里,對于其它相關(guān)問題大家想要了解的可以持續(xù)關(guān)注我們的行業(yè)資訊。我們的板塊內(nèi)容每天都會捕捉一些行業(yè)新聞及專業(yè)知識分享給大家的。