User1 mysql user 생성 및 roll 권한 부여 #@localhost는 내부접근 @"%" 외부 접근 허용이고 ""를 붙이는건 상관없다. create user test2@localhost identified by "user1234"; create user "test3"@"%" identified by "1234";v user 생성 후 권한 주기 all privileges on은 모든 권한을 주는것 mysql 8.0 이후부터는 생성하면서 권한을 주지 못함 create user "test4"@"localhost" identified by "1234"; grant all privileges on *.* to "test4"@"localhost" with grant option; #권한 해제 revoke grant option on *.* from "test4".. 2022. 7. 19. 이전 1 다음