mysql有deb包,但是用過一次,感覺不如源碼編譯安裝好,卸載后選擇下載源碼重新安裝。
# Preconfiguration setup
shell>
groupadd mysql
shell>
useradd -r -g mysql mysql
# Beginning of source-build specific instructions
shell>
tar zxvf mysql-
VERSION
.tar.gz
shell>
cd mysql-
VERSION
shell>
cmake .
shell>
make
shell>
make install
# End of source-build specific instructions
# Postinstallation setup
shell>
cd /usr/local/mysql
shell>
chown -R mysql .
shell>
chgrp -R mysql .
shell>
scripts/mysql_install_db --user=mysql
shell>
chown -R root .
shell>
chown -R mysql data
shell>
bin/mysqld_safe --user=mysql &
ubuntu下用cmake時可能會報錯,按照提示安裝一個包后重新cmake。
?
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
一般是/etc/init.d/目錄下。命令如下:
1
cp
support-files/mysql.server /etc/init.d/
mysql
2
chmod
+x /etc/init.d/
mysql
3
chkconfig --add mysql
第一個命令是復制并重命名,很簡單。
第二個命令為mysql服務器文件添加可執行權限。
第三個命令設置系統中所有服務在各運行級別中的啟動和關閉狀態。
?
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
?
1
./bin/mysqladmin -u root password
'
new-password
'
2
./bin/mysqladmin -u root -h 主機 password
'
new-password
'
?
Alternatively you can run:
?
1
./bin/mysql_secure_installation
?
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
?
See the manual for more instructions.
?
You can start the MySQL daemon with:
?
1
cd . ; ./bin/mysqld_safe &
?
You can test the MySQL daemon with mysql-test-run.pl
?
1
cd mysql-test ;
perl
mysql-test-run.pl
?
New default config file was created as ./my.cnf and
will be used by default by the server when you start it.
You may edit this file to change server settings
?
?
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061
微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元

