이 기사는 주로 win10 64비트 환경에서 mysql 5.7.13의 설치 및 구성 방법에 대한 그래픽 튜토리얼을 공유합니다. 관심 있는 친구는 이를 참조할 수 있습니다.
이 기사의 예는 mysql을 공유합니다. 5.7.13 winx64 참고용으로 설치 및 구성 방법에 대한 그래픽 튜토리얼이 제공됩니다. 구체적인 내용은 다음과 같습니다.
(1) MySQL 프로그램을 다운로드하거나, MySQL 공식 웹사이트에서 다운로드할 수 있습니다.
을 다운로드하려면 여기를 클릭하세요. (2) 설치하려는 디렉터리에 mysql-5.7.13-winx64.zip 파일의 압축을 풉니다. 예시는
D:programmysql-5.7.13-winx64입니다. 디렉토리 구조는 다음과 같습니다.
폴더: bin docs include lib share
파일: COPYING README my-default.ini
(3) my-default.ini 파일을 동일한 디렉토리에 복사하고 이름을 바꿉니다. 내 .ini에.
(4) E 드라이브에 새로운 mysqlData 폴더를 생성합니다.
(5) my.ini의 내용을 지우고 다시 복사합니다.
[client] no-beep # pipe # socket=mysql port=3306 [mysql] default-character-set=utf8 # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [mysqld] explicit_defaults_for_timestamp = TRUE # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. innodb_buffer_pool_size = 2G # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir="D:\program\mysql-5.7.13-winx64\" datadir="E:\mysqlData\" port=3306 server_id=1 general-log=0 general_log_file="mysql_general.log" slow-query-log=1 slow_query_log_file="mysql_slow_query.log" long_query_time=10 log-error="mysql_error_log.err" default-storage-engine=INNODB max_connections=1024 query_cache_size=128M key_buffer_size=128M innodb_flush_log_at_trx_commit=1 innodb_thread_concurrency=128 innodb_autoextend_increment=128M tmp_table_size=128M # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M #sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" character-set-server=utf8 innodb_flush_method=normal
(6) 관리자로 cmd를 입력하고(다음 모두) cd 명령을 사용하여 mysql 디렉토리의 bin 폴더로 들어갑니다.
(7) 다음 명령을 실행하여 mysql 서비스를 설치합니다:
mysqld --install MySQL --defaults-file=D:\program\mysql-5.7.13-winx64\my.ini
성공적으로 설치되면 다음 메시지가 표시됩니다: Service 성공적으로 설치됨
(8) 데이터 디렉토리를 생성하고 초기화하려면
mysqld --initialize
이 명령을 실행하면 위에서 생성한 E:mysqlData 폴더에 MySQL에서 사용하는 파일과 폴더가 생성됩니다.
(9) E:mysqlData 폴더의 파일 구조는 다음과 같습니다.
폴더: mysql,performance_schema,sys
파일: auto.cnf DESKTOP-SDK08IO.pid ib_buffer_pool ib_logfile0 ib_logfile1 ibdata1 ibtmp1 mysql_error_log .err mysql_slow_query.log
(10) E:mysqlData 폴더의 mysql_error_log 파일에서 다음 줄을 찾습니다.
코드는 다음과 같습니다.
2016-08-02T23:09:18.827488Z 1 [Note] A temporary password is generated for root@localhost: #98um:=-RfbI
The 임시 비밀번호는root@localhost: 뒤에 #98um:=-RfbI가 옵니다.
(11) 동일한 명령줄 프로그램에서 net start mysql 서비스를 시작합니다.
(12) 새 명령 프로그램을 열고 D:programmysql-5.7.13-winx64bin 폴더를 입력한 후
mysql -uroot -p
명령을 실행합니다. (13) 연결을 위한 초기 비밀번호를 입력하고 MySQL 데이터베이스 를 입력하고 비밀번호를 다음과 같이 변경하세요.
set password=password('123456'); flush privileges;
(14) MySQL을 종료하려면 exit를 입력하세요.
(15) 동일한 명령어 이후에 새로운 비밀번호로 mysql을 입력하고 명령어 :
mysql -uroot -p123456
MySQL 입력 후 SQL :
select * from information_schema.TABLES t limit 3;
를 입력하여 정상적으로 설치되었는지 확인합니다.
(16) MySQL 공식 웹사이트로 이동하여 Workbench를 다운로드하고 설치하면 MySQL 그래픽 인터페이스를 사용할 수 있습니다.
위 내용은 win10 64-bit 시스템에서 mysql5.7.13 설치 및 설정 방법 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!