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
- pandas
- port
- 다이어트
- javascript
- swift
- MS-SQL
- sqlite
- 맛집
- 라즈베리파이
- Excel
- PER
- tensorflow
- mssql
- 리눅스
- MySQL
- urllib
- PyQt5
- Linux
- node.js
- ASP
- ubuntu
- GIT
- 날짜
- Unity
- 유니티
- 함수
- PyQt
- flutter
- python
- IOS
Archives
목록2019/01/16 (1)
아미(아름다운미소)
[MySQL] 유저 권한 설정
MySQL 의 grant 명령어로 사용자 권한 설정 사용자 권한 설정 grant all privileges on dbname.table to userid@host identified by 'password'; 모든 db 및 테이블에 접근권한 설정 grant all privileges on *.* to userid@host identified by 'password'; 모든 db 및 테이블에 권한을 주고 로컬 및 리모트에서도 접속가능하도록 설정 grant all privileges on *.* to userid@'%' identified by 'password'; 설정한 권한 적용 (반드시 해야 적용이 된다.) flush privileges; 권한 삭제 revoke all on dbname.table fr..
데이타베이스/MYSQL
2019. 1. 16. 10:30