Tôi vừa cài đặt lại postgres qua brew install postgres
Tôi đã chạy initdb /usr/local/var/postgres -E utf8
nhưng đã nhận được điều này:
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".
Vì vậy, tôi rm -rf
thư mục postgres và chạy lại nó:
initdb /usr/local/var/postgres -E utf8
Nó nói mọi thứ đều ổn:
Success. You can now start the database server using:
postgres -D /usr/local/var/postgres
Vì vậy, tôi đã chạy lệnh đó và nhận được:
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"?
Bây giờ khi tôi nhìn vào Trình theo dõi hoạt động của mình, tôi có thể thấy 6 trường hợp bị hoãn.
Làm thế nào để tôi sửa lỗi này?
postgres
với một postmaster và năm phụ trợ tiện ích. PostgreSQL là một kiến trúc đa quy trình.