質問編集履歴
2
コードを改良した際に出たエラーを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -63,3 +63,39 @@
|
|
63
63
|
教えていただけないでしょうか。
|
64
64
|
|
65
65
|
参考にしているサイトは以下の通りです。[リンク内容](https://hassiweb-programming.blogspot.com/2018/05/postgresql-control-by-python.html)
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
その後のコードを改良してでたエラー
|
70
|
+
|
71
|
+
```ここに言語を入力
|
72
|
+
|
73
|
+
OperationalError Traceback (most recent call last)
|
74
|
+
|
75
|
+
<ipython-input-8-61543ac52e8b> in <module>()
|
76
|
+
|
77
|
+
----> 1 conn = psycopg2.connect(host='000', dbname='000', user='000', password='crRirr0322', port=5432)
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
/usr/local/lib/python3.6/dist-packages/psycopg2/__init__.py in connect(dsn, connection_factory, cursor_factory, **kwargs)
|
82
|
+
|
83
|
+
128
|
84
|
+
|
85
|
+
129 dsn = _ext.make_dsn(dsn, **kwargs)
|
86
|
+
|
87
|
+
--> 130 conn = _connect(dsn, connection_factory=connection_factory, **kwasync)
|
88
|
+
|
89
|
+
131 if cursor_factory is not None:
|
90
|
+
|
91
|
+
132 conn.cursor_factory = cursor_factory
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
OperationalError: could not connect to server: Connection timed out
|
96
|
+
|
97
|
+
Is the server running on host "000" and accepting
|
98
|
+
|
99
|
+
TCP/IP connections on port 5432?
|
100
|
+
|
101
|
+
```
|
1
ユーザー名の検索について
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,9 +48,13 @@
|
|
48
48
|
|
49
49
|
postgres | 10 | t | t | t | t | ******** | |
|
50
50
|
|
51
|
-
|
51
|
+
```
|
52
52
|
|
53
|
-
|
53
|
+
ネットで見たユーザー名を検索した場合の情報
|
54
|
+
|
55
|
+
![イメージ説明](33aa464cd1b4240c11a53f4c1beaf682.png)
|
56
|
+
|
57
|
+
|
54
58
|
|
55
59
|
しかし、パスワード等は変更の方法があってもユーザー名のみ調べても見つけられません。
|
56
60
|
|