Mac 下安装PostgreSQL经验

使用homebrew终端软件管理器去安装PostgreSQL

如果没有安装brew命令执行以下命令

复制代码
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

沙果开源物联网系统 SagooIoT | SagooIoT

1.使用命令安装postgreSQL

复制代码
brew install postgresql

安装完成后显示:

校验一下postgreSQL 版本号

复制代码
brew list

起动postgreSQL

复制代码
brew services start postgresql


brew services list

将得到postgresql status -> srarted

此时 postgreSQL就安装完毕,使用客户端工具免密登录

初始化:

initdb /usr/local/postgresql -E utf8

创建postgres 用户角色

复制代码
CREATE ROLE postgres WITH LOGIN SUPERUSER;

完成后登录postgresql

复制代码
psql -U postgres

#退出
quit

创建用户 并设置密码

复制代码
psql -U postgres ;

ALTER USER postgres WITH PASSWORD 'postgres';

PostgreSQL 目前在学习的IOT物联网平台 沙果开源物联网系统 SagooIoT | SagooIoT 项目中使用到

沙果开源物联网系统 SagooIoT | SagooIoT

相关推荐
伏游10 小时前
【BUG】生产环境死锁问题定位排查解决全过程
服务器·数据库·spring boot·后端·postgresql·bug
zhangjin122218 小时前
kettle插件-postgresql插件
大数据·postgresql·etl·kettle cdc·kettle插件·kettle实时数据同步
豆芽脚脚2 天前
合并相同 patient_id 的 JSON 数据为数组
postgresql·json
cherry52304 天前
【PostgreSQL】【第4章】PostgreSQL的事务
数据库·postgresql
库海无涯5 天前
如何把数据从SQLite迁移到PostgreSQL
数据库·postgresql·sqlite
cherry52305 天前
【PostgreSQL】【第3章】PostgreSQL的对象操作
数据库·postgresql
java_heartLake5 天前
PostgreSQL15深度解析(从15.0-15.12)
数据库·postgresql
不剪发的Tony老师6 天前
IvorySQL:兼容Oracle数据库的开源PostgreSQL
数据库·postgresql·oracle
博睿谷IT99_7 天前
数据库DBA认证,选哪个认证合适?
数据库·mysql·postgresql·dba·oracle ocp
gallonyin7 天前
postgresql 重置对应表序列最大值
数据库·postgresql