IT 개발/Database

MySQL 설치방법 (설치버전 / 윈도우 사용자)

KADOSHOLY 2020. 4. 3. 21:59
반응형

 

※ 윈도우에서 MySQL 설치하기 (설치버전)

 

1. 요약정리

 

 

1) Download

 

-> MySQL Community (GPL) Downloads

-> MySQL Workbench

-> Windows (x86, 64-bit), MSI Installer  다운로드

    (ex, mysql-workbench-community-8.0.19-winx64.msi)

         

 

 

2) 설치후 MySQL my.ini 파일 수정 

 

- my.ini 파일 수정을 위한 권한 수정

  C:\ProgramData\MySQL\MySQL Server 8.0\my.ini 우클릭 -> 속성 -> 보안 -> 편집  : (권한부여)

          

 

* my.ini 파알에 추가할 내용

 

====================================================================
[ C:\ProgramData\MySQL\MySQL Server 8.0\my.ini 파일에 추가할 것]
====================================================================

 

[client]

default-character-set=utf8

 

[mysql]

default-character-set=utf8

 

[mysqld]

... (파일 하단)...

character-set-server=utf8

collation-server=utf8_general_ci

init_connect=SET collation_connection=utf8_general_ci

init_connect=SET NAMES utf8

 

[mysqldump]

default-character-set=utf8

 

====================================================================

 

 

 

     * MySQL 다운로드 ( https://www.mysql.com/downloads )

 

MySQL :: MySQL Downloads

Contact MySQL  |  Login  |  Register The world's most popular open source database MySQL.com Downloads Documentation Developer Zone MySQL Enterprise Edition includes the most comprehensive set of advanced features and management tools for MySQL. MySQL Data

www.mysql.com

 

반응형