@'%'

·MySQL
-- 데이터베이스 목록 확인 show databases; create database board; use board; -- 유저 생성 create user 'tester'@'%' identified by '1234'; -- 권한 부여 grant all privileges on board.* to 'tester'@'%'; create user 로 testser 라는 유저를 생성 @'%' 로 유저의 원격 접속을 허용한다 identified by 로 비밀번호를 1234로 생성한다 grant 로 tester라는 유저에게 board에 관련된 모든 권한을 준다
초보개발자J
'@'%'' 태그의 글 목록