[MySQL] 설치와 초기 설정 for macOS

황인용·2020년 6월 6일
10

Database

목록 보기
3/16
post-thumbnail

MySQL 설치 for macOS

MAC에서 MySQL설치방법은 MySQL Community Server dmg파일을 다운받아 설치하는 방법과 Homebrew로 MySQL 패키지 다운받아 설치하는 방법 두가지이다.

1. MySQL Community Server

1-1. MySQL Community Server 다운

1-2. 설치한다. 끝.

2. HOMEBREW 패키지 설치

2-1. brew 확인 및 업데이트

> brew -v
Homebrew 2.2.13
Homebrew/homebrew-core (git revision e10a94; last commit 2020-04-17)

> brew update

2-2. MySQL 패키지 확인

> brew search mysql
==> Formulae
automysqlbackup            mysql-client@5.7           mysql-search-replace
mysql ✔                    mysql-connector-c++        mysql@5.6
mysql++                    mysql-connector-c++@1.1    mysql@5.7
mysql-client               mysql-sandbox              mysqltuner
==> Casks
homebrew/cask/mysql-connector-python     homebrew/cask/navicat-for-mysql
homebrew/cask/mysql-shell                homebrew/cask/sqlpro-for-mysql
homebrew/cask/mysql-utilities

2-3. brew install mysql

  • brew install mysql : 최신mysql 패키지를 다운받아서 설치함
  • brew install mysql@5.5 : mysql5.5버전 패키지를 다운받아서 설치함
> brew install mysql

2-4. MySQL 설치 확인

  • brew list에 mysql이 있으면 설치됨
> brew list
apr		gettext		libidn2		nghttp2		readline
apr-util	glib		libmetalink	oniguruma	rtmpdump
argon2		gmp		libpng		openldap	sqlite
aspell		icu4c		libpq		openssl@1.1	tidy-html5
autoconf	jansson		libsodium	pcre		unixodbc
awscli		jemalloc	libssh2		phalcon@4.0.5	webp
brotli		jpeg		libtiff		php		wget
c-ares		krb5		libtool		php72-phalcon	xz
curl-openssl	libev		libunistring	php@7.2		zsh
freetds		libevent	libzip		protobuf
freetype	libffi		mysql		psr@74
gdbm		libidn		ncurses		python@3.8

3. MySQL 실행 및 설정방법

3-1. MySQL 실행

> mysql.server start
Starting MySQL
 SUCCESS!
  • 네트워크 허용을 물어보는 alert창이 뜬다면, 허용 한다.

3-2. MySQL 설정

  • MySQL 설정을 하기 위해서는 mysql_secure_installation 명령어를 실행하여야 한다.
> mysql_secure_installation
mysql_secure_installation: [ERROR] unknown variable 'default-character-set=utf8'.

Securing the MySQL server deployment.

Enter password for user root:

3-1. 비밀번호 복잡성 유무

  • 비밀번호를 복잡하게 설정할 것인지, 쉬운 비밀번호를 사용할 것인지 Yes | No
  • No
VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

Press y|Y for Yes, any other key for No: No

3-2. 비밀번호 설정

New password:

Re-enter new password:

3-3. 사용자 설정

  • Remove anonymous users? 사용자에 대한 설정을 묻는다.
  • Yes 일 경우 : -u(user) 옵션 필요 ex) mysql -u root -p
  • No 일 경우 : -u(user) 옵션 필요 없음 ex) mysql
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : Yes

3-4. 원격 접속 설정

  • Remove anonymous users? (Press y|Y for Yes, any other key for No) 다른 IP에서 root 아이디로 원격접속을 허용하는지에 대한 설정을 묻는다.
  • Yes 일 경우 : 원격접속 불가능
  • No 일 경우 : 원격접속 가능
Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : No

3-5. TEST 데이터베이스 설정

  • Remove test database and access to it? (Press y|Y for Yes, any other key for No)
    TEST 데이터베이스를 설정을 묻는다.
  • Yes 일 경우 : Test 데이터베이스 제거
  • No 일 경우 : Test 데이터베이스 유지
By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : yes

- Dropping test database...
Success.

 - Removing privileges on test database...
Success.

3-6. 변경된 권한을 테이블에 적용여부 설정

  • Reloading the privilege tables will ensure that all changes made so far will take effect immediately
    변경된 권한을 테이블에 적용하는 설정에 대한 질문
  • Yes 일 경우 적용
  • No 일 경우 미적용
Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : yes

3-7. 설정 완료

All done!

4. MySQL 접속

4-1. local MySQL server 접속

> mysql -u root -p
Enter password:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 12
Server version: 8.0.19 Homebrew

Copyright (c) 2000, 2020, 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>

4-2. MySQL 서버 설정 확인

  • MySQL 접속 후 확인
mysql> status
--------------
mysql  Ver 8.0.19 for osx10.15 on x86_64 (Homebrew)

Connection id:		12
Current database:
Current user:		root@localhost
SSL:			Not in use
Current pager:		less
Using outfile:		''
Using delimiter:	;
Server version:		8.0.19 Homebrew
Protocol version:	10
Connection:		Localhost via UNIX socket
Server characterset:	utf8
Db     characterset:	utf8
Client characterset:	utf8
Conn.  characterset:	utf8
UNIX socket:		/tmp/mysql.sock
Binary data as:		Hexadecimal
Uptime:			19 min 18 sec

Threads: 3  Questions: 14  Slow queries: 0  Opens: 137  Flush tables: 3  Open tables: 59  Queries per second avg: 0.012
--------------

5. 서버 설정

  • MySQL 서버는 단 하나의 설정 파일을 사용
  • 리눅스를 포함한 유닉스 계열은 my.cnf 파일 사용
  • 윈도우 계열은 my.ini 파일 사용

5-1. 설정 파일 위치 및 구성

  • bash에서 확인
> cat /etc/my.cnf
[mysqld]

character-set-server=utf8

collation-server=utf8_general_ci

init_connect=SET collation_connection=utf8_general_ci

init_connect=SET NAMES utf8

[client]

default-character-set=utf8

[mysql]

default-character-set=utf8
  • MySQL 접속 후 확인
-- Global 환경변수 확인
mysql> SHOW GLOBAL VARIABLES;
mysql> SHOW GLOBAL VARIABLES\G;

-- 현재 Session 환경변수 확인
mysql> SHOW VARIABLES;
mysql> SHOW VARIABLES\G;

5-2. MySQL 시스템 변수의 특징

  • MySQL server가 startup 할 때 my.cnf 파일의 값을 읽어 들인다.
  • 운영 중 값을 변경할 때에는 'SET' 구문을 사용하여 변경이 가능하다.
    • Dynamic이 'Yes'인 변수 일 경우만 'SET'으로 변경이 가능하다.(동적)
  • 운영 중에 'SET'으로 변경된 값은 Option file과 동기화 되지 않는다.
  • default 값은 MySQL버전마다 다르다

5-3. MySQL 서버 시스템 변수

5-4. MySQL 서버 시스템 변수 의미

  • [mysqld] : MySQL 서버 기본 옵션
    • server-id : MySQL이 내부적으로 자기 자신을 식별하기 위한 아이디. default가 '1'이므로, '1'이상 값을 설정하면 된다.
    • user : MySQL이 설치된 서버의 운영체제 계정을 입력한다.
    • port : MySQL 서버의 port 번호.
    • basedir : MySQL 서버의 홈 디렉토리. 기본 디렉토리.
    • datadir : MyISAM의 데이터 파일이 저장되는 디렉토리.
    • tmpdir : 임시 테이블을 저장하는 디렉토리.
    • character-set-server, collation-server : MySQL 서버의 기본 문자집합을 설정. 별도로 DB나 테이블 또는 컬럼에서 사용할 문자집합을 재정의하지 않으면 이 문자집합이 사용된다.
      예를들어 모든 문자열 컬럼에서 대소문자를 구분하도록 처리하도 싶으면 "collation-server : utf8_bin" 을 설정한다.
    • default-storage-engin : MySQL 서버 내에서 기본적으로 사용할 스토리지 엔진을 정의한다.
    • InnoDB, MyISAM등등 이 있다.
    • 임시 테이블은 MyISAM 스토리 엔진만 사용된다.
    • skip-name-resolve : 역으로 DNS 검색하는 옵션을 비활성화 한다.
    • skip-external-locking : 외부(TCP/IP) 잠금을 비활성화 한다.
    • max_connections : MySQL 서버가 최대한 허용할 수 있는 클라이언트의 연결 수를 제한하는 설정.
    • max_connect_errors : 특정 host로 부터의 접속이 이 설정값 이상으로 실패하게 되면 자동으로 block 처리된다.
    • thread_cache_size : MySQL 서버에서 스레드와 커넥션은 같은 의미로 사용.
    • 커넥션은 클라이언트-서버 와의 연결
    • 스레드는 해당 커넥션으로 부터 오는 작업 요청을 처리하는 주체.
    • 서버에서 스레드 사이즈를 늘리기 보다는 클라이언트 단에서 커넥션 풀을 사용할 수 있게 개발하는 게 좋다.
    • wait_timeout : MySQL 서버에 연결된 클라이언트가 wait_timeout에 지정된 시간 동안 아무런 용청 없이 대기하는 경우 MySQL 서버는 해당 커넥션을 종료해 버린다.
    • default : 28800초(8시간)
    • read-only : MySQL을 복제해서 사용하는 경우 즉, 마스터와 슬레이브 개념으로 나눠서 운영할 경우 슬레이브 DB가 읽기 권한만 갖도록 설정한다.
    • relay-log, relay_log_purge : 마스터 MySQL에서 바이너리 로그를 생성하면 슬레이브 MySQL에서는 마스터의 바이너리 로그를 읽어와서 릴레이 로그라는 파일을 생성한다.
      슬레이브 MySQL 에서 "CHANGE MASTER" 명령어를 사용하게 되면 기존 relay log 는 삭제.
    • relay-log 파일명 설정
    • relay_log_purge를 "TRUE" 또는 "1"로 설정하면 자동으로 오래된 릴레이 로그는 삭제 후 생성

5-5. 서버 시스템 변수 특성 의미

  • Cmd-line
    - MySQL 서버의 명령행 인자로 설정될 수 있는지 여부를 나타낸다.
    - Yes 이면 명령행 인자로 이 시스템 변수의 값을 변경하는 것이 가능하다는 의미.
  • Option file : MySQL 설정 파일인 my.cnf(또는 my.ini)로 제어할 수 있는지 여부를 나타낸다.
  • System Var
    - MySQL 서버의 설정 파일을 작성 시, 각 변수명에 사용되는 하이픈('-') 또는 언더스코어('_')통용여부를 나타낸다.
    - Yes이면 통용으로 사용가능.
  • Var Scope : 시스템 변수의 적용 범위를 나타낸다.
  • Global : 전역으로 사용 가능
  • Session : 커넥션 또는 세션에서 사용 가능
  • Dynamic
    - 시스템 변수가 동적인지 정적인지 구분하는 변수 이다.
    각 시스템 변수마다 동적으로 값을 변경할 수 있고, 또는 정적으로만 값을 변경할 수 있다.
    - Yes 이면 동적, No이면 정적
profile
dev_pang의 pang.log

0개의 댓글