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

相关推荐
余衫马1 小时前
CentOS7 离线安装 Postgresql 指南
数据库·postgresql
隔壁老王15610 小时前
postgresql实时同步数据表mysql
数据库·mysql·postgresql
孤傲小二~阿沐10 小时前
PostgreSQL的学习心得和知识总结(一百六十九)|深入理解PostgreSQL数据库之 Group By 键值消除 的使用和实现
数据库·postgresql
南棱笑笑生15 小时前
20250220找回Ubuntu22.04中丢失的文件管理器
数据库·postgresql
文牧之1 天前
PostgreSQL有undo表空间吗?
运维·数据库·postgresql
@Ycoder2 天前
Oracle 迁移到 PostgreSQL
数据库·postgresql·oracle
来一杯龙舌兰2 天前
【Postgresql】Windows 部署 Postgresql 数据库 (图文教程)
数据库·windows·postgresql
lsw1990lsw3 天前
ubuntu在线安装PostgreSQL(pgsql)
linux·ubuntu·postgresql
leegong231114 天前
PostgreSQL认证指南
数据库·postgresql
AI航海家(Ethan)5 天前
Django中实现简单易用的分页工具
数据库·后端·python·postgresql·django