下文內(nèi)容主要給大家?guī)?lái)MySQL 5.7.22 企業(yè)版安裝簡(jiǎn)析,這里所講到的知識(shí),與書(shū)籍略有不同,都是創(chuàng)新互聯(lián)專業(yè)技術(shù)人員在與用戶接觸過(guò)程中,總結(jié)出來(lái)的,具有一定的經(jīng)驗(yàn)分享價(jià)值,希望給廣大讀者帶來(lái)幫助。
專業(yè)領(lǐng)域包括成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站、商城網(wǎng)站制作、微信營(yíng)銷、系統(tǒng)平臺(tái)開(kāi)發(fā), 與其他網(wǎng)站設(shè)計(jì)及系統(tǒng)開(kāi)發(fā)公司不同,成都創(chuàng)新互聯(lián)的整合解決方案結(jié)合了幫做網(wǎng)絡(luò)品牌建設(shè)經(jīng)驗(yàn)和互聯(lián)網(wǎng)整合營(yíng)銷的理念,并將策略和執(zhí)行緊密結(jié)合,為客戶提供全網(wǎng)互聯(lián)網(wǎng)整合方案。
一、環(huán)境描述 操作系統(tǒng):windows 2012 數(shù)據(jù)庫(kù):mysql 5.7.12 企業(yè)版 二、操作步驟 1、規(guī)劃 MySQL安裝文件存放在D:\mysql,數(shù)據(jù)目錄為E:mysqldata 2、配置文件位置為d:\mysql\my.ini 內(nèi)容如下: [mysqld] port = 3306 basedir= D:\mysql datadir= E:\mysqldata max_connections=500 character-set-server=utf8 default-storage-engine=INNODB sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES [mysql]
default-character-set=utf8
3、安裝服務(wù)
C:\Users\admin>d: D:\>cd mysql\bin D:\mysql\bin>.\mysqld -install 4、初始化mysql .\mysqld --initialize-insecure --user=mysql 5、啟動(dòng)服務(wù) D:\mysql\bin>net start mysql MySQL 服務(wù)正在啟動(dòng) . MySQL 服務(wù)已經(jīng)啟動(dòng)成功。 6、登陸數(shù)據(jù)庫(kù) D:\mysql\bin>mysql -uroot -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.22 MySQL Community Server (GPL) Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> 7、修改密碼 use mysql; update mysql.user set authentication_string=password('qwe12345') where user='root' and Host ='localhost'; flush privileges; 8、關(guān)閉服務(wù) D:\mysql\bin>net stop mysql MySQL 服務(wù)正在停止.
MySQL 服務(wù)已成功停止。
對(duì)于以上關(guān)于mysql 5.7.22 企業(yè)版安裝簡(jiǎn)析,如果大家還有更多需要了解的可以持續(xù)關(guān)注我們創(chuàng)新互聯(lián)的行業(yè)推新,如需獲取專業(yè)解答,可在官網(wǎng)聯(lián)系售前售后的,希望該文章可給大家?guī)?lái)一定的知識(shí)更新。