赞
踩
地址:https://www.postgresql.org/download/
链接:https://pan.baidu.com/s/1u3ZcgWb6Woh_0n0ZV2PG9A?pwd=Coke
提取码:Coke
1. 可以先创建两个文件夹 分别存储安装目录和数据
2. 直接双击运行即可
3.next
4. 选择安装目录,然后next
5. 选择组件,默认全选,然后next
6. 选择数据存放路径,然后next
7. 为数据库超级用户postgres设置密码,然后next
8. 设置端口,默认即可,然后next
9. 选择语言环境,默认即可,然后next
10. 安装以上设置,然后next
- 安装
12. 安装完成要勾选启动堆栈生成器,点finish
13. 弹出堆栈生成器安装界面,选择之前安装的软件(电脑必须连网),点击next
14. 弹出安装应用程序界面,选择安装语言包,点击next
15. 设置安装路径,然后下一步
16. 点击下一下(不勾选,跳过安装)
17. 弹出安装语言选项,点击ok
18. 点击next
19. 安装next
1. 使用Navicat
2. 使用idea
1. 官网: https://www.postgresql.org/download/
1. 安装指定版本的 PostgreSQL
sudo apt install postgresql-14
1. 使用 sudo -u postgres psql 登录数据库
2. 修改密码: alter user postgres with password ‘123456’;
3. \q 退出 psql
使用新密码进行登录了 psql -U postgres -d postgres -h 127.0.0.1 -p 5432
命令:
sudo vim /etc/postgresql/14/main/postgresql.conf
将
#listen_addresses = 'localhost'
的注释去掉并改为listen_addresses = '*'
修改文件权限: sudo chmod -R 777 *
命令:
sudo vim /etc/postgresql/14/main/pg_hba.conf
在如下位置添加一行,表示允许任意地址通过密码进行远程访问
sudo service postgresql restart
1. 查看系统架构
uname -m
2. 官网: https://www.postgresql.org/download/
# 安装存储库 RPM:
yum install -y https://download.postgresql.org/pub/repos/yum/reporrpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 安装 PostgreSQL
yum install -y postgresql14-server
# 可选择初始化数据库并启用自动启动:
/usr/pgsql-14/bin/postgresql-14-setup initdb
systemctl enable postgresql-14
systemctl start postgresql-14
1. 安装存储库 RPM
yum install -y https://download.postgresql.org/pub/repos/yum/reporrpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
2. 安装 PostgreSQL
yum install -y postgresql14-server
3.可选择初始化数据库并启用自动启动
/usr/pgsql-14/bin/postgresql-14-setup initdb
systemctl enable postgresql-14
systemctl start postgresql-14
1. 切换到postgres用户
su - postgres
2. 输入 psql
3.修改postgres超级用户密码
alter user postgres with password '新密码';
4. 使用exit退出
开启远程访问,将#listen_addresses = 'localhost' 修改为 listen_addresses = '*'
vim /var/lib/pgsql/14/data/postgresql.conf
增加一行 host all all 0.0.0.1/0 scram-sha-256
systemctl restart postgresql-14
psql -U postgres -h 127.0.0.1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。