最近、オフィスシステムとしてUbuntuに切り替えたため、すべてのソフトウェアのインストールを繰り返す必要があります。
公式文書:[https://www.postgresql.org/download/linux/ubuntu/](https://www.postgresql.org/download/linux/ubuntu/)
システムバージョンを表示
~ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 18.04.2 LTS
Release:18.04
Codename: bionic
私のシステムはバイオニックですが、他にもxenial(16)、trusty(14)があります。
リソースソースを作成する
vim /etc/apt/sources.list.d/pgdg.list
deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main
インポートキー
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
以下のソフトウェアをインストールできます
name | desc |
---|---|
postgresql-client-10 | client libraries and client binaries |
postgresql-10 | core database server |
postgresql-contrib-9.x | additional supplied modules (part of the postgresql-xx package in version 10 and later) |
libpq-dev | libraries and headers for C language frontend development |
postgresql-server-dev-10 | libraries and headers for C language backend development |
pgadmin4 | pgAdmin 4 graphical administration utility |
インストール
sudo apt-get install postgresql-10 pgadmin4
インストールの開始後、パスワードを変更できます。
sudo su postgres
ALTER USER postgres WITH PASSWORD '新しいパスワード';
インストールされているディレクトリ:/ var / lib / postgresql / 10
次に、他の構成はcentos7に似ています:[https://www.cnblogs.com/woshimrf/p/centos-install-postgresql.html](https://www.cnblogs.com/woshimrf/p/centos-install-postgresql.html)
ナビゲートはUbuntuにインストールするのが難しいようです。公式のpgadmin4を使用してください
sudo find /-name pgAdmin4
## 起動
pgAdmin4
Recommended Posts