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

相关推荐
IvorySQL3 小时前
PostgreSQL 日报| PostgreSQL 19 默认 WAL 压缩算法(8 月 8 日)
数据库·postgresql·区块链
切糕师学AI4 小时前
从压缩到查询:PostgreSQL中JSON数据的存储与处理实践
数据库·postgresql·json
瀚高PG实验室10 小时前
几种因网络波动导致应用与数据库操作异常的现象
运维·网络·数据库·postgresql·瀚高数据库
PGCCC2 天前
Ubuntu 安装 PostgreSQL 16 完整教程(2026):从仓库配置到远程连接
linux·ubuntu·postgresql
jnrjian3 天前
postgres database 更换用户
数据库·postgresql
李昊哲小课3 天前
Ubuntu24.04 PostgreSQL 18 完整安装与配置教程
ubuntu·postgresql
IvorySQL3 天前
PostgreSQL 日报|复制槽泄漏修复(8 月 6 日)
数据库·postgresql
喜欢的名字被抢了3 天前
FastAPI 接入异步 PostgreSQL 完成任务 CRUD 与数据库迁移
数据库·postgresql·fastapi
qq21084629533 天前
PostgreSQL、SQLite、Redis、TDengine
redis·postgresql·sqlite
PC2005-cloud3 天前
PgVector从入门到实战:用PostgreSQL做向量检索,附SpringBoot+MyBatisPlus整合
数据库·spring boot·postgresql