1. DB 생성
mysql> create dbname;
2. user 계정에 사용자 ID 추가
mysql> insert into user (Host, User, Password) values (’%',’계정’,password(’암호’));
3. DB 계정과 DB연결
mysql> insert into db values(’%',’DB명’,'계정’,'Y’,'Y’,'Y’,'Y’,'Y’,'Y’,'Y’,'Y’,'Y’,'Y’);
4. DB계정에 권한 주기
mysql> grant all privileges on dbname.* to username@’%’ identified by ‘password’;
5. DB 서버 갱신
mysql> flush privileges;
6. mysql 재가동
[root@linux /]# mysqladmin -u root -p reload
'Infrastructure' 카테고리의 다른 글
윈2003의 미디어 서비스를 (0) | 2009.12.11 |
---|---|
Windows Script Encoder & Decoder (1) | 2009.12.10 |
아파치 데몬실행파일 : httpd (0) | 2009.12.09 |
nice (스케줄링에 의한 프로세스 우선순위 변경) (0) | 2009.12.09 |
free (시스템메모리 사용량 확인) (0) | 2009.12.09 |