CentOS에서 마리아DB를 설치하고 사용자 권한을 설정하는 방법은 다음과 같습니다.
설치
sudo yum install mariadb-server
# 시작
sudo systemctl start mariadb
# 종료
sudo systemctl stop mariadb
사용자 권한 설정
CREATE USER 'user_name'@'%' identified by 'password';
CREATE USER 'user_name'@'localhost' identified by 'password';
CREATE DATABASE db_name;
grant all privileges on db_name.* to 'user_name'@'%';
grant all privileges on db_name.* to 'user_name'@'localhost';
flush privileges;
연결
mysql -h 주소 -P 포트 -u 유저명 -p
반응형