2008年8月25日 星期一

PostgreSQL 8.3 中增加 user 及 db

PostgreSQL 8.3 中增加 user 及 db

參考自 澎湖人No1自由、免費軟體交流網


1. 建立使用者 storylai
  # su postgres
   bash-3.00$ createuser storylai -P (-P加上密碼)
   Enter password for new user:
   Enter it again:
   Shall the new user be allowed to create databases? (y/n) n
   (建議一般使用者選 n,如是管理人則選 y )
   Shall the new user be allowed to create more new users? (y/n) n
   (建議都選 n ,除非程式需要)
   CREATE USER

2. 移除使用者 storylai
   # su postgres
    bash-3.00$ dropuser storylai
    DROP USER

3. 建立資料庫 mydb
   # su postgres
    bash-3.00$ createdb mydb
    CREATE DATABASE

4. 移除資料庫 mydb
   # su postgres
    bash-3.00$ dropdb mydb
  
  

沒有留言: