사용자 도구

사이트 도구


dbms:mysql:accountcreate

MySQL

MySQL User/Database Create Scripts

  1. 아래는 User/DB 생성 스크립트이다.
    # cat admin_user.sql
    use mysql;
    grant usage on *.* to admin@localhost;
    update user set password=password('password') where user='admin';
    -- drop database admindb;
    create database admindb;
    grant all on admindb.* to admin;
    flush privileges;
  2. mysql root 로 스크립트를 실행한다.
    # mysql -u root -p < admin_user.sql
dbms/mysql/accountcreate.txt · 마지막으로 수정됨: 2007/05/11 19:34 저자 starlits