- mariadb 접속
$ mysql -u root -p
- mysql database 선택
> use mysql;
> select host, user from user;
- localhost 목록만 있는 상태에서 *.* 모든 database, % : 모든 IP 허용
> grant all privileges on *.* to 'root'@'%' identified by 'root 비밀번호';
> flush privileges;
> select host, user from user;
- mariadb 재시작
$ systemctl restart mariadb
- (option) 방화벽 3306 port 차단되어 있을경우 방화벽 설정
$ firewall-cmd --zone=public --permanent --add-port=3306/tcp
# firewall-cmd --reload
'tech > linux' 카테고리의 다른 글
21/07/14 CentOS 7 MariaDB utf8 한글 설정 (0) | 2021.07.14 |
---|---|
21/07/14 MariaDB root 비밀번호 분실시 초기화 (0) | 2021.07.14 |
21/07/14 Centos 7 MariaDB 설치 및 실행 명령 (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 |