質問編集履歴
2
エラー文などを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -61,3 +61,91 @@
|
|
61
61
|
https://designsupply-web.com/developmentlab/4485/
|
62
62
|
|
63
63
|
https://www.t3a.jp/blog/infrastructure/invalid-tlssni01/
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
### 追記事項
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
**1.certbot --version を叩くと、以下のエラーが出ます。**
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
An unexpected error occurred:
|
80
|
+
|
81
|
+
AttributeError: 'module' object has no attribute 'TLSSNI01'
|
82
|
+
|
83
|
+
Please see the logfile '/tmp/tmpL37e0G/log' for more details.
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
**2.yum list installed|grep certbot の結果**
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
certbot.noarch 1.0.0-1.el7 @epel
|
92
|
+
|
93
|
+
python2-certbot.noarch 1.0.0-1.el7 @epel
|
94
|
+
|
95
|
+
python2-certbot-apache.noarch 0.39.0-1.el7 @epel
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
**3.
|
100
|
+
|
101
|
+
/tmp/tmpXXXX(毎回英数字が変わる)/log の中身**
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
2020-02-04 16:39:34,229:DEBUG:certbot._internal.log:Exiting abnormally:
|
106
|
+
|
107
|
+
Traceback (most recent call last):
|
108
|
+
|
109
|
+
File "/bin/certbot", line 9, in <module>
|
110
|
+
|
111
|
+
load_entry_point('certbot==1.0.0', 'console_scripts', 'certbot')()
|
112
|
+
|
113
|
+
File "/usr/lib/python2.7/site-packages/certbot/main.py", line 14, in main
|
114
|
+
|
115
|
+
return internal_main.main(cli_args)
|
116
|
+
|
117
|
+
File "/usr/lib/python2.7/site-packages/certbot/_internal/main.py", line 1320, in main
|
118
|
+
|
119
|
+
plugins = plugins_disco.PluginsRegistry.find_all()
|
120
|
+
|
121
|
+
File "/usr/lib/python2.7/site-packages/certbot/_internal/plugins/disco.py", line 208, in find_all
|
122
|
+
|
123
|
+
plugin_ep = PluginEntryPoint(entry_point)
|
124
|
+
|
125
|
+
File "/usr/lib/python2.7/site-packages/certbot/_internal/plugins/disco.py", line 50, in __init__
|
126
|
+
|
127
|
+
self.plugin_cls = entry_point.load()
|
128
|
+
|
129
|
+
File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 2260, in load
|
130
|
+
|
131
|
+
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
|
132
|
+
|
133
|
+
File "/usr/lib/python2.7/site-packages/certbot_apache/entrypoint.py", line 8, in <module>
|
134
|
+
|
135
|
+
from certbot_apache import configurator
|
136
|
+
|
137
|
+
File "/usr/lib/python2.7/site-packages/certbot_apache/configurator.py", line 35, in <module>
|
138
|
+
|
139
|
+
from certbot_apache import http_01
|
140
|
+
|
141
|
+
File "/usr/lib/python2.7/site-packages/certbot_apache/http_01.py", line 17, in <module>
|
142
|
+
|
143
|
+
class ApacheHttp01(common.TLSSNI01):
|
144
|
+
|
145
|
+
File "/usr/lib/python2.7/site-packages/certbot/plugins/common.py", line 445, in __getattr__
|
146
|
+
|
147
|
+
return getattr(self._module, attr)
|
148
|
+
|
149
|
+
AttributeError: 'module' object has no attribute 'TLSSNI01'
|
150
|
+
|
151
|
+
2020-02-04 16:39:34,229:ERROR:certbot._internal.log:An unexpected error occurred:
|
1
OSを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
さくらのVPSで構築したサーバー内にあるサイトのSSL証明書有効日が近いので更新しようとしたところ、以下のようなエラーが出てしまいました。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
▼OS
|
6
|
+
|
7
|
+
CentOS7
|
2
8
|
|
3
9
|
|
4
10
|
|