본문 바로가기
MySQL

[MySQL] MySQL user 목록, 추가

by clolee 2022. 8. 31.

 

user 목록 확인

 

mysql 서버 실행

mysql.server start

 

mysql 접속

mysql -u root -p

mysql 기본 스키마인 mysql 사용

use mysql;

user 확인

SELECT user, host FROM user;

 

user 추가

user 추가

create user test@localhost identified by '1234';

 

권한 부여

grant all privileges on *.* to test@localhost;

 

user 목록 확인

 

 

참고 :

https://velog.io/@taelee/mysql-user%ED%99%95%EC%9D%B8-%EB%B0%8F-%EC%B6%94%EA%B0%80

https://ssungkang.tistory.com/entry/MySQL-%EC%82%AC%EC%9A%A9%EC%9E%90-%EB%AA%A9%EB%A1%9D-%EC%B6%94%EA%B0%80-%EC%A0%9C%EA%B1%B0-%EB%B0%8F-%EA%B6%8C%ED%95%9C-%EB%B6%80%EC%97%AC-%EC%A0%9C%EA%B1%B0

 

 

댓글