postgreSQL 14 インストール

未分類

2021年10月4日に PostgreSQL 14がリリースされました!

PostgreSQL 14正式リリース。多くの接続を使用するワークロードや
論理レプリケーションでの性能向上、可観測性の向上など新機能 – 2021年10月4日
https://www.publickey1.jp/blog/21/postgresql_14.html

インストール

macOS Montrey(Apple Silicon)で確認済み

インストール

% brew install postgresql

バージョン確認

% postgres --version
postgres (PostgreSQL) 14.0

起動

% brew services start postgresql


ログイン

% psql postgres 

上記はmacのユーザ名でログインしています。
何かと不便なのでpostgresのロールを作成します。

postgres=# create user postgres SUPERUSER;

QUIツール

mac でおすすめの GUI ツールはこちら

Postico
https://eggerapps.at/postico

Host 127.0.0.1
User postgres
password なし

とかで繋げます。

他のdbの比較

MySQL と PostgreSQL の違いを知る – 2018年7月14日
https://www.superbusinessman.biz/mysql-vs-postgresql

PostgreSQLとMySQL データベース専門家が8つの視点で徹底比較! – 2017-9-5
https://eh-career.com/engineerhub/entry/2017/09/05/110000

「PostgreSQL」がスタートアップ企業に選ばれる理由 – 2015-6-1
https://japan.zdnet.com/article/35065109

SQLの観点から「Oracle Database」「PostgreSQL」「MySQL」の特徴を整理 – 2014.10.06
https://www.ashisuto.co.jp/tech-note/article/20141006_db.html

3種類のデータベースを徹底解説!(PostgreSQL、MySQL、SQLite) – 2019.10.2
https://bigdata-tools.com/sql-db

PostgreSQLとは?MySQL・Oracleとの違いを解説 – 2021.09.02
https://and-engineer.com/articles/YRg9zBAAACEA4e1T

MySQLユーザーがPostgreSQLを使う事になった時の比較まとめ – 2018年10月9日
https://qiita.com/motsat/items/bb72af915c7bf12559f3

主なRDB(Oracle, MySQL, PostgreSQL)の機能比較 – 2019年10月13日
https://qiita.com/kamihork/items/deeaf449254e3845311d

PostgreSQL vs MySQL: その違いとは – 2020.10.8
https://www.xplenty.com/jp/blog/postgresql-vs-mysql-which-one-is-better-for-your-use-case-ja

コメント

タイトルとURLをコピーしました