अंतिम अद्यतन:
मैं initdb
कमांड चलाना भूल गया था ।
</ अंतिम अद्यतन>
इस कमांड को चलाकर
ps auxwww | grep postgres
मैं देख रहा हूं कि पोस्टग्रेज नहीं चल रहे हैं
> ps auxwww | grep postgres
remcat 1789 0.0 0.0 2434892 480 s000 R+ 11:28PM 0:00.00 grep postgres
यह सवाल उठता है: मैं पोस्टग्रैक्स्ल सर्वर कैसे शुरू करूं?
अपडेट करें:
>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
लेकिन जब मैं रेल सर्वर शुरू करने की कोशिश करता हूं, तब भी मैं इसे देखता हूं:
Is the server running on host "localhost" and accepting
TCP/IP connections on port 5432?
अद्यतन ३:
> pg_ctl -D /usr/local/var/postgres status
pg_ctl: no server running
अद्यतन 4:
मैंने पाया कि WAS NO 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...