在開機選單grub裡,
kernel那行最後加上 -s開進去就是single user mode了, 可以passwd改密碼之類的
1. 當grub倒數時, 讓他停在選單
2. 按e, 編輯
3. 選到kernel那行 按e 編輯
4. 最後面加上-s, 然後Enter
5. 選到kernel那行 按b
個人在學習Linux過程當中的個人筆記,提供個人及有需要的人查閱,若有錯誤歡迎提供指正,謝謝。 This Blog recorded notes about my learning Linux and provides myself and others reference. If there are any incorrect information, welcome to leave a message to correct me, Thanks.
2010年10月12日 星期二
2010年10月1日 星期五
在RHEL 建立 postgreSQL database
在RHEL5.4下 postgreSQL要先安裝好並啟動
service postgresql start
1. 不能直接用root來建立資料庫, 所以另外create一個OS的user
adduser jack
passwd jack
2. 建立/更改 OS user "postgres"的密碼
passwd postgres
3. 建立role (postgreSQL的)
su - postgres
4. 建立資料庫 createdb
createdb jack
http://blog.vinceliu.com/2008/02/looking-for-postgres-configurations.html
service postgresql start
1. 不能直接用root來建立資料庫, 所以另外create一個OS的user
adduser jack
passwd jack
2. 建立/更改 OS user "postgres"的密碼
passwd postgres
3. 建立role (postgreSQL的)
su - postgres
createuser -d -a -P jeofflogout
4. 建立資料庫 createdb
createdb jack
http://blog.vinceliu.com/2008/02/looking-for-postgres-configurations.html
訂閱:
文章 (Atom)