1단계. 가상머신 준비
2단계. http://192.168.0.100:1234/test_db%2dmaster.zip 파일 가져오기
yum install -y wget
wget http://192.168.0.100:1234/test_db%2dmaster.zip
3단계. zip 파일 해제하기
yum install -y unzip
unzip ./test_db%2dmaster.zip
4단계 DB 서버의 관리자 권한으로 압축해제한 파일을 DB 서버에 추가
mysql -u root -p < elployees
5단계 권한 부여
GRANT ALL PRIVILEGES ON employees.* TO 'kty'@'%';
6단계 확인
상황 종료~