Last Modified 2023.8.2

우분투에 MariaDB 설치

sudo apt update
sudo apt install mariadb-server

설치 후, 보안 스크립트 실행

sudo mysql_secure_installation

아래처럼 설정

Enter current password for root (enter for none): <just press ENTER>

Switch to unix_socket authentication [Y/n] n

Change the root password? [Y/n] n

이어지는 프롬프트 질문에는 모두 엔터를 눌러 디폴트 값 Y 선택

Remove anonymous users? [Y/n]  

Disallow root login remotely? [Y/n] 

Remove test database and access to it? [Y/n] 

Reload privilege tables now? [Y/n] 

사용법:

sudo mysql
use mysql
show tables;

참고: mysql --user=root --password mysql 명령으로 접속할 수 없다.

MySQL JDBC 드라이버를 그대로 사용할 수 있다.

<!-- https://mvnrepository.com/artifact/com.mysql/mysql-connector-j -->
<dependency>
    <groupId>com.mysql</groupId>
    <artifactId>mysql-connector-j</artifactId>
    <version>8.1.0</version>
</dependency>
참고