2020年4月17日金曜日

Raspberry Pi(Raspbian Buster)にPostgreSQL11をインストールしてtestデータベースとtestユーザを作成する

PostgreSQLは高機能なオープンソースのRDBです。

〇インストール方法
以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install postgresql-11

echo "listen_addresses='*'" | sudo tee -a /etc/postgresql/11/main/postgresql.conf

echo "host    all         all         127.0.0.1/32          password" | sudo tee -a /etc/postgresql/11/main/pg_hba.conf

echo "host    all         all         192.168.1.0/24          password" | sudo tee -a /etc/postgresql/11/main/pg_hba.conf

sudo systemctl restart postgresql.service

sudo su - postgres << EOF
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
"
psql -c "
create database test owner test encoding 'UTF8' lc_collate 'ja_JP.UTF-8' lc_ctype 'ja_JP.UTF-8' template 'template0';
"
EOF

○動作確認
psql -h 127.0.0.1 -U test -W test -c "
select version();
"

0 件のコメント:

コメントを投稿