#author("2017-08-13T22:36:06+09:00","","") #author("2017-08-13T22:43:51+09:00","","") [[Linux/Ubuntu]] * PostgreSQL [#uc9bab45] PostgreSQL(ぽすとぐれすきゅーえる: 発音例)はオープンソースのオブジェクト関係データベース管理システム (ORDBMS) である。~ その名称は Ingres の後継を意味する「Post-Ingres」に由来している。~ 「Postgres」や「ポスグレ」と呼ばれることも多い。~ ※wikipedia引用~ ** install [#c5e2ba10] - コマンド #highlighter(JavaScript,number){{ sudo apt-get install -y postgresql-9.3 }} ** 初期設定 [#k03456e8] - コマンド #highlighter(JavaScript,number){{ sudo passwd postgres // パスワード設定 ex)postgres0000 su - postgres psql -c "alter user postgres with password 'postgres0000'" }}