이 글은 주로 모든 사람이 공유할 수 있는 글입니다mysql 5.7.17 winx64.zip 설치 구성 방법에 대한 그래픽 튜토리얼에는 관심 있는 친구들이 참고할 수 있습니다.
머리말: win10을 다시 설치하고 파일을 정리합니다. 그러나 MySQL을 설치하는 데는 정말 시간이 많이 걸렸습니다. 이 기사는 모든 사람에게 도움을 주기 위해 작성되었습니다.
참조 링크: mysql 5.7.11 winx64.zip 설치 및 구성 방법 그래픽 튜토리얼
여기서 몇 가지 단계를 수행했지만 항상 그랬습니다. 실수한 부분은 적당히 하겠습니다.
1. 다운로드
rreezip 압축을 푼다
3. 환경변수 구성
(1) 경로 구성
(2 ) mysql-default.ini 구성 파일 수정 원본:
https://dev.mysql.com/downloads/mysql/
수정:
4. 관리하려면 Enter 명령 프롬프트 cmd
참고: 먼저 mysqld -install을 실행한 다음 mysqld –initialize
(1) mysqld -install
# These are commonly set, remove the # and set as required. # basedir = ..... # datadir = ..... # port = ..... # server_id = .....
를 실행합니다. (2 ) mysqld –initialize
C:\Users\donald>cd D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin C:\Users\donald>d: D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld -install Service successfully installed. //成功安装服务
를 실행하면
데이터 폴더가 자동으로 생성됩니다. (3) mysqld.exe -nt –skip- grant -tables (참고: 창이 응답하지 않음)
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld --initialize D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>
(4) 창을 직접 닫은 후 도스 다시 열기(같은 방식으로 관리자 권한으로 열기)
D:\tools\developer\MySQL\mysql-5.7.17-winx64\bin>mysqld.exe -nt --skip-grant-tables
5 . 확인 성공
(1) 작업 관리자에서 mysqld 프로세스를 종료하고 mysql 서비스를 시작합니다
C:\Users\donald>mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.17 MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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> use mysql Database changed mysql> update user set authtication_string=Password('admin') where user="root"; //这时候会提示修改成功等,或者waring 什么的。 mysql>flush privileges; 0 rows affected (0.01 sec)
표시되는 경우:
작업 관리자를 열고 mysqld를 찾아 프로세스를 종료한 다음 mysql을 다시 시작하면 됩니다. (2) mysql -u root -p
C:\Users\donald>net start mysql
훌륭한 주제 공유: 다른 버전의 mysql 설치. mysql5.7 각 버전별 튜토리얼 mysql5.6 각 버전별 설치 튜토리얼
위 내용은 mysql5.7.17 winx64.zip 설치 및 구성 방법에 대한 자세한 설명(그림 및 텍스트)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!