반응형
계정 생성 예시
create user 'test'@'%' identified by '패스워드'
create user 'test1'@'%' identified by 'test!@#$'
계정 권한
권한 확인
show grants for 계정명
권한 주기
GRANT 권한 다양하게 줄수 있음 (select,update..)
GRANT ALL PRIVILEGES ON 디비명.* TO 계정명@'%';
계정명 뒤에 %는 원격지 어디든 접속가능하게 하는..
예시
use mysql;
create user 'test'@'%' identified by 'test1234';
grant select on test_dev.* to 'test'@'%' identified by 'test1234';
show grants for 'test_dev';
캐릭터 셋 확인
show variables like 'char%';
버전 체크
SELECT VERSION();
반응형
댓글