安裝命令: 我的終端是zsh,所以添加環境變數到 之後運行 一直報錯如下: 百度以及 Stack Overflow 上試了很多方法,最終依靠重裝解決了問題,重裝步驟如下: 啟動資料庫: 之後的一些基本操作 創建資料庫: 進入資料庫: 創建用戶: 修改密碼: 查看用戶列表: 查看資料庫列表: 切換數據 ...
安裝命令:
brew install postgresql
我的終端是zsh,所以添加環境變數到
~/.zshrc
vim ~/.zshrc
export PATH=$PATH:/usr/local/Cellar/postgresql/11.4/bin
source ~/.zshrc
之後運行
psql
一直報錯如下:
psql: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/tmp/.s.PGSQL.5432"?
// 查看錯誤日誌:cat /usr/local/var/postgres/server.log
百度以及Stack Overflow上試了很多方法,最終依靠重裝解決了問題,重裝步驟如下:
brew uninstall postgresql
rm -rf /usr/local/var/postgres
gem uninstall pg
brew install postgres
啟動資料庫:
brew services start postgresql
之後的一些基本操作
創建資料庫:
createdb testDB
進入資料庫:
psql testDB
創建用戶:
create user 用戶名 with password '密碼';
修改密碼:
alter user 用戶名 with password '密碼';
查看用戶列表:
\du
查看資料庫列表:
\l
切換資料庫:
\c 資料庫名