_ Prerequisite
- Ubuntu Server installation (You can refer Overall/Ubuntu Server)
_ Install&Setup
- Step.1
- Install PostgreSQL.
$ sudo apt-get install postgresql pgadmin3
- Step.2
- Set up the initial password for postgres user.
$ sudo passwd postgres
<password>
- Step.3
- Setup the initial password for postgres DB user.
$ su - postgres
$ psql
postgres=# alter user postgres with password '<password>';
- Step.4
- Launch pgAdminIII.
- Step.5
- Access DB.
_ HowToUse
- Step.1
- xxx
_ Author
S.Yatsuzuka