在Windows上安装PostgreSQL的步骤如下:
我在Windows环境下安装了PostgreSQL14.2,并记录下了安装步骤。
(1) 下载 PostgreSQL。
– 使用以下链接下载:https://www.enterprisedb.com/downloads/postgres-postgresql-downloads
– 下载 Windows x86-64 版本的 “14.2” 。
执行postgresql-14.2-2-windows-x64.exe进行安装。
选择服务器和命令行工具。(*注意:不需要pgAdmin4(GUI工具)和stackBuilder(相关工具))
设置密码为”xxx”。
将区域设置更改为”Japanese”。
确保服务”postgresql-x64-14″已启动。
(3) 在环境变量Path中添加以下内容:
C:\Program Files\PostgreSQL\14\bin
(4) 进行 PostgreSQL 的设置。
① 打开 C:\Program Files\PostgreSQL\14\data\postgresql.conf 文件并进行修改。
listen_addresses = '*'
↓
listen_addresses = 'localhost'
打开路径为C:\Program Files\PostgreSQL\14\data\pg_hba.conf的文件,并进行修改。
# IPv4 local connections:
host all all 127.0.0.1/32 scram-sha-256
↓
host all all 127.0.0.1/32 password
重新启动”postgresql-x64-14″服务。
(5) 尝试使用命令提示符(cmd)在命令行界面(CLI)中测试。
> psql -V
> psql -U postgres // CLIの開始
# create database seminar; // DBの作成
# \l // DB一覧の表示
# \c seminar // DBへの接続
# create table dummy (id int,name varchar(20));
# \dn
# insert into dummy values (10,'abc'),(20,'あいう');
# update dummy set name='ABC' where id=10;
# select * from dummy;
# \d // テーブル一覧
# \q // CLIの終了