我安装Cygwin
了 Perl 并Postgresql
启用了软件包。
然后输入:
/usr/bin/cygserver-config (This will install the service)
然后输入:
net start cygserver(This starts the service)
接下来我需要在 Cygwin 中启用 Postgresql,所以我尝试了下面提到的命令:
cygrunsrv -S cygserver
initdb -D /usr/share/postgresql/data
pg_ctl start -D /usr/share/postgresql/data -l /var/log/postgresql.log
createdb
psql
我收到一个错误:
$ initdb -D /usr/share/postgresql/data
-bash: initdb: command not found
$ pg_ctl start -D /usr/share/postgresql/data -l /var/log/postgresql.log
-bash: pg_ctl: command not found
有人可以告诉我如何正确处理它。