"[은노기의 JSP 웹 프로그래밍 입문]을 참고 했음을 미리 알려 드립니다."
홀로 연습이지만 실제 사용할 계정을 위해.. 계정 추가 함
1) root 계정 접속
./mysql -u root -p
2) 계정 만들기 : 사용자 계정 및 권한
사용자 계정 : jspid / 패스워드 : jsppass
mysql에서..
grant select, insert, update, delete, create, drop, alter
on testdb.* to 'jspid'@'localhost'
identified by 'jsppass';
on testdb.* to 'jspid'@'localhost'
identified by 'jsppass';
3) 모든 서버(%)에 접근 할 수 있는 권한
mysql에서..
grant select, insert, update, delete, create, drop, alter
on testdb.* to 'jspid'@'%'
identified by 'jsppass';
on testdb.* to 'jspid'@'%'
identified by 'jsppass';
4) MySQL 종료
mysql> exit
5) 만단 계정으로 다시 접속
./mysql -u jspid -p testdb
mysql에서..
show databases;
mysql에서..
show tables;