UbuntuにPostgreSQLをインストールする

2017年10月9日

postgresqlのインストール
$ sudo apt-get install postgresql

postgresqlバージョンの確認
$ ps -aef | grep postgres

データベースの作成
$ sudo su – postgres # ユーザpostgresになる
$ createdb demodb # データベース demodb を作成
$ psql demodb # demodb にログイン

PostgreSQL

Posted by arkgame