我按照以下步骤卸载了 Postgres这个问题。
现在当我输入时sudo service postgresql status
,它会给出以下结果
postgresql.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
Jan 15 12:02:37 induP systemd[1]: Starting PostgreSQL RDBMS...
Jan 15 12:02:37 induP systemd[1]: Started PostgreSQL RDBMS.
Jan 15 16:58:50 induP systemd[1]: Stopped PostgreSQL RDBMS.
Jan 15 16:58:57 induP systemd[1]: Stopped PostgreSQL RDBMS.
问题是什么?
答案1
您可能在删除它之前没有停止进度。
使用 查找该进程ps -ef | grep postgres
以确认它仍在运行。然后使用kill -9 {process_id}
或将其终止pkill -9 postgres
。