250x250
Notice
Recent Posts
«   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
관리 메뉴

일상 코딩

[MacOS/AppleSilicon] M1 MacOS DBeaver installation M1 맥에 DBeaver 설치 본문

MariaDB/AppleSilicon - DBeaver 설치

[MacOS/AppleSilicon] M1 MacOS DBeaver installation M1 맥에 DBeaver 설치

polarcompass 2022. 2. 11. 13:56
728x90
DBeaver 설치
$ brew install DBeaver-community

※Homebrew 설치

https://polarcompass.tistory.com/140?category=514165

왼쪽 상단 + 플러그 클릭
설치한 DBMS와 DBeaver를 연결해준다.
DBMS 선택 후 다음 페이지에서 Driver properties를 선택 후 드라이버를 다운받는다.
Download 버튼 클릭
Driver Download 후 Test Connection 버튼 클릭하여 연결이 잘되는지 확인 
연결이 잘되면 위와 같은 창이 뜬다.

MariaDB 시작
$ mysql.server start

컴퓨터 시작시 자동으로 MariaDB 시작하기 위해 터미널에 아래 코드 입력

$ brew services start mariadb

 

MariaDB 실행 확인
$ brew services list

터미널 창에 위와 같은 결과값이 나온다. 정상적으로 작동이 될시에는

MariaDB root 계정 설정
※ 정상작동 안되도 일단 아래 코드 실행해준다.
$ sudo mariadb-secure-installation

비밀번호를 입력 한 후 몇 단계 Y/N를 선택해준다.

# 1
Switch to unix_socket authentication [Y/n] n
 ... skipping.

# 2
Change the root password? [Y/n] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
 ... Success!
 
 # 3
 Remove anonymous users? [Y/n] y
 ... Success!
 
 # 4
 Disallow root login remotely? [Y/n] n
 ... skipping.
 
 # 5
 Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!
 
 # 6
 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!
Mariadb root 계정 접속 테스트
$ mysql -u root -p
728x90