1. MariaDB 설치
$ yum install -y mariadb-server
2. 실행 방법
- 시스템 부팅시 자동 시작
$ systemctl start mariadb
- mariadb 실행
$ systemctl start mariadb
- mariadb 상태 확인
$ systemctl status mariadb
3. Mariadb 접속 방법
- root 계정 비밀번호 생성
$ mysqladmin password mypassword(영문+숫자 특수문자 안됨)
$ mysql -u root mypassword
> UPDATE user SET password=password('mypassword') WHERE user='root'
> FLUSH PRIVILEGES;
- mariadb 접속 (root 계정)
$ mysql -u root -p
'tech > linux' 카테고리의 다른 글
21/07/14 CentOS 7 MariaDB utf8 한글 설정 (0) | 2021.07.14 |
---|---|
21/07/14 CentOS 7 MariaDB 외부 접속 가능하게 설정 하는 방법 (0) | 2021.07.14 |
21/07/14 MariaDB root 비밀번호 분실시 초기화 (0) | 2021.07.14 |
21/06/21 Kivy Course - Create Python Games and Mobile Apps (0) | 2021.06.21 |
21/06/21 Groomide - kivy helloworld app build 환경 설정 (0) | 2021.06.21 |