일상 코딩
[MacOS/AppleSilicon] M1 MacOS DBeaver installation M1 맥에 DBeaver 설치 본문
MariaDB/AppleSilicon - DBeaver 설치
[MacOS/AppleSilicon] M1 MacOS DBeaver installation M1 맥에 DBeaver 설치
polarcompass 2022. 2. 11. 13:56728x90
DBeaver 설치
$ brew install DBeaver-community
※Homebrew 설치
https://polarcompass.tistory.com/140?category=514165
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