मैं बस के माध्यम से postgres पुनर्स्थापित brew install postgres
मैं भागा initdb /usr/local/var/postgres -E utf8
लेकिन यह मिला:
The files belonging to this database system will be owned by user "atal421".
This user must also own the server process.
The database cluster will be initialized with locale "en_US.UTF-8".
The default text search configuration will be set to "english".
initdb: directory "/usr/local/var/postgres" exists but is not empty
If you want to create a new database system, either remove or empty
the directory "/usr/local/var/postgres" or run initdb
with an argument other than "/usr/local/var/postgres".
इसलिए, मैंने rm -rf
फ़ोल्डर को फिर से पोस्ट किया और इसे फिर से चलाया:
initdb /usr/local/var/postgres -E utf8
यह कहा कि सब कुछ ठीक था:
Success. You can now start the database server using:
postgres -D /usr/local/var/postgres
इसलिए, मैंने उस कमांड को चलाया और प्राप्त किया:
postgres -D /usr/local/var/postgres
FATAL: lock file "postmaster.pid" already exists
HINT: Is another postmaster (PID 13731) running in data directory "/usr/local/var/postgres"?
अब जब मैं अपने एक्टिविटी मॉनिटर को देखता हूं तो मैं पोस्टग्रेजेशन के 6 उदाहरण देख सकता हूं।
मैं यह कैसे तय करुं?
postgres
। PostgreSQL एक बहु-प्रक्रिया वास्तुकला है।