下載并安裝MySQL就需要先到應(yīng)用商店下載MySQL壓縮包,然后打開壓縮包進(jìn)行運(yùn)行,最后創(chuàng)建文件夾設(shè)置密碼即可。具體操作如下:
創(chuàng)新互聯(lián)建站一直通過網(wǎng)站建設(shè)和網(wǎng)站營銷幫助企業(yè)獲得更多客戶資源。 以"深度挖掘,量身打造,注重實(shí)效"的一站式服務(wù),以網(wǎng)站建設(shè)、成都網(wǎng)站制作、移動互聯(lián)產(chǎn)品、全網(wǎng)整合營銷推廣服務(wù)為核心業(yè)務(wù)。10余年網(wǎng)站制作的經(jīng)驗(yàn),使用新網(wǎng)站建設(shè)技術(shù),全新開發(fā)出的標(biāo)準(zhǔn)網(wǎng)站,不但價格便宜而且實(shí)用、靈活,特別適合中小公司網(wǎng)站制作。網(wǎng)站管理系統(tǒng)簡單易用,維護(hù)方便,您可以完全操作網(wǎng)站資料,是中小公司快速網(wǎng)站建設(shè)的選擇。
工具:電腦一臺。
1、下載MySQL壓縮包。
2、將下載后的壓縮包解壓到當(dāng)前目錄。
3、設(shè)置環(huán)境變量。
4、安裝mysql,創(chuàng)建data文件夾。
5、啟動MySQL服務(wù),登錄MySQL。
注意事項(xiàng):
在下載MySQL的時候一定要到各個正規(guī)平臺進(jìn)行下載,避免自己的電腦被木馬等等病毒入侵。
方法/步驟
1、下載安裝文件,安裝:雙擊Setup.exe文件,開始mysql的安裝。
2、點(diǎn)擊Next開始下一步安裝。默認(rèn)是Typical,選擇Custom,因?yàn)門ypical模式不允許改變安裝路徑,只能安裝在C盤
3、這里需要選擇組件和更改文件夾位置,組件可以默認(rèn)的,位置要選擇Change來改變(注意:安裝mysql的路徑中,不能含有中文)
4、點(diǎn)擊Install開始安裝
5、安裝完成。
MySQL安裝教程如下:
工具:電腦華碩、軟件:MySQL。
1、首先,去數(shù)據(jù)庫的官網(wǎng)下載MySQL。
2、點(diǎn)擊downloads,community,選擇MySQLCommunityServer。如下圖:
3、滑到下面,找到RecommendedDownload,然后點(diǎn)擊gotodownloadpage。
4、點(diǎn)擊download進(jìn)入下載頁面選擇Nothanks,juststartmydownload就可以開始下載了。
5、打開剛剛下載好的安裝包,開始安裝MySQL。選擇Iaccept然后點(diǎn)擊next進(jìn)入下一步。
6、這里選擇DeveloperDefault,然后點(diǎn)擊next進(jìn)入下一步。
7、這一步是檢查安裝條件,直接點(diǎn)擊next進(jìn)入下一步就可以了。
8、這里直接點(diǎn)擊execute執(zhí)行就可以了,執(zhí)行完后點(diǎn)擊next進(jìn)入下一步。
9、繼續(xù)點(diǎn)擊next進(jìn)入下一步。
10.選擇第一個然后點(diǎn)擊next進(jìn)入下一步。
11.這里直接點(diǎn)擊next進(jìn)入下一步就可以了。
12.設(shè)置root密碼然后點(diǎn)擊next進(jìn)入下一步。
13.點(diǎn)擊next進(jìn)入下一步。
14.繼續(xù)點(diǎn)擊next。
15.點(diǎn)擊execute執(zhí)行。
16.點(diǎn)擊next。
17.點(diǎn)擊finish。
18.一路點(diǎn)擊next,并check你的root密碼,MySQL就成功在你的電腦上安裝完成了。
使用yum安裝mysql數(shù)據(jù)庫的軟件包 [root@xuegod63 ~]# yum -y install mariadb-server mariadb 。
注:? mariadb-server?? #MariaDB數(shù)據(jù)庫 mariadb? ? ? # MariaDB服務(wù)器Linux下客戶端 。
注:從centos7系統(tǒng)開始,系統(tǒng)中自帶的mysql數(shù)據(jù)庫變成了mariadb-server,mariadb-server和mysql操作上一樣。mariadb-server是mysql的一個分支。
啟動數(shù)據(jù)庫服務(wù)[root@xuegod63 ~]# systemctl start? mariadb? #啟動MariaDB服務(wù)。[root@xuegod63 ~]# systemctl enable? mariadb? #設(shè)置開啟自動啟動MariaDB服務(wù)。
安裝完mariadb-server后,運(yùn)行mysql_secure_installation去除安全隱患,[root@xuegod63 ~]# mysql_secure_installation #進(jìn)入安全配置導(dǎo)向。
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQLSERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current,password for the root user. If you've just installed MySQL, and,you haven't set the root password yet, the password will be blank,,so you should just press enter here.Enter current password for root (enter for none):?? #初次運(yùn)行直接回車,因?yàn)閞oot用戶沒有密碼。
OK, successfully used password, moving on,Setting the root password ensures that nobody can log into the MySQL,root user without the proper authorisation.,Set root password? [Y/n] Y #是否設(shè)置root用戶密碼,輸入Y。
New password: 123456?? #新密碼123456,Re-enter new password: 123456,Password updated successfully!Remove anonymous users? [Y/n] Y?? #是否刪除匿名用戶,生產(chǎn)環(huán)境建議刪除,所以直接回車或Y。
Success!Normally, root should only be allowed to connect from 'localhost'.? Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] Y? #是否禁止root遠(yuǎn)程登錄,根據(jù)自己的需求選擇Y/n并回車建議禁止。
Success!By default, MariaDB comes with a database named 'test' that anyone canaccess.? This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] Y?? #是否刪除test數(shù)據(jù)庫,直接回車或Y。