postgresql安装教程 mac m1
时间: 2024-11-05 07:10:33 浏览: 5
Mac OS上安装PostgreSQL的教程
在Mac M1芯片上安装PostgreSQL,可以按照以下步骤操作:
1. **Homebrew** 安装:首先确保已安装Homebrew(包管理器),如果没有,请打开终端并运行:
```
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/main/install.sh)"
```
2. **安装PostgreSQL**: 使用Homebrew添加PostgreSQL官方仓库,然后安装它:
```
brew tap homebrew/services
brew install postgresql
```
3. **启动服务**:首次安装完成后,PostgreSQL会自动创建系统启动代理,你可以通过`brew services start postgresql`命令启动服务。
4. **配置**:
- 配置环境变量:
```bash
export PATH="/usr/local/opt/postgresql/bin:$PATH"
eval "$(pg_config --shell-path)"
```
- 创建用户和数据库:
```bash
sudo -u _postgres createuser -s your_username
createdb -O your_username your_database_name
```
5. **验证安装**:登录PostgreSQL shell:
```
psql -U your_username -d your_database_name
```
6. **启动后台服务**:如果需要让PostgreSQL在系统启动时自动运行,可以用下面的命令设置开机启动:
```bash
brew services enable postgresql
```
阅读全文