您好,登錄后才能下訂單哦!
本文主要給大家簡單講講centos7 系統安裝MySQL具體方法,相關專業術語大家可以上網查查或者找一些相關書籍補充一下,這里就不涉獵了,我們就直奔主題吧,希望centos7 系統安裝MySQL具體方法這篇文章可以給大家帶來一些實際幫助。
本示例為centos7版本:mysql為mysql-5.5.56.tar.gz
1.云服務器上的卸載原有數據庫
rpm -qa | grep mariadb ###查詢本機有沒有默認的mysql,centos7版本數據庫為mariadb
rpm -e --nodeps ###有的話卸載掉
2.下載源碼包
https://www.mysql.com/ ###下載地址
下載好后傳到云服務器
3.安裝依賴包
yum -y install make gcc-c++ cmake bison-devel ncurses-devel
4.創建用戶
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.對數據庫目錄進行授權
chmown -R mysql:mysql /usr/local/mysql
7.建立配置文件
拷貝mysql源碼目錄中的support-files文件夾下到/etc/mycnf
cp support-files/my-medium.cnf /etc/my.cnf
8.初始化數據庫
/usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/loca
l/mysql/data/
9.設置環境變量
export PATH=$PATH:/usr/local/mysql/bin
10.添加系統服務
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.啟動數據庫:
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.訪問數據庫(默認沒有密碼)
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 系統安裝MySQL具體方法就先給大家講到這里,對于其它相關問題大家想要了解的可以持續關注我們的行業資訊。我們的板塊內容每天都會捕捉一些行業新聞及專業知識分享給大家的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。