真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql數(shù)據(jù)庫怎么安 mysql數(shù)據(jù)庫安裝

mysql數(shù)據(jù)庫怎么安裝

從MSQL官網(wǎng)下載MySQL服務(wù)器安裝軟件包,下面以mysql-installer-community-5.7.3.0-m13.msi為例。

在麒麟等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都做網(wǎng)站、網(wǎng)站制作 網(wǎng)站設(shè)計制作按需設(shè)計網(wǎng)站,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計,全網(wǎng)整合營銷推廣,外貿(mào)營銷網(wǎng)站建設(shè),麒麟網(wǎng)站建設(shè)費用合理。

1、雙擊進入安裝

2、在協(xié)議許可(License?Agreement)界面,勾選“I?accept?the?license?terms”,點擊“Next”。

3、在檢查更新信息(Find?latest?products)界面,勾選“Skip?the?check?for?updates(no?recommended)”跳過檢查,然后點擊“Next”。

4、在選擇安裝類型(Choosing?a?Setup?Type)界面,根據(jù)安裝需求選擇安裝類型(推薦默認開發(fā)版本),設(shè)置MySQL安裝路徑和數(shù)據(jù)存放路徑,最后點擊“Next”。

5、在檢查要求(Check?Requirements)界面,點擊“Next”。

6、安裝進度(Installation?progress)界面,點擊“Execute”執(zhí)行。

7、等待安裝進度完畢,點擊“Next”。

8、進入配置概述(Configuration?Overview)界面,點擊“Next”。

9、在MySQL服務(wù)配置(MySQL?Server?Configuration)界面,默認不做修改,點擊“Next”。

10、設(shè)置根賬戶(root賬戶)密碼。

11、添加(非根)用戶賬戶。其目的是便于數(shù)據(jù)庫權(quán)限管理,為遠程訪問者提供安全賬戶。

12、默認windows服務(wù)配置不做修改,點擊“Next”。

13、回到配置概述(Configuration?Overview)界面,安裝完畢點擊“Next”。

14、MySQL安裝完成(Installation?Complete),點擊“Finish”。

15、若勾選“安裝后啟動Mysql工作臺”(Start?Mysql?Workbench?after?Setup),可見如下界面。

注意:MySQL環(huán)境變量配置。

在windows命令提示符中輸入mysql,提示“mysql”不是內(nèi)部或外部命令。只需將MySQL安裝路徑添加系統(tǒng)環(huán)境變量即可。

如安裝路徑為“D:\Program?Files\MySQL”目錄,則進入mysql?server的bin目錄下復制路徑;其次在環(huán)境變量中編輯變量Path,變量值中輸入“;”后粘貼“D:\Program?Files\MySQL\MySQL?Server?5.7\bin”路徑,最后從新打開命令提示符窗口運行mysql即可。

怎樣安裝Navicat for MySQL數(shù)據(jù)庫

Navicat for MySQL 安裝軟件和破解補丁免費下載

鏈接:

提取碼:ultn ?

Navicat for MySQL是一套管理和開發(fā)MySQL或MariaDB的理想解決方案,支持單一程序,可同時連接到MySQL和MariaDB。這個功能齊備的前端軟件為數(shù)據(jù)庫管理、開發(fā)和維護提供了直觀而強大的圖形界面,給MySQL或MariaDB新手以及專業(yè)人士提供了一組全面的工具。

如何安裝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后,運行mysql_secure_installation去除安全隱患,[root@xuegod63 ~]# mysql_secure_installation #進入安全配置導向。

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):?? #初次運行直接回車,因為root用戶沒有密碼。

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遠程登錄,根據(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。


網(wǎng)頁名稱:mysql數(shù)據(jù)庫怎么安 mysql數(shù)據(jù)庫安裝
當前路徑:http://weahome.cn/article/hhjcse.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部