安裝 PostgreSQL、PgAdminIII、Psycopg2
sudo apt-get install postgresql pgadmin3 python-psycopg2
修改預設使用者postgres之密碼:
sudo -u postgres psql postgres
postgres=# ALTER USER postgres WITH ENCRYPTED PASSWORD 'yourpassword';
ALTER ROLE
postgres=# \q
打開 PgAdmin III
1.新增伺服器連線
按下[新增伺服器連線]
名稱:自訂
主機:127.0.0.1
使用者名稱:postgres #預設
密碼:空 #預設
張貼留言