pg数据库安装问题
发布网友
发布时间:2022-04-19 18:23
我来回答
共3个回答
懂视网
时间:2022-04-08 02:22
Mac下安装 postgrep。使用brew包管理工具可以方便的安装
brew 就是 Homebrew 安装方法
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Mac OS X已经自带Ruby
安装完 brew后。用brew安装Postgresql
brew install postgrepsql
安装完毕看到postgresql软件被安装到 /usr/local/Cellar/postgrepsql/9.4.3/ 并且建立了一个链接目录 /usr/local/opt/postgresql
安装最后自动初始化了一个数据库路径为 /usr/local/val/postgres
启动Postgresql
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
停止Postgresql
pg_ctl -D /usr/local/var/postgres stop -s -m fast
新建一个数据库用户
createuser weixinadmin -P
为这个用户新建一个数据库
createdb weixindb -O weixinadmin -E UTF8 -e
用这个用户访问数据库
psql -U weixinadmin -d weixndb -h 127.0.0.1
Mac下通过brew安装postgresql
标签:
热心网友
时间:2022-04-07 23:30
链接:https://blog.csdn.net/li_yi_kun?t=1
建议用Homebrew安装postgreSQL
先安装Homebrew ,但是Homebrew依赖于Xcode Command Line Tools,所以需先打开终端执行:
xcode-select --install
在终端中执行安装Homebrew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
检查是否已安装成功:
$ brew -v
Homebrew 1.6.1
Homebrew/homebrew-core (git revision 0aeb7; last commit 2018-04-12)
homebrew安装postgreSQL:
brew install postgresql
安装完postgresql之后需要初始化数据库:
initdb /usr/local/var/postgres -E utf8
如果你不初始化,那么db的路径就是上面的/usr/local/var/postgres(在MacOS 10.11上),数据库编码类型就是utf8.
设置开机启动postgresql服务:
ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
第一句将postgresql的配置plist文件做软连接至系统的对应路径下,第二句加载其中的一个plist文件.有可能你的postgresql不是通过homebrew安装的,你的plist文件名会略有不同,你只需要自行到/usr/local/opt/postgresql/中找到正确的文件名就可以了.
下面是启动和停止postgresql服务的指令:
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
pg_ctl -D /usr/local/var/postgres追问pc的啦
热心网友
时间:2022-04-08 00:48
你去下载一个游戏环境修复工具,修复一下你电脑上的vc运行库然后再安装。