티스토리 뷰

DB

[DB] MySQL 설치하기

rimo (리모) 2022. 2. 3. 15:04

 

우분투를 이용한 리눅스 환경에서 MySQL을 설치하는 방법을 다룹니다.

 

버추얼 박스 우분투 가상 머신에서 진행합니다.

 

 


 

 

MySQL을 설치하기 위해 패키지 관리자가 최신이어야 합니다.

아래 명령어를 입력합니다.

 

 

$ sudo apt update

 

 

 

 

 

 

 

업데이트가 완료되었다면 이제 MySQL을 설치해줍니다.

 

$ sudo apt install mysql-server

 

명령어를 입력하면 설치할 패키지 목록과 디스크 용량을 보여주며 설치를 계속할지 묻습니다.

 

 

 

 

 

 

 

엔터를 눌러 진행합니다.

 

 

 

 

 

 

 

이어서 보안설정을 합니다. 불분명한 외부 접속을 막기 위해서 설정해주는 것이 좋습니다.

 

$ sudo mysql_secure_installation

 

 

 

 

먼저 비밀번호 플러그인을 설치할지 묻습니다.

이 플러그인은 모든 비밀번호가 특정 규칙을 준수하도록 강제해 보안성을 높이는데,

저는 그냥 넘어가겠습니다. 엔터를 눌러 진행합니다.

 

VALIDATE PASSWORD PLUGIN 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 plugin?

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

 

 

 

 

 

다음으로 MySQL에서 사용할 ROOT(최고관리자)의 비밀번호를 설정합니다. 두 번 입력해 주시면 됩니다.

 

Please set the password for root here.

New password: 

Re-enter new password:

 

 

 

 

 

 

익명의 사용자를 제거하는지 묻는 내용입니다. y를 입력해 제거합니다.

 

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) :

 

 

 

 

 

 

 

최고관리자의 외부 로그인을 허용하지 않을 것인지 묻는 내용입니다.

다른 ip에서 접속을 못하도록 y를 눌러 외부 접속을 차단합니다.

 

 

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) :

 

 

 

 

 

MySQL에 기본적으로 설정된 test 데이터베이스를 삭제할지 묻는 내용입니다.

y를 눌러 삭제합니다.

 

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) :

 

 

 

 

 

 

마지막으로 privilege tables을 다시 로드할지 묻는내용입니다.

y를 입력하여 다시 로드합니다.

 

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) :

 

 

 

 

 

 

그럼이제 생성된 MySQL 서버에 접속해 보겠습니다. 아래 명령어를 입력합니다.

$ sudo mysql -u root -p

 

 

 

 

 

 

설정한 루트 비밀번호를 입력하고 접속이 정상적으로 되면 성공입니다!

 

 

 

 

 

 

감사합니다.

 

 


 

 

 

공부한 내용을 복습/기록하기 위해 작성한 글이므로 내용에 오류가 있을 수 있습니다.

댓글
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Total
Today
Yesterday