최근에 웹 서버를 개발하던 중 데이터베이스(database)를 연동할 일이 생겼다. MariaDB는 mysql과 호환성이 100%인데 실제로 버전 5.5까지는 호환성 및 기능 측면에서 완벽히 호환되었다고 한다. 다만 현재에도 100%의 호환성이라 장담할 순 없다고 본다.
MariaDB를 설치할 운영체제는 Ubuntu 20.04.5 LTS 이다.
ubuntu@database-oci:~$ uname -a
Linux database-oci 5.15.0-1017-oracle #22~20.04.1-Ubuntu SMP Wed Aug 24 11:04:19 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
MariaDB 외 모든 DBMS는 Server와 Client로 구성된다. 설치 대상 서버의 기능에 따라 Server만 설치하거나 Client만 설치할 수도 있다.
먼저 MariaDB의 서버를 설치한다.
설치하기 전
ubuntu@database-oci:~$ sudo apt update
다음 명령어를 실행해서 패키지 목록을 업데이트 하자.
ubuntu@database-oci:~$ sudo apt install mariadb-server
그다음은 위의 명령어를 입력해 MariaDB를 설치한다.
설치가 되었다면 보안설정을 진행하면 된다.
(꼭 실행할 필요는 없지만, 직접 config를 건들고 싶지 않다면 하는 게 좋다.)
ubuntu@database-oci:~$ sudo mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on...
실행하면 현재 root의 Password를 묻는데 처음 설치하는 것임으로 n을 입력하고 넘어간다.
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
You already have a root password set, so you can safely answer 'n'.
Change the root password? [Y/n] n
... skipping.
다음 단계에서는 mysql의 root 비밀번호를 설정하겠냐고 묻는다. y를 입력하고 비밀번호를 설정해준다.
필자는 한번 설정하였기 때문에 n을 입력한다.
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB 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? [Y/n] n
... skipping.
다음은 익명 계정을 지우겠냐고 물어본다. y를 입력하고 넘어간다.
필자는 한번 설정하였기 때문에 n을 입력한다.
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? [Y/n] y
... Success!
다음은 MariaDB의 root계정으로 원격에서 접속을 허용할지 묻는다.
By default, MariaDB 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? [Y/n] n
... skipping.
다음은 test db를 삭제할 것인지 묻는다.
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
ubuntu@database-oci:~$
지금까지 설정한 내용을 즉시 반영하겠냐고 묻는다. y를 입력해 즉시 반영한다.
끝났다면 접속이 되는지 테스트를 해보자.
ubuntu@database-oci:~$ sudo mysql -u root -p
다음 명령어를 이용해 MariaDB의 root 권한으로 실행해 접속해 보자.
비밀번호는 앞에서 입력했던 MariaDB의 비밀번호를 입력하면 된다.
MariaDB server 설치가 끝났다면 Client를 설치하자.
필자의 Client는 Jetbrain사에서 제작한 DataGrip을 사용한다.
https://www.jetbrains.com/datagrip/
오늘은 MariaDB 설치와 관련된 포스팅이기 때문에 원격 서버 추가만 설명한다.
최근 목록에 없다면 완전 지원 부분의 MySQL 근처에 있을 것이다.
1번에 서버의 ip를 입력하고
2번에 mariadb 사용자의 id를 입력한다
3번에는 mariadb 사용자의 비밀번호를 입력하면 된다.
작성 후 연결 테스트를 눌러보았을 때 성공한다면 다음과 같이 뜨고 실패한다면 실패라고 뜬다.
DataGrip으로 연결이 안 된다면
서버의 포트 포워딩, 외부 접속, 비밀번호 오류 등이 있다.
포트 포워딩의 경우 3306번 포트를 열어줘야 한다.
외부 접속의 경우 서버 터미널에서
ubuntu@database-oci:~$ sudo mysql -u root -p
위의 명령어를 입력 후 아래 명령어를 순차적으로 입력한다.
use mysql
grant all privileges on *.* to 'root'@'%'identified by '비밀번호';
flush privileges;
비밀번호는 MariaDB의 root 비밀번호를 입력한다.
ex) 비밀번호를 1234로 설정 시
grant all privileges on *.* to 'root'@'%'identified by '1234';
자주 나오는 오류
ubuntu@database-oci:~$ 대충 db관련 명령어
Enter password:
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
라고 뜨는데 어떻게 하나요?
-> 필자는 명령어 앞에 sudo를 붙여서 해결하였습니다.
'개발' 카테고리의 다른 글
[JavaScript] console.log에 스타일(css) 입히는 방법 (0) | 2024.09.20 |
---|---|
[RaspberryPi] Taskbar 자동 숨기기 사용 방법 (0) | 2024.08.28 |
[Debian/Ubuntu] 데비안 계열 리눅스의 시작 로고 변경방법 with 라즈베리파이 (0) | 2024.08.16 |