CẬP NHẬT CUỐI CÙNG:
Tôi đã quên chạy initdb
lệnh.
</ CẬP NHẬT CUỐI CÙNG>
bằng cách chạy lệnh này
ps auxwww | grep postgres
Tôi thấy rằng postgres không chạy
> ps auxwww | grep postgres
remcat 1789 0.0 0.0 2434892 480 s000 R+ 11:28PM 0:00.00 grep postgres
Điều này đặt ra câu hỏi: Làm thế nào để tôi khởi động máy chủ postgresql?
cập nhật:
>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
cập nhật 2:
Cảm ứng không thành công nên tôi đã làm điều này thay vào đó:
> mkdir /usr/local/var/postgres
> vi /usr/local/var/postgres/server.log
> ls /usr/local/var/postgres/
server.log
Nhưng khi tôi cố gắng khởi động máy chủ rails, tôi vẫn thấy điều này:
Is the server running on host "localhost" and accepting
TCP/IP connections on port 5432?
cập nhật 3:
> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running
cập nhật 4:
Tôi thấy rằng KHÔNG CÓ pg_hba.conf (chỉ pg_hba.conf.sample) nên tôi đã sửa đổi mẫu và đổi tên nó (để loại bỏ .sample). Dưới đây là nội dung:
# IPv4 local connections:
host all all 127.0.0.1/32 trust
# IPv6 local connections:
host all all ::1/128 trust
nhưng tôi không hiểu điều này:
> 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
cũng thế:
sudo find / -name postgresql.conf
find: /dev/fd/3: Not a directory
find: /dev/fd/4: Not a directory
cập nhật 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.
cập nhật 6:
Điều này có vẻ kỳ lạ:
> egrep 'listen|port' /usr/local/var/postgres/postgresql.conf
egrep: /usr/local/var/postgres/postgresql.conf: No such file or directory
Mặc dù vậy, tôi đã làm điều này:
>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
vì vậy tôi đã làm điều này:
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
Vì vậy, tôi đã thử điều này:
> 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
vẫn nhận được cùng một "Máy chủ đang chạy?" thông điệp.
sudo
, tức làsudo pg_ctl...