質問編集履歴
2
マークダウンの修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,13 +16,13 @@
|
|
16
16
|
|
17
17
|
インストール方法
|
18
18
|
|
19
|
-
|
19
|
+
0. postgres公式ページからmac OS Xの最新版12.4をインストール (https://www.enterprisedb.com/postgresql-tutorial-resources-training?cid=47)
|
20
20
|
|
21
21
|
設定項目で[postgres]とパスワードを入力した。
|
22
22
|
|
23
|
-
|
23
|
+
1. ①の方法ではターミナルでpsqlと入力しても[command not found]で弾かれてしまうので、homebrewからbrew install postgresqlをインストール
|
24
24
|
|
25
|
-
|
25
|
+
2. [psql --version]で確認すると[psql (PostgreSQL) 12.4]と表示されるのでコマンドを受け入れるようになりました。
|
26
26
|
|
27
27
|
|
28
28
|
|
@@ -30,15 +30,19 @@
|
|
30
30
|
|
31
31
|
サイト(http://vdeep.net/mac-postgresql)に習ってデータベースの初期設定を試みるも、パスワードを聞かれ
|
32
32
|
|
33
|
-
・パソコンのローカルユーザー用のパスワード
|
34
33
|
|
35
|
-
・①で設定した[postgres]
|
36
34
|
|
35
|
+
- パソコンのローカルユーザー用のパスワード
|
36
|
+
|
37
|
+
- ①で設定した[postgres]
|
38
|
+
|
37
|
-
|
39
|
+
- 何も入力しない
|
38
40
|
|
39
41
|
上記3パターンを入力しても、以下のメッセージが表示されるという状況です。
|
40
42
|
|
43
|
+
|
44
|
+
|
41
|
-
```
|
45
|
+
```terminal
|
42
46
|
|
43
47
|
Password for user パソコンのローカルユーザー名: ********
|
44
48
|
|
@@ -56,15 +60,15 @@
|
|
56
60
|
|
57
61
|
実行したコマンドと結果は以下の通りです
|
58
62
|
|
59
|
-
|
63
|
+
0. initdb /usr/local/var/postgres -E utf8 ○
|
60
64
|
|
61
|
-
|
65
|
+
1. brew services start postgresql ○
|
62
66
|
|
63
|
-
|
67
|
+
2. psql ✕
|
64
68
|
|
65
|
-
|
69
|
+
3. createuser -s -P postgres ✕
|
66
70
|
|
67
|
-
|
71
|
+
4. createdb test_db ✕
|
68
72
|
|
69
73
|
|
70
74
|
|
1
エラーメッセージが表示される部分をより詳しく記述しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -40,11 +40,13 @@
|
|
40
40
|
|
41
41
|
```
|
42
42
|
|
43
|
+
Password for user パソコンのローカルユーザー名: ********
|
44
|
+
|
45
|
+
パスワード入力後、以下のエラーメッセージが表示される
|
46
|
+
|
43
47
|
psql: error: could not connect to server: FATAL: password authentication failed for user "パソコンのローカルユーザー名"
|
44
48
|
|
45
49
|
```
|
46
|
-
|
47
|
-
|
48
50
|
|
49
51
|
|
50
52
|
|