用maven下吧!很好的管理工具,配置一下,就自動下載了
超過十多年行業(yè)經驗,技術領先,服務至上的經營模式,全靠網絡和口碑獲得客戶,為自己降低成本,也就是為客戶降低成本。到目前業(yè)務范圍包括了:成都網站制作、做網站、外貿營銷網站建設,成都網站推廣,成都網站優(yōu)化,整體網絡托管,小程序開發(fā),微信開發(fā),重慶APP軟件開發(fā),同時也可以讓客戶的網站和網絡營銷和我們一樣獲得訂單和生意!
mysql的配置是
dependency
groupIdmysql/groupId
artifactIdmysql-connector-java/artifactId
version5.1.9/version
/dependency
或者從這兒下
2.在mysql 的官方網站上找 Connector/J 關鍵字,然后點擊download 就能下載到mysql 的jdbc支持包
Connector/J
(Current Generally Available Release: 5.1.21)Standardized database driver for Java platforms and development.
Download
打開百度搜索,輸入MySQL,第一個是MySQL官網
點擊第一個鏈接地址,進入MySQL官方網站,單擊“Downloads”下載Tab頁
找到Community并且單擊它,查看Community對應左側下方選項,單擊第四個“MySQL Community Server”
進入MySQL選項下載列表,選擇Windows(x86,32-bit),MSI Installer
單擊第五步中列表的“Download”按鈕,進入下載頁面
下載頁面有注冊登錄按鈕,也有不用登錄的選項(No thanks,just start my download.),選擇不用注冊登錄選項,進入下載狀態(tài)!
從官網下載安裝包MySQL :: Download MySQL Community Server
解壓到/usr/local目錄下,重命名為mysql
然后在終端輸入以下命令:
shell groupadd mysql
shell useradd -r -g mysql mysql
shell cd /usr/local
shell cd mysql
shell chown -R mysql . (別忘了最后有一個點,下同)
shell chgrp -R mysql .
shell scripts/mysql_install_db --user=mysql
這句執(zhí)行后如果報錯:
scripts/mysql_install_db: 244: ./bin/my_print_defaults: not found
Neither host 'ubuntu' nor 'localhost' could be looked up with
./bin/resolveip
Please configure the 'hostname' command to return a correct
hostname.
If you want to solve this at a later stage, restart this script
with the --force option
在終端輸入uname -a命令查看系統(tǒng)版本,如果結果為x86_64則說明系統(tǒng)是64位的,是不是下載的安裝包不對了?到官網下載64位版本的,把剛解壓到mysql目錄刪掉,重新執(zhí)行上面這一條語句
如果又報錯:./bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
這說明少個東西,執(zhí)行下面這條命令:
sudo apt-get install libaio-dev
安裝完成后再執(zhí)行scripts/mysql_install_db --user=mysql這條語句
繼續(xù)執(zhí)行后續(xù)命令:
shell chown -R root .
shell chown -R mysql data
好了,下面啟動:
sudo ./support-files/mysql.server start
# /usr/local/mysql/bin/mysqld_safe --user=mysql
cd /usr/local/mysql/bin //進入 bin目錄
#mysql //運行mysq命令
如果沒有沒有啟動 或出現(xiàn) Can't connect to local MySQL server through socket '/tmp/mysql.sock'
解決方法: #cd /usr/local/mysql/support-files //進入該目錄
#./mysql.server start //啟動即可 既可在生成/tmp/mysql.sock
如果/tmp/mysql.sock 無該文件存在,且mysql是處于 開啟的狀態(tài)?
解決方法: #netstat -an | grep 3306 //查看 3306端口
#ps -ef | grep mysql // 查找 mysql 進程
# kill -9 進程號 //強制刪除mysql的進程號
#./mysql.server start // 啟動即可 既可在生成/tmp/mysql.sock
如果在任意路徑下如數(shù)mysql命令得到的無該命令咋辦呢?
解決方法:修改 /etc/profile 文件 在文件中加入
PATH=$PATH:/usr/local/mysql/bin/
export PATH (保存即可退出執(zhí)行 source /etc/profile)
以上操作完全可以 在任意目錄執(zhí)行 # mysql 命令
如果想執(zhí)行 service mysql start or restart stop 命令咋辦的? 在不能老#./mysql.server start
解決方法:將 mysql.server 復制一份到 /etc/rc.d/init.d 下并改名 mysql 或 建個連接文件
假設當前目錄為 /etc/rc.d/init.d
如: #cp /usr/local/mysql/support-files/mysql.server mysql (復制)
或 : #ln -s /usr/local/mysql/support-files/mysql.server mysql (建立連接文件)
完成以上操作即可 執(zhí)行 service mysql start (or restart stop)
用如下命令修改MYSQL密碼
# /usr/local/mysql/bin/mysqladmin -u root password yourpassword //默認安裝密碼為空,為了安全你必須馬上修改
# chmod 700 /etc/init.d/mysql
# chkconfig --add mysqld
# chkconfig --level 345 mysql on //copy編譯目錄的一個腳本設置使mysql每次啟動都能自動運行
# service mysql start
# netstat -atln
//啟動mysql服務
//查看3306端口是否打開。要注意在防火墻中開放該端口。
可以用telnet localhost 3306來測試一下,如果有反應,那就表明安裝成功了