반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- zoom
- 리눅스
- 줌 채팅
- zoom OkHttp
- 아파치 오픈미팅
- centos
- java
- apache openmeetings
- centos7
- jboss
- 줌 녹화
- JSP
- mysql
- postgresql
- 줌 개발
- db
- 화상회의
- zoom OkHttpClient
- openmeetings
- wildfly
- zoom sdk
- zoom api
- zoom 서버통신
- tomcat
- ubuntu
- 웹화상회의
- 아파치 openmeetings
- 명령어
- 데이터베이스
- AWS
Archives
- Today
- Total
목록mysql권한 (1)
StartIT
mysql 계정 생성 및 권한 부여
use mysql; select user, host from user; //유저 정보 확인 create user 'id'@'localhost' identified by 'password'; //로컬 접속 유저 create user 'id'@'%' identified by 'password'; //모든ip 허용 유저 create user 'id'@'ip주소' identified by 'password'; //특정ip 허용 유저 drop user 'id'@'%'; //유저 삭제 grant all privileges on *.* to 'id'@'%'; //유저에게 모든db 권한 부여 grant all privileges on db명.* to 'id'@'%'; //유저에게 특정db 권한 부여 flush priv..
DB/mysql
2020. 11. 26. 16:14