Linux學習筆記4月9日任務
阿新 • • 發佈:2018-04-10
mysqld httpd 11.1 LAMP架構介紹
11.2 MySQL、MariaDB介紹
11.3/11.4/11.5 MySQL安裝
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql運行後提示,需要安裝其他包,如下圖:
再次運行./scripts/mysql_install_db --user=mysql --datadir=/data/mysql,
復制# cp support-files/my-default.cnf /etc/my.cnf
cp:是否覆蓋"/etc/my.cnf"? n
修改/etc/my.cnf,如下圖,
#cp support-files/mysql.server /etc/init.d/mysqld
# vi /etc/init.d/mysqld,如下圖
設置開機啟動#chkconfig --add mysqld
查看開機啟動項# chkconfig --list
啟動mysql,#service mysqld start或#/etc/init.d/mysqld start
擴展
mysql5.5源碼編譯安裝 http://www.aminglinux.com/bbs/thread-1059-1-1.html
mysql5.7二進制包安裝(變化較大) http://www.apelearn.com/bbs/thread-10105-1-1.html
Linux學習筆記4月9日任務