安装PostgreSQL
1. 安装Postgresql
我参考了以下文章:
【MacOSX】安装Postgresql 14.4。
2.确认路径
在终端上执行以下命令来查找postgreSQL的安装位置
$ locate psql | grep /bin
然后,
WARNING: The locate database (/var/db/locate.database) does not exist.
To create the database, run the following command:
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
Please be aware that the database can take some time to generate; once
the database has been created, this message will no longer appear.
会显示此类消息。
简而言之,请创建一个数据库的消息。
请在终端中执行以下错误消息中提到的命令。
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist
当数据库创建完成后,执行之前的命令即可结束处理。
$ locate psql | grep /bin
/Library/PostgreSQL/15/bin/psql
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM/Contents
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM/Contents/Info.plist
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM/Contents/Resources
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM/Contents/Resources/DWARF
/Library/PostgreSQL/15/debug_symbols/bin/psql.dSYM/Contents/Resources/DWARF/psql
我已经确认了路径。
在Vim中配置路径
打开编辑器,使用”vim ~/.zshrc”命令。
进入编辑模式后,在下方添加以下内容。
export PATH=$PATH:"/Library/PostgreSQL/15/bin"
完成后,请使用psql –version命令确认版本,并显示如下结果。
$ psql --version
psql (PostgreSQL) 15.3
参考资料:
【MacOSX】安装Postgresql 14.4
设置Mac的psql命令路径
在Mac上安装postgreSQL并使用psql命令的方法
关于在rails6中更改数据库的讨论