아래 공식 튜토리얼을 입력하세요:
1단계: 최신 MySQL 파일을 다운로드하고 압축을 풉니다.
최신 버전의 MySQL을 다운로드하세요 – mysql-5.7.12 다운로드 주소
다운로드한 파일을 즐겨찾는 위치에 추출합니다. 예를 들어 내 위치는 D:MySQLmysql-5.7.12-winx64
2단계: 환경 변수 구성
여기서는 별로 할 말이 없습니다. 경로 아래에 bin 디렉터리를 구성하면 됩니다.
3단계: 구성 파일 추가
압축해제 경로 아래의 my-default.ini 파일을 직접 복사하고 이름을 my.ini로 변경한 후 다음 내용으로 파일을 편집하세요.
<code class="hljs tex has-numbering" style="display: block; padding: 0px; color: inherit; box-sizing: border-box; font-family: "Source Code Pro", monospace;font-size:undefined; white-space: pre; border-radius: 0px; word-wrap: normal; background: transparent;"> <span class="hljs-special" style="box-sizing: border-box; color: rgb(102, 102, 0);">[</span>mysqld<span class="hljs-special" style="box-sizing: border-box; color: rgb(102, 102, 0);">] </span> basedir=D:<span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\MySQL</span><span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\mysql</span>-5.7.12-winx64<span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\ </span>datadir=D:<span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\MySQL</span><span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\mysql</span>-5.7.12-winx64<span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\data</span><span class="hljs-command" style="box-sizing: border-box; color: rgb(0, 0, 136);">\ </span>port=3306</code><ul class="pre-numbering" style="box-sizing: border-box; position: absolute; width: 50px; top: 0px; left: 0px; margin: 0px; padding: 6px 0px 40px; border-right: 1px solid rgb(221, 221, 221); list-style: none; text-align: right; background-color: rgb(238, 238, 238);"><li style="box-sizing: border-box; padding: 0px 5px;">1</li> <li style="box-sizing: border-box; padding: 0px 5px;">2</li> <li style="box-sizing: border-box; padding: 0px 5px;">3</li> <li style="box-sizing: border-box; padding: 0px 5px;">4</li> </ul>
여기서 주의가 필요한 두 가지 주요 문제는 다음과 같습니다.
1. basedir은 위 mysql 파일의 압축 해제 경로입니다.
2. datadir 경로 아래에 data라는 빈 폴더를 새로 만듭니다.
4단계: 데이터베이스 초기화 및 서비스 구성
이 단계를 수행하기 전에 두 가지 사항에 유의해야 합니다! ! ! 기억하다! ! !
첫 번째: 관리자 권한으로 CMD를 엽니다.
두 번째: cd 명령을 사용하여 MySQL 파일의 압축 해제 경로를 입력하세요!
그런 다음 mysqld --initialize --user=mysql --console을 실행하세요
성공적으로 실행되면 인쇄된 텍스트 끝에 데이터베이스의 초기 비밀번호가 표시됩니다. 이를 복사하고 마우스로 선택한 다음 Enter 키를 누르고 Ctrl+V를 누를 위치를 찾으세요.
위 작업을 완료한 후 관리자 권한으로 CMD를 열고 실행하세요
mysqld --install MySQL –>添加到系统服务 net start mysql –>启动mysql服务
5단계: mysql 초기 비밀번호 변경
1. CMD를 열고 다음을 실행합니다: mysql -u root -p
2. 방금 저장한 데이터베이스의 초기 비밀번호를 입력하세요.
3. 비밀번호 설정 실행 = 비밀번호('***NewPassword***');
NewPassword 위치에 자신의 새 비밀번호를 입력하세요.
위는 편집자가 소개한 MySql5.7.14 설치 튜토리얼(압축해제 버전)에 대한 자세한 설명입니다. 궁금한 사항이 있으면 메시지를 남겨주시면 편집자가 답변해 드리겠습니다. 제 시간에 당신에게. 홈페이지에 대한 귀하의 지원에 진심으로 감사드립니다!