最終更新:
initdb
コマンドを実行するのを忘れていました。
</最終更新>
このコマンドを実行する
ps auxwww | grep postgres
postgresが実行されていないことがわかります
> ps auxwww | grep postgres
remcat 1789 0.0 0.0 2434892 480 s000 R+ 11:28PM 0:00.00 grep postgres
これは問題を提起します:どのようにしてpostgresqlサーバーを起動しますか
更新:
>pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
server starting
sh: /usr/local/var/postgres/server.log: No such file or directory
アップデート2:
タッチは成功しなかったので、代わりにこれを行いました:
> mkdir /usr/local/var/postgres
> vi /usr/local/var/postgres/server.log
> ls /usr/local/var/postgres/
server.log
しかし、railsサーバーを起動しようとすると、まだこれが表示されます。
Is the server running on host "localhost" and accepting
TCP/IP connections on port 5432?
更新3:
> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running
アップデート4:
pg_hba.conf(pg_hba.conf.sampleのみ)がないことがわかりましたので、サンプルを変更して名前を変更しました(.sampleを削除するため)。内容は次のとおりです。
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
しかし、私はこれを理解していません:
> pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
server starting
> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running
また:
sudo find / -name postgresql.conf
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
アップデート5:
sudo pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
Password:
pg_ctl: cannot be run as root
Please log in (using, e.g., "su") as the (unprivileged) user that will own the server process.
アップデート6:
これは奇妙に見えます:
> egrep 'listen|port' /usr/local/var/postgres/postgresql.conf
egrep: /usr/local/var/postgres/postgresql.conf: No such file or directory
しかし、私はこれをしました:
>sudo find / -name "*postgresql.conf*"
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
/usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample
/usr/share/postgresql/postgresql.conf.sample
だから私はこれをしました:
egrep 'listen|port' /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample
#listen_addresses = 'localhost' # what IP address(es) to listen on;
#port = 5432 # (change requires restart)
# supported by the operating system:
# %r = remote host and port
だから私はこれを試しました:
> cp /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf.sample /usr/local/Cellar/postgresql/9.0.4/share/postgresql/postgresql.conf
> cp /usr/share/postgresql/postgresql.conf.sample /usr/share/postgresql/postgresql.conf
それでも同じ「サーバーは稼働していますか?」メッセージ。
sudo
、すなわちsudo pg_ctl...