[ 응용문제 1 - 사용자에게 권한주기] - https://dev-eunse.tistory.com/120 하단 확인
root 사용자에게 일반 사용자에게 새로운 database 권한을 설정하여 접속되도록 합니다.
DB : mobile_shop
id : coupang
pw : c1004
로 접속했을때 mobile_shop이 보이게
1. create database mobile_shop;
2. use mysql;
3. create user 'coupang'@localhost' identified by 'c1004';
4. insert into db values ('localhost','mobile_shop','coupang','y','y','y','y','y','y','y','y','y','y','y','y','y','y','y','y','y','y','y');
5. exit
6. mysql amin -u root -p reload
7. mysql -u coupang -p
8. show databases
'CLASS > DATABASE' 카테고리의 다른 글
#3-2 / 외부 사용자 추가 방법 (0) | 2024.06.04 |
---|---|
#3-1 / unique, alter문법 (0) | 2024.06.04 |
#2-3 / database table 설계 (0) | 2024.06.03 |
#2-1 / MYSQL 기초문법 (0) | 2024.06.03 |
#1-1 / MYSQL start,setting (0) | 2024.05.30 |