「[卜算子・大数的](https://github.com/wangxiaoleiAI/big-data)」は、オープンソースで体系的なビッグデータ学習チュートリアルです。 -毎週日曜日に更新
このセクションの主な内容:
サーバーを作成するための詳細な手順については、第2章Linuxを参照してください。主な手順は次のとおりです。
sudo vim /etc/apt/sources.list.d/pgdg.list
deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main
< div class="se-preview-section-delimiter"></div>
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt update
sudo apt install postgresql-10
Postgresqlにログインします
sudo -u postgres psql postgres
パスワードを変更する
ALTER ROLE postgres PASSWORD 'wxl1234';
新しいユーザー、新しいデータベースを作成する
ALTER ROLE postgres PASSWORD 'wxl1234';
新しいユーザー、新しいデータベースを作成する
CREATE ROLE busuanzi WITH PASSWORD 'wxl123' LOGIN ;
CREATE DATABASE busuanzidb OWNER 'busuanzi';
脱落
postgresql.confを変更します
postgresql.confを変更します
sudo vim /etc/postgresql/10/main/postgresql.conf
改訂内容は以下の通りです
listen_addresses ='*'
pg_hba.confを変更します
sudo vim /etc/postgresql/10/main/pg_hba.conf
改訂内容は以下の通りです
local all postgres md5
# TYPE DATABASE USER ADDRESS METHOD
# " local" is for Unix domain socket connections only
local all all md5
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
host all all ::1/128 md5
host all all 192.168.56.0/0 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local replication all peer
host replication all 127.0.0.1/32 md5
host replication all ::1/128 md5
postgresqlサービスを再起動します
sudo service postgresql restart
Recommended Posts