質問編集履歴
1
やったこと追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -60,4 +60,24 @@
|
|
60
60
|
```
|
61
61
|
|
62
62
|
初心者でかなりハマっています。
|
63
|
-
ご教授よろしくお願いします。
|
63
|
+
ご教授よろしくお願いします。
|
64
|
+
|
65
|
+
### 追記
|
66
|
+
```
|
67
|
+
ln: /usr/local/bin/clusterdb: No such file or directory
|
68
|
+
ln: /usr/local/bin/createdb: No such file or directory
|
69
|
+
ln: /usr/local/bin/createuser: No such file or directory
|
70
|
+
・・・
|
71
|
+
```
|
72
|
+
上記のエラーはbrew pruneで解決しましたが、起動時にNo such file or directoryが出てしまうエラーは治りません。
|
73
|
+
|
74
|
+
|
75
|
+
brew services listでチェックすると、PostgreSQLのステータスのstartedが赤く表示されるので、
|
76
|
+
```
|
77
|
+
rm /usr/local/var/postgres/postmaster.pid
|
78
|
+
```
|
79
|
+
を実行したところ、
|
80
|
+
```
|
81
|
+
rm: /usr/local/var/postgres/postmaster.pid: No such file or directory
|
82
|
+
```
|
83
|
+
と言われてしまいます。
|