长话短说我的数据库没有正确关闭,我正在努力让它重新启动并运行
我跑了
sudo find / -name postmaster.pid
找到该文件。 但是当我跑步时
sudo rm /Users/cward/Library/Application Support/Postgres/var-10/postmaster.pid
我得到以下
rm: /Users/cward/Library/Application: No such file or directory
rm: Support/Postgres/var-10/postmaster.pid: No such file or directory
答案 0 :(得分:1)
您的文件夹名称包含空格。你应该引用这样的完整路径:
sudo rm "/Users/cward/Library/Application Support/Postgres/var-10/postmaster.pid"