Libreplan and PostgreSQL
Libreplan 安裝:
在ubuntu 環境下
sudo add-apt-repository ppa:libreplan/ppa
sudo apt-get update
sudo apt-get install libreplan
然後就可以連上
http://localhost:8080/libreplan/
PostgreSQL 設定:
Postgresql預設是只能本機連線,所以要改依些設定
1.修改:pg_hba.conf
檔案位置: /etc/postgresql/9.1/main/pg_hba.conf
加上一行: host all all 0.0.0.0/0 password
參數1: host表遠端存取,local表本機端存取
參數2: 設定可存取的Database
參數3: 設定可存取的使用者
參數4: 設定可存取之網域,此設定全部網域皆可存取
參數5: trust表不需認證,password表示需要密碼
2.修改:postgresql.conf
檔案位置: /etc/postgresql/9.1/main/postgresql.conf
取消註解並設定為 listen_addresses ='*' (拿掉#)
取消註解並設定為 port=5432
3.重新啟動資料庫
4. 其他:
sudo apt-get install nmap
nmap localhost
相關連結: