質問編集履歴

14

文言の修正

2018/07/27 06:24

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,126 @@
18
18
 
19
19
 
20
20
 
21
+ 以前の質問:[外部ネットワークに接続できない状態でのWebサーバーインストールについて](https://teratail.com/questions/137373)
22
+
23
+
24
+
25
+ ①KVMで作成した仮想マシンAでnginxをyum downloadする(オンライン状態)
26
+
27
+
28
+
29
+ ```
30
+
31
+ # yumdownloader --resolve --destdir=/repo/packages_nginx/ nginx
32
+
33
+ ```
34
+
35
+
36
+
37
+ ② ①で取得したrpmファイルをWinSCPでwindows側に移動し、DVDに格納
38
+
39
+
40
+
41
+ ```
42
+
43
+ GeoIP-1.6.5-1.el6.x86_64.rpm
44
+
45
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
46
+
47
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
48
+
49
+ gd-2.0.35-11.el6.x86_64.rpm
50
+
51
+ geoipupdate-2.2.1-2.el6.x86_64.rpm
52
+
53
+ nginx-1.10.2-1.el6.x86_64.rpm
54
+
55
+ nginx-all-modules-1.10.2-1.el6.noarch.rpm
56
+
57
+ nginx-filesystem-1.10.2-1.el6.noarch.rpm
58
+
59
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
60
+
61
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
62
+
63
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
64
+
65
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
66
+
67
+ nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
68
+
69
+ nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
70
+
71
+ ```
72
+
73
+
74
+
75
+ ③DVDをマウントし、仮想マシンAでyum localinstallを実行(オフライン状態)
76
+
77
+
78
+
79
+ ```
80
+
81
+ # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
82
+
83
+ ```
84
+
85
+
86
+
87
+ **実現したいこと:**
88
+
89
+
90
+
91
+ ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、うまくインストールされません。
92
+
93
+
94
+
95
+ ### 発生している問題・エラーメッセージ
96
+
97
+
98
+
99
+ ```
100
+
101
+ (略)
102
+
103
+ --> 依存性解決を終了しました。
104
+
105
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
106
+
107
+ 要求: nginx-all-modules = 1.10.2-1.el6
108
+
109
+ 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
110
+
111
+ nginx-all-modules = 1.10.1-1.el6
112
+
113
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
114
+
115
+ 要求: nginx-filesystem = 1.10.2-1.el6
116
+
117
+ インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
118
+
119
+ nginx-filesystem = 1.10.1-1.el6
120
+
121
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
122
+
123
+ 要求: nginx-filesystem = 1.10.2-1.el6
124
+
125
+ 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
126
+
127
+ nginx-filesystem = 1.10.1-1.el6
128
+
129
+ 問題を回避するために --skip-broken を用いることができません
130
+
131
+ これらを試行できます: rpm -Va --nofiles --nodigest
132
+
133
+ ```
134
+
135
+
136
+
137
+ ### 試したこと
138
+
139
+
140
+
21
141
  **追記(over様):**
22
142
 
23
143
 
@@ -48,23 +168,27 @@
48
168
 
49
169
 
50
170
 
171
+ **追記(2018/07/27)**
172
+
173
+
174
+
51
- 以前の質問:[外部ネットワークに接続できない状態のWebサーバーインストールについて](https://teratail.com/questions/137373)
175
+ 参考:[インターネットと疎通がないマシンに yum RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
52
-
53
-
54
-
176
+
177
+
178
+
55
- ①KVMで作成た仮想マシンAでnginxをyum downloadする(オンライン状態)
179
+ 上記サイトを参考に
56
-
57
-
58
-
180
+
181
+
182
+
59
- ```
183
+ ```
60
-
184
+
61
- # yumdownloader --resolve --destdir=/repo/packages_nginx/ nginx
185
+ # yum install nginx --downloadonly --downloaddir=/repo
62
-
186
+
63
- ```
187
+ ```
64
-
65
-
66
-
188
+
189
+
190
+
67
- ② ①で取得rpmファイルをWinSCPwindows側に移動、DVDに格納
191
+ コマンドを実行ても、/repoに落ちるrpmファイルはまったく同じでした。
68
192
 
69
193
 
70
194
 
@@ -102,130 +226,6 @@
102
226
 
103
227
 
104
228
 
105
- ③DVDをマウントし、仮想マシンAでyum localinstallを実行(オフライン状態)
106
-
107
-
108
-
109
- ```
110
-
111
- # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
112
-
113
- ```
114
-
115
-
116
-
117
- **実現したいこと:**
118
-
119
-
120
-
121
- ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、うまくインストールされません。
122
-
123
-
124
-
125
- ### 発生している問題・エラーメッセージ
126
-
127
-
128
-
129
- ```
130
-
131
- (略)
132
-
133
- --> 依存性解決を終了しました。
134
-
135
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
136
-
137
- 要求: nginx-all-modules = 1.10.2-1.el6
138
-
139
- 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
140
-
141
- nginx-all-modules = 1.10.1-1.el6
142
-
143
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
144
-
145
- 要求: nginx-filesystem = 1.10.2-1.el6
146
-
147
- インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
148
-
149
- nginx-filesystem = 1.10.1-1.el6
150
-
151
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
152
-
153
- 要求: nginx-filesystem = 1.10.2-1.el6
154
-
155
- 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
156
-
157
- nginx-filesystem = 1.10.1-1.el6
158
-
159
- 問題を回避するために --skip-broken を用いることができません
160
-
161
- これらを試行できます: rpm -Va --nofiles --nodigest
162
-
163
- ```
164
-
165
-
166
-
167
- ### 試したこと
168
-
169
-
170
-
171
- **追記(2018/07/27)**
172
-
173
-
174
-
175
- 参考:[インターネットと疎通がないマシンに yum で RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
176
-
177
-
178
-
179
- 上記サイトを参考にし、
180
-
181
-
182
-
183
- ```
184
-
185
- # yum install nginx --downloadonly --downloaddir=/repo
186
-
187
- ```
188
-
189
-
190
-
191
- コマンドを実行しても、/repoに落ちるrpmファイルはまったく同じでした。
192
-
193
-
194
-
195
- ```
196
-
197
- GeoIP-1.6.5-1.el6.x86_64.rpm
198
-
199
- GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
200
-
201
- GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
202
-
203
- gd-2.0.35-11.el6.x86_64.rpm
204
-
205
- geoipupdate-2.2.1-2.el6.x86_64.rpm
206
-
207
- nginx-1.10.2-1.el6.x86_64.rpm
208
-
209
- nginx-all-modules-1.10.2-1.el6.noarch.rpm
210
-
211
- nginx-filesystem-1.10.2-1.el6.noarch.rpm
212
-
213
- nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
214
-
215
- nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
216
-
217
- nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
218
-
219
- nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
220
-
221
- nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
222
-
223
- nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
224
-
225
- ```
226
-
227
-
228
-
229
229
  ### 補足情報(FW/ツールのバージョンなど)
230
230
 
231
231
 

13

文言の改行

2018/07/27 06:24

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -32,11 +32,17 @@
32
32
 
33
33
  # yum localinstall /media/UDF\ Volume/*.rpm
34
34
 
35
- 読み込んだプラグイン:fastestmirror, refresh-packagekit, security ローカルパッケージ処理の設定をしています
35
+ 読み込んだプラグイン:fastestmirror, refresh-packagekit, security
36
+
36
-
37
+ ローカルパッケージ処理の設定をしています
38
+
37
- /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm を調べています: GeoIP-1.6.5-1.el6.x86_64 /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm をインストール済みとして設定しています
39
+ /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm を調べています: GeoIP-1.6.5-1.el6.x86_64
40
+
38
-
41
+ /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm をインストール済みとして設定しています
42
+
43
+ Loading mirror speeds from cached hostfile
44
+
39
- Loading mirror speeds from cached hostfile エラー: Cannot retrieve metalink for repository: epel. Please verify its path and try again
45
+ エラー: Cannot retrieve metalink for repository: epel. Please verify its path and try again
40
46
 
41
47
  ```
42
48
 

12

コマンド実行結果の追記

2018/07/27 06:23

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -28,6 +28,20 @@
28
28
 
29
29
 
30
30
 
31
+ ```
32
+
33
+ # yum localinstall /media/UDF\ Volume/*.rpm
34
+
35
+ 読み込んだプラグイン:fastestmirror, refresh-packagekit, security ローカルパッケージ処理の設定をしています
36
+
37
+ /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm を調べています: GeoIP-1.6.5-1.el6.x86_64 /media/UDF Volume/GeoIP-1.6.5-1.el6.x86_64.rpm をインストール済みとして設定しています
38
+
39
+ Loading mirror speeds from cached hostfile エラー: Cannot retrieve metalink for repository: epel. Please verify its path and try again
40
+
41
+ ```
42
+
43
+
44
+
31
45
  以前の質問:[外部ネットワークに接続できない状態でのWebサーバーインストールについて](https://teratail.com/questions/137373)
32
46
 
33
47
 

11

文言の修正

2018/07/27 06:21

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -28,31 +28,147 @@
28
28
 
29
29
 
30
30
 
31
+ 以前の質問:[外部ネットワークに接続できない状態でのWebサーバーインストールについて](https://teratail.com/questions/137373)
32
+
33
+
34
+
31
35
  ①KVMで作成した仮想マシンAでnginxをyum downloadする(オンライン状態)
32
36
 
37
+
38
+
39
+ ```
40
+
41
+ # yumdownloader --resolve --destdir=/repo/packages_nginx/ nginx
42
+
43
+ ```
44
+
45
+
46
+
33
- ②rpmファイルをWinSCPでwindows側に移動し、DVDに格納
47
+ ①で取得したrpmファイルをWinSCPでwindows側に移動し、DVDに格納
48
+
49
+
50
+
51
+ ```
52
+
53
+ GeoIP-1.6.5-1.el6.x86_64.rpm
54
+
55
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
56
+
57
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
58
+
59
+ gd-2.0.35-11.el6.x86_64.rpm
60
+
61
+ geoipupdate-2.2.1-2.el6.x86_64.rpm
62
+
63
+ nginx-1.10.2-1.el6.x86_64.rpm
64
+
65
+ nginx-all-modules-1.10.2-1.el6.noarch.rpm
66
+
67
+ nginx-filesystem-1.10.2-1.el6.noarch.rpm
68
+
69
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
70
+
71
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
72
+
73
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
74
+
75
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
76
+
77
+ nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
78
+
79
+ nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
80
+
81
+ ```
82
+
83
+
34
84
 
35
85
  ③DVDをマウントし、仮想マシンAでyum localinstallを実行(オフライン状態)
36
86
 
37
87
 
38
88
 
39
- 以前の質問:[外部ネットワークに接続できない状態でのWebサーバーインストールについて](https://teratail.com/questions/137373)
40
-
41
-
42
-
43
- ①yumdownloaderコマンドを実行しnginxのrpmファイルを取得
44
-
45
-
46
-
47
- ```
89
+ ```
48
-
90
+
49
- # yumdownloader --resolve --destdir=/repo/packages_nginx/ nginx
91
+ # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
50
-
92
+
51
- ```
93
+ ```
94
+
95
+
96
+
52
-
97
+ **実現したいこと:**
98
+
99
+
100
+
53
-
101
+ ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、うまくインストールされません。
54
-
102
+
103
+
104
+
55
- ①で取得たrpmファイルをdvdに移動
105
+ ### 発生ている問題・エラーメッセージ
106
+
107
+
108
+
109
+ ```
110
+
111
+ (略)
112
+
113
+ --> 依存性解決を終了しました。
114
+
115
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
116
+
117
+ 要求: nginx-all-modules = 1.10.2-1.el6
118
+
119
+ 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
120
+
121
+ nginx-all-modules = 1.10.1-1.el6
122
+
123
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
124
+
125
+ 要求: nginx-filesystem = 1.10.2-1.el6
126
+
127
+ インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
128
+
129
+ nginx-filesystem = 1.10.1-1.el6
130
+
131
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
132
+
133
+ 要求: nginx-filesystem = 1.10.2-1.el6
134
+
135
+ 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
136
+
137
+ nginx-filesystem = 1.10.1-1.el6
138
+
139
+ 問題を回避するために --skip-broken を用いることができません
140
+
141
+ これらを試行できます: rpm -Va --nofiles --nodigest
142
+
143
+ ```
144
+
145
+
146
+
147
+ ### 試したこと
148
+
149
+
150
+
151
+ **追記(2018/07/27)**
152
+
153
+
154
+
155
+ 参考:[インターネットと疎通がないマシンに yum で RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
156
+
157
+
158
+
159
+ 上記サイトを参考にし、
160
+
161
+
162
+
163
+ ```
164
+
165
+ # yum install nginx --downloadonly --downloaddir=/repo
166
+
167
+ ```
168
+
169
+
170
+
171
+ コマンドを実行しても、/repoに落ちるrpmファイルはまったく同じでした。
56
172
 
57
173
 
58
174
 
@@ -90,130 +206,6 @@
90
206
 
91
207
 
92
208
 
93
- ③dvdをマウントしパスを指定してyum localinstllを実行
94
-
95
-
96
-
97
- ```
98
-
99
- # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
100
-
101
- ```
102
-
103
-
104
-
105
- **実現したいこと:**
106
-
107
-
108
-
109
- ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、うまくインストールされません。
110
-
111
-
112
-
113
- ### 発生している問題・エラーメッセージ
114
-
115
-
116
-
117
- ```
118
-
119
- (略)
120
-
121
- --> 依存性解決を終了しました。
122
-
123
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
124
-
125
- 要求: nginx-all-modules = 1.10.2-1.el6
126
-
127
- 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
128
-
129
- nginx-all-modules = 1.10.1-1.el6
130
-
131
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
132
-
133
- 要求: nginx-filesystem = 1.10.2-1.el6
134
-
135
- インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
136
-
137
- nginx-filesystem = 1.10.1-1.el6
138
-
139
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
140
-
141
- 要求: nginx-filesystem = 1.10.2-1.el6
142
-
143
- 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
144
-
145
- nginx-filesystem = 1.10.1-1.el6
146
-
147
- 問題を回避するために --skip-broken を用いることができません
148
-
149
- これらを試行できます: rpm -Va --nofiles --nodigest
150
-
151
- ```
152
-
153
-
154
-
155
- ### 試したこと
156
-
157
-
158
-
159
- **追記(2018/07/27)**
160
-
161
-
162
-
163
- 参考:[インターネットと疎通がないマシンに yum で RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
164
-
165
-
166
-
167
- 上記サイトを参考にし、
168
-
169
-
170
-
171
- ```
172
-
173
- # yum install nginx --downloadonly --downloaddir=/repo
174
-
175
- ```
176
-
177
-
178
-
179
- コマンドを実行しても、/repoに落ちるrpmファイルはまったく同じでした。
180
-
181
-
182
-
183
- ```
184
-
185
- GeoIP-1.6.5-1.el6.x86_64.rpm
186
-
187
- GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
188
-
189
- GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
190
-
191
- gd-2.0.35-11.el6.x86_64.rpm
192
-
193
- geoipupdate-2.2.1-2.el6.x86_64.rpm
194
-
195
- nginx-1.10.2-1.el6.x86_64.rpm
196
-
197
- nginx-all-modules-1.10.2-1.el6.noarch.rpm
198
-
199
- nginx-filesystem-1.10.2-1.el6.noarch.rpm
200
-
201
- nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
202
-
203
- nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
204
-
205
- nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
206
-
207
- nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
208
-
209
- nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
210
-
211
- nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
212
-
213
- ```
214
-
215
-
216
-
217
209
  ### 補足情報(FW/ツールのバージョンなど)
218
210
 
219
211
 

10

文言の追記

2018/07/27 06:16

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -18,13 +18,21 @@
18
18
 
19
19
 
20
20
 
21
- **追記(over様)
21
+ **追記(over様):**
22
22
 
23
23
 
24
24
 
25
25
  本番環境はRHEL6.6らしいのですが、私に与えられている実験用の環境はKVM上のクローンでCentOS6.7です。
26
26
 
27
- そちらでarchコマンドを入力すると、x86_64でした。
27
+ そちらでarchコマンドを入力すると、x86_64でした。同環境でネットワークをオンオフしテストをしています。
28
+
29
+
30
+
31
+ ①KVMで作成した仮想マシンAでnginxをyum downloadする(オンライン状態)
32
+
33
+ ②rpmファイルをWinSCPでwindows側に移動し、DVDに格納
34
+
35
+ ③DVDをマウントし、仮想マシンAでyum localinstallを実行(オフライン状態)
28
36
 
29
37
 
30
38
 

9

文言の追記

2018/07/27 06:15

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -18,6 +18,16 @@
18
18
 
19
19
 
20
20
 
21
+ **追記(over様)
22
+
23
+
24
+
25
+ 本番環境はRHEL6.6らしいのですが、私に与えられている実験用の環境はKVM上のクローンでCentOS6.7です。
26
+
27
+ そちらでarchコマンドを入力すると、x86_64でした。
28
+
29
+
30
+
21
31
  以前の質問:[外部ネットワークに接続できない状態でのWebサーバーインストールについて](https://teratail.com/questions/137373)
22
32
 
23
33
 

8

エラーの内容の修正

2018/07/27 05:59

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -100,33 +100,35 @@
100
100
 
101
101
  (略)
102
102
 
103
- パッケージのダウンロードでエラー:
103
+ --> 依存性解決を終了しました。
104
-
105
- GeoIP-GeoLite-data-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
104
+
106
-
107
- geoipupdate-2.2.1-2.el6.x86_64: failure: Packages/g/geoipupdate-2.2.1-2.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
108
-
109
- nginx-filesystem-1.10.2-1.el6.noarch: failure: Packages/n/nginx-filesystem-1.10.2-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
110
-
111
- nginx-all-modules-1.10.2-1.el6.noarch: failure: Packages/n/nginx-all-modules-1.10.2-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
112
-
113
- nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
114
-
115
- GeoIP-1.6.5-1.el6.x86_64: failure: Packages/g/GeoIP-1.6.5-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
116
-
117
- nginx-mod-http-image-filter-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
118
-
119
- GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
120
-
121
- nginx-mod-http-geoip-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
122
-
123
- gd-2.0.35-11.el6.x86_64: failure: Packages/gd-2.0.35-11.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
124
-
125
- nginx-mod-http-perl-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
126
-
127
- nginx-mod-stream-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-stream-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
128
-
129
- nginx-mod-mail-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-mail-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
105
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
106
+
107
+ 要求: nginx-all-modules = 1.10.2-1.el6
108
+
109
+ 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
110
+
111
+ nginx-all-modules = 1.10.1-1.el6
112
+
113
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
114
+
115
+ 要求: nginx-filesystem = 1.10.2-1.el6
116
+
117
+ インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
118
+
119
+ nginx-filesystem = 1.10.1-1.el6
120
+
121
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
122
+
123
+ 要求: nginx-filesystem = 1.10.2-1.el6
124
+
125
+ 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
126
+
127
+ nginx-filesystem = 1.10.1-1.el6
128
+
129
+ 問題を回避するために --skip-broken を用いることができません
130
+
131
+ これらを試行できます: rpm -Va --nofiles --nodigest
130
132
 
131
133
  ```
132
134
 

7

補足情報の追記

2018/07/27 05:51

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -204,4 +204,14 @@
204
204
 
205
205
 
206
206
 
207
+ ```
208
+
209
+ # arch
210
+
211
+ x86_64
212
+
213
+ ```
214
+
215
+
216
+
207
217
  そもそも環境が違うから大丈夫なのかと思っています・・・

6

文言の修正

2018/07/27 05:47

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -100,7 +100,9 @@
100
100
 
101
101
  (略)
102
102
 
103
+ パッケージのダウンロードでエラー:
104
+
103
- GeoIP-GeoLite-data-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
105
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
104
106
 
105
107
  geoipupdate-2.2.1-2.el6.x86_64: failure: Packages/g/geoipupdate-2.2.1-2.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
106
108
 

5

文言の修正

2018/07/27 05:16

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -22,33 +22,63 @@
22
22
 
23
23
 
24
24
 
25
- DVDにnginx1.1.4といくつかのrpmファイルがあります。
25
+ yumdownloaderコマンドを実行しnginxのrpmファイルを取得
26
-
27
-
28
-
26
+
27
+
28
+
29
- ```
29
+ ```
30
-
31
- glibc-2.14.1-11.2.mga2.x86_64.rpm
30
+
32
-
33
- glibc-2.17-7.6.mga3.x86_64.rpm
34
-
35
- nginx-1.14.0-1.mga7.x86_64.rpm
36
-
37
- openssl-libs-1.1.0f-9.fc27.i686.rpm
38
-
39
- perl-base-5.26.2-9.mga7.x86_64.rpm
40
-
41
- perl-libs-5.26.2-406.fc27.i686.rpm
42
-
43
- rpm-helper-0.24.17-4.mga6.noarch.rpm
31
+ # yumdownloader --resolve --destdir=/repo/packages_nginx/ nginx
44
-
32
+
45
- ```
33
+ ```
46
-
34
+
35
+
36
+
47
- こちらに下記コマンドを実行まし
37
+ ①で取得したrpmファイルをdvdに移動
48
-
38
+
39
+
40
+
49
- ```
41
+ ```
42
+
50
-
43
+ GeoIP-1.6.5-1.el6.x86_64.rpm
44
+
45
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
46
+
47
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
48
+
49
+ gd-2.0.35-11.el6.x86_64.rpm
50
+
51
+ geoipupdate-2.2.1-2.el6.x86_64.rpm
52
+
53
+ nginx-1.10.2-1.el6.x86_64.rpm
54
+
55
+ nginx-all-modules-1.10.2-1.el6.noarch.rpm
56
+
57
+ nginx-filesystem-1.10.2-1.el6.noarch.rpm
58
+
59
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
60
+
61
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
62
+
63
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
64
+
65
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
66
+
67
+ nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
68
+
69
+ nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
70
+
71
+ ```
72
+
73
+
74
+
75
+ ③dvdをマウントしパスを指定してyum localinstllを実行
76
+
77
+
78
+
79
+ ```
80
+
51
- # yum localinstall /media/UDF\ Volume/nginx-1.14.0-1.mga7.x86_64.rpm
81
+ # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
52
82
 
53
83
  ```
54
84
 
@@ -58,7 +88,7 @@
58
88
 
59
89
 
60
90
 
61
- ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、どこから依存関係を解決していけばいいか、ずそこで躓いてい
91
+ ネットワークから切り離された(オフライン)状態の仮想マシンにnginxをインストールしたいです。以前の質問で教えていただいたyum localinstallコマンドを実行したのですが、くインストールされせん
62
92
 
63
93
 
64
94
 
@@ -68,59 +98,33 @@
68
98
 
69
99
  ```
70
100
 
71
- # yum localinstall /media/UDF\ Volume/nginx-1.14.0-1.mga7.x86_64.rpm
72
-
73
-
74
-
75
101
  (略)
76
102
 
103
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
104
+
105
+ geoipupdate-2.2.1-2.el6.x86_64: failure: Packages/g/geoipupdate-2.2.1-2.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
106
+
107
+ nginx-filesystem-1.10.2-1.el6.noarch: failure: Packages/n/nginx-filesystem-1.10.2-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
108
+
109
+ nginx-all-modules-1.10.2-1.el6.noarch: failure: Packages/n/nginx-all-modules-1.10.2-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
110
+
111
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
112
+
113
+ GeoIP-1.6.5-1.el6.x86_64: failure: Packages/g/GeoIP-1.6.5-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
114
+
115
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
116
+
117
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch: failure: Packages/g/GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm from epel: [Errno 256] No more mirrors to try.
118
+
119
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
120
+
77
- --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
121
+ gd-2.0.35-11.el6.x86_64: failure: Packages/gd-2.0.35-11.el6.x86_64.rpm from base: [Errno 256] No more mirrors to try.
122
+
78
-
123
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
124
+
79
- --> 依存性解決を終了しました。
125
+ nginx-mod-stream-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-stream-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
80
-
126
+
81
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
127
+ nginx-mod-mail-1.10.2-1.el6.x86_64: failure: Packages/n/nginx-mod-mail-1.10.2-1.el6.x86_64.rpm from epel: [Errno 256] No more mirrors to try.
82
-
83
- 要求: libpcre.so.1()(64bit)
84
-
85
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
86
-
87
- 要求: libc.so.6(GLIBC_2.14)(64bit)
88
-
89
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
90
-
91
- 要求: libc.so.6(GLIBC_2.17)(64bit)
92
-
93
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
94
-
95
- 要求: libssl.so.1.1()(64bit)
96
-
97
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
98
-
99
- 要求: libcrypto.so.1.1()(64bit)
100
-
101
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
102
-
103
- 要求: perl-base >= 2:5.26.2
104
-
105
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
106
-
107
- 要求: rpm-helper >= 0.24.8-1
108
-
109
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
110
-
111
- 要求: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)
112
-
113
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
114
-
115
- 要求: libperl.so.5.26()(64bit)
116
-
117
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
118
-
119
- 要求: libssl.so.1.1(OPENSSL_1_1_0)(64bit)
120
-
121
- 問題を回避するために --skip-broken を用いることができません
122
-
123
- これらを試行できます: rpm -Va --nofiles --nodigest
124
128
 
125
129
  ```
126
130
 
@@ -130,19 +134,27 @@
130
134
 
131
135
 
132
136
 
137
+ **追記(2018/07/27)**
138
+
139
+
140
+
133
- [Search the RPM repository on rpmfind.net](https://rpmfind.net/linux/rpm2html/search.php)
141
+ 参考:[インターネットと疎通がないマシンに yum RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
134
-
135
- 上記より自分なりにダウンロードしてDVDに収めたパッケージが①の内容です。(おそらく足りていない)
142
+
136
-
137
-
138
-
143
+
144
+
139
- **追(kazto様)**
145
+ サイトを参考にし、
146
+
147
+
148
+
140
-
149
+ ```
141
-
142
-
150
+
143
- 教えていただいたyumdownloaderコマンドを使い、依存関係を解決しつつパッケージのダウンロードを行いました。
151
+ # yum install nginx --downloadonly --downloaddir=/repo
152
+
144
-
153
+ ```
154
+
155
+
156
+
145
- その結果pacagesディレクトリ、下記rpmファイルがダウンロードがされました。
157
+ コマンドを実行しても、/repo落ちるrpmファイルったく同じでした。
146
158
 
147
159
 
148
160
 
@@ -180,140 +192,6 @@
180
192
 
181
193
 
182
194
 
183
- そのファイルをDVDに焼いて、下記コマンドを実行しました。
184
-
185
-
186
-
187
- ```
188
-
189
- # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
190
-
191
- ```
192
-
193
- ```
194
-
195
- (略)
196
-
197
- 他のミラーを試します。
198
-
199
- 依存性の解決をしています
200
-
201
- --> トランザクションの確認を実行しています。
202
-
203
- ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
204
-
205
- --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
206
-
207
- --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
208
-
209
- --> 依存性の処理をしています: nginx-filesystem のパッケージ: nginx-1.10.2-1.el6.x86_64
210
-
211
- --> トランザクションの確認を実行しています。
212
-
213
- ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
214
-
215
- --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
216
-
217
- --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
218
-
219
- ---> Package nginx-filesystem.noarch 0:1.10.1-1.el6 will be インストール
220
-
221
- --> 依存性解決を終了しました。
222
-
223
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
224
-
225
- 要求: nginx-all-modules = 1.10.2-1.el6
226
-
227
- 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
228
-
229
- nginx-all-modules = 1.10.1-1.el6
230
-
231
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
232
-
233
- 要求: nginx-filesystem = 1.10.2-1.el6
234
-
235
- インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
236
-
237
- nginx-filesystem = 1.10.1-1.el6
238
-
239
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
240
-
241
- 要求: nginx-filesystem = 1.10.2-1.el6
242
-
243
- 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
244
-
245
- nginx-filesystem = 1.10.1-1.el6
246
-
247
- 問題を回避するために --skip-broken を用いることができません
248
-
249
- これらを試行できます: rpm -Va --nofiles --nodigest
250
-
251
- ```
252
-
253
-
254
-
255
- 上記となり失敗してしまいました。
256
-
257
-
258
-
259
- **追記(2018/07/27)**
260
-
261
-
262
-
263
- 参考:[インターネットと疎通がないマシンに yum で RPM をインストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
264
-
265
-
266
-
267
- こちらを参考にし、
268
-
269
-
270
-
271
- ```
272
-
273
- # yum install nginx --downloadonly --downloaddir=/repo
274
-
275
- ```
276
-
277
-
278
-
279
- コマンドを実行しても、/repoに落ちるrpmファイルはまったく同じでした。
280
-
281
-
282
-
283
- ```
284
-
285
- GeoIP-1.6.5-1.el6.x86_64.rpm
286
-
287
- GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
288
-
289
- GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
290
-
291
- gd-2.0.35-11.el6.x86_64.rpm
292
-
293
- geoipupdate-2.2.1-2.el6.x86_64.rpm
294
-
295
- nginx-1.10.2-1.el6.x86_64.rpm
296
-
297
- nginx-all-modules-1.10.2-1.el6.noarch.rpm
298
-
299
- nginx-filesystem-1.10.2-1.el6.noarch.rpm
300
-
301
- nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
302
-
303
- nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
304
-
305
- nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
306
-
307
- nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
308
-
309
- nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
310
-
311
- nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
312
-
313
- ```
314
-
315
-
316
-
317
195
  ### 補足情報(FW/ツールのバージョンなど)
318
196
 
319
197
 

4

文言の追記

2018/07/27 05:04

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -70,215 +70,213 @@
70
70
 
71
71
  # yum localinstall /media/UDF\ Volume/nginx-1.14.0-1.mga7.x86_64.rpm
72
72
 
73
+
74
+
75
+ (略)
76
+
73
- 読み込んだプラグイン:fastestmirror, refresh-packagekit, security
77
+ --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
74
-
78
+
75
- ローカルパッケージ処理の設定をしてい
79
+ --> 依存性解決終了しました。
76
-
80
+
77
- /media/UDF Volume/nginx-1.14.0-1.mga7.x86_64.rpm を調べています: nginx-1.14.0-1.mga7.x86_64
81
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
82
+
78
-
83
+ 要求: libpcre.so.1()(64bit)
84
+
85
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
86
+
87
+ 要求: libc.so.6(GLIBC_2.14)(64bit)
88
+
89
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
90
+
91
+ 要求: libc.so.6(GLIBC_2.17)(64bit)
92
+
93
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
94
+
95
+ 要求: libssl.so.1.1()(64bit)
96
+
97
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
98
+
99
+ 要求: libcrypto.so.1.1()(64bit)
100
+
101
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
102
+
103
+ 要求: perl-base >= 2:5.26.2
104
+
105
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
106
+
107
+ 要求: rpm-helper >= 0.24.8-1
108
+
109
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
110
+
111
+ 要求: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)
112
+
113
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
114
+
115
+ 要求: libperl.so.5.26()(64bit)
116
+
117
+ エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
118
+
119
+ 要求: libssl.so.1.1(OPENSSL_1_1_0)(64bit)
120
+
121
+ 問題を回避するために --skip-broken を用いることができません
122
+
123
+ これらを試行できます: rpm -Va --nofiles --nodigest
124
+
125
+ ```
126
+
127
+
128
+
129
+ ### 試したこと
130
+
131
+
132
+
133
+ [Search the RPM repository on rpmfind.net](https://rpmfind.net/linux/rpm2html/search.php)
134
+
135
+ 上記より自分なりにダウンロードしてDVDに収めたパッケージが①の内容です。(おそらく足りていない)
136
+
137
+
138
+
139
+ **追記(kazto様)**
140
+
141
+
142
+
143
+ 教えていただいたyumdownloaderコマンドを使い、依存関係を解決しつつパッケージのダウンロードを行いました。
144
+
145
+ その結果pacagesディレクトリに、下記rpmファイルがダウンロードがされました。
146
+
147
+
148
+
149
+ ```
150
+
151
+ GeoIP-1.6.5-1.el6.x86_64.rpm
152
+
153
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
154
+
155
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
156
+
157
+ gd-2.0.35-11.el6.x86_64.rpm
158
+
159
+ geoipupdate-2.2.1-2.el6.x86_64.rpm
160
+
161
+ nginx-1.10.2-1.el6.x86_64.rpm
162
+
163
+ nginx-all-modules-1.10.2-1.el6.noarch.rpm
164
+
165
+ nginx-filesystem-1.10.2-1.el6.noarch.rpm
166
+
167
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
168
+
169
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
170
+
171
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
172
+
173
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
174
+
175
+ nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
176
+
177
+ nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
178
+
179
+ ```
180
+
181
+
182
+
183
+ そのファイルをDVDに焼いて、下記コマンドを実行しました。
184
+
185
+
186
+
187
+ ```
188
+
79
- /media/UDF Volume/nginx-1.14.0-1.mga7.x86_64.rpm をインストール済みとして設定しています
189
+ # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
80
-
81
- Loading mirror speeds from cached hostfile
190
+
82
-
83
- * base: centos.mirror.iweb.ca
191
+ ```
84
-
85
- * epel: del-repos.extreme-ix.org
192
+
86
-
87
- * extras: centos.mirror.iweb.ca
193
+ ```
194
+
88
-
195
+ (略)
196
+
89
- * remi-safe: fr2.rpmfind.net
197
+ 他のミラーを試します。
90
-
91
- * updates: centos.mirror.iweb.ca
92
198
 
93
199
  依存性の解決をしています
94
200
 
95
201
  --> トランザクションの確認を実行しています。
96
202
 
97
- ---> Package nginx.x86_64 0:1.14.0-1.mga7 will be インストール
203
+ ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
98
-
204
+
99
- --> 依存性の処理をしています: perl-base >= 2:5.26.2 のパッケージ: nginx-1.14.0-1.mga7.x86_64
205
+ --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
100
-
206
+
101
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
207
+ --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
102
-
103
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
208
+
104
-
105
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.14)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
106
-
107
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.17)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
108
-
109
- --> 依存性の処理をしています: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
110
-
111
- --> 依存性の処理をしています: libssl.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
112
-
113
- --> 依存性の処理をしています: libGeoIP.so.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
209
+ --> 依存性の処理をしています: nginx-filesystem のパッケージ: nginx-1.10.2-1.el6.x86_64
114
-
115
- --> 依存性の処理をしています: libcrypto.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
116
-
117
- --> 依存性の処理をしています: libpcre.so.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
118
-
119
- --> 依存性の処理をしています: libperl.so.5.26()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
120
-
121
- --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
122
210
 
123
211
  --> トランザクションの確認を実行しています。
124
212
 
125
- ---> Package GeoIP.x86_64 0:1.6.5-1.el6 will be インストール
126
-
127
- --> 依存性の処理をしています: geoipupdate のパッケージ: GeoIP-1.6.5-1.el6.x86_64
128
-
129
- --> 依存性の処理をしています: GeoIP-data のパッケージ: GeoIP-1.6.5-1.el6.x86_64
130
-
131
- ---> Package nginx.x86_64 0:1.14.0-1.mga7 will be インストール
213
+ ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
132
-
214
+
133
- --> 依存性の処理をしています: perl-base >= 2:5.26.2 のパッケージ: nginx-1.14.0-1.mga7.x86_64
215
+ --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
134
-
216
+
135
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
217
+ --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
136
-
137
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
218
+
138
-
139
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.14)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
140
-
141
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.17)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
142
-
143
- --> 依存性の処理をしています: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
144
-
145
- --> 依存性の処理をしています: libssl.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
146
-
147
- --> 依存性の処理をしています: libcrypto.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
148
-
149
- --> 依存性の処理をしています: libpcre.so.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
150
-
151
- --> 依存性の処理をしています: libperl.so.5.26()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
152
-
153
- --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
154
-
155
- --> トランザクションの確認を実行しています。
156
-
157
- ---> Package GeoIP-GeoLite-data.noarch 0:2018.04-1.el6 will be インストール
219
+ ---> Package nginx-filesystem.noarch 0:1.10.1-1.el6 will be インストール
158
-
159
- --> 依存性の処理をしています: GeoIP-GeoLite-data-extra = 2018.04-1.el6 のパッケージ: GeoIP-GeoLite-data-2018.04-1.el6.noarch
160
-
161
- ---> Package geoipupdate.x86_64 0:2.2.1-2.el6 will be インストール
162
-
163
- ---> Package nginx.x86_64 0:1.14.0-1.mga7 will be インストール
164
-
165
- --> 依存性の処理をしています: perl-base >= 2:5.26.2 のパッケージ: nginx-1.14.0-1.mga7.x86_64
166
-
167
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
168
-
169
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
170
-
171
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.14)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
172
-
173
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.17)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
174
-
175
- --> 依存性の処理をしています: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
176
-
177
- --> 依存性の処理をしています: libssl.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
178
-
179
- --> 依存性の処理をしています: libcrypto.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
180
-
181
- --> 依存性の処理をしています: libpcre.so.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
182
-
183
- --> 依存性の処理をしています: libperl.so.5.26()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
184
-
185
- --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
186
-
187
- --> トランザクションの確認を実行しています。
188
-
189
- ---> Package GeoIP-GeoLite-data-extra.noarch 0:2018.04-1.el6 will be インストール
190
-
191
- ---> Package nginx.x86_64 0:1.14.0-1.mga7 will be インストール
192
-
193
- --> 依存性の処理をしています: perl-base >= 2:5.26.2 のパッケージ: nginx-1.14.0-1.mga7.x86_64
194
-
195
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
196
-
197
- --> 依存性の処理をしています: rpm-helper >= 0.24.8-1 のパッケージ: nginx-1.14.0-1.mga7.x86_64
198
-
199
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.14)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
200
-
201
- --> 依存性の処理をしています: libc.so.6(GLIBC_2.17)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
202
-
203
- --> 依存性の処理をしています: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
204
-
205
- --> 依存性の処理をしています: libssl.so.1.1(OPENSSL_1_1_0)(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
206
-
207
- --> 依存性の処理をしています: libcrypto.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
208
-
209
- --> 依存性の処理をしています: libpcre.so.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
210
-
211
- --> 依存性の処理をしています: libperl.so.5.26()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
212
-
213
- --> 依存性の処理をしています: libssl.so.1.1()(64bit) のパッケージ: nginx-1.14.0-1.mga7.x86_64
214
220
 
215
221
  --> 依存性解決を終了しました。
216
222
 
217
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
218
-
219
- 要求: libpcre.so.1()(64bit)
220
-
221
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
222
-
223
- 要求: libc.so.6(GLIBC_2.14)(64bit)
224
-
225
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
226
-
227
- 要求: libc.so.6(GLIBC_2.17)(64bit)
228
-
229
- エラー: パッケ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
230
-
231
- 要求: libssl.so.1.1()(64bit)
232
-
233
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
234
-
235
- 要求: libcrypto.so.1.1()(64bit)
236
-
237
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
238
-
239
- 要求: perl-base >= 2:5.26.2
240
-
241
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
242
-
243
- 要求: rpm-helper >= 0.24.8-1
244
-
245
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
246
-
247
- 要求: libcrypto.so.1.1(OPENSSL_1_1_0)(64bit)
248
-
249
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
250
-
251
- 要求: libperl.so.5.26()(64bit)
252
-
253
- エラー: パッケージ: nginx-1.14.0-1.mga7.x86_64 (/nginx-1.14.0-1.mga7.x86_64)
254
-
255
- 要求: libssl.so.1.1(OPENSSL_1_1_0)(64bit)
256
-
257
- 問題回避するために --skip-broken を用いることができません
258
-
259
- これらを試行できます: rpm -Va --nofiles --nodigest
260
-
261
- ```
262
-
263
-
264
-
265
- ### 試したこと
266
-
267
-
268
-
269
- [Search the RPM repository on rpmfind.net](https://rpmfind.net/linux/rpm2html/search.php)
270
-
271
- 上記より自分なりにダウンロードしてDVDに収めたパッケージが①の内容です。(おそらく足りていない)
272
-
273
-
274
-
275
- **追記(kazto様)**
276
-
277
-
278
-
279
- 教えていただいたyumdownloaderコマンドを使い、依存関係を解決しつつパッケージのダウンロードを行いました。
280
-
281
- その結果pacagesディレクトリに、下記rpmファイルがダウンロードがされました。
223
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
224
+
225
+ 要求: nginx-all-modules = 1.10.2-1.el6
226
+
227
+ 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
228
+
229
+ nginx-all-modules = 1.10.1-1.el6
230
+
231
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
232
+
233
+ 要求: nginx-filesystem = 1.10.2-1.el6
234
+
235
+ インストルしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
236
+
237
+ nginx-filesystem = 1.10.1-1.el6
238
+
239
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
240
+
241
+ 要求: nginx-filesystem = 1.10.2-1.el6
242
+
243
+ 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
244
+
245
+ nginx-filesystem = 1.10.1-1.el6
246
+
247
+ 問題を回避するために --skip-broken を用いることができません
248
+
249
+ これらを試行できます: rpm -Va --nofiles --nodigest
250
+
251
+ ```
252
+
253
+
254
+
255
+ 上記となり失敗してしまいました。
256
+
257
+
258
+
259
+ **追記(2018/07/27)**
260
+
261
+
262
+
263
+ 参考:[インターネットと疎通がないマシンに yum で RPM インストールする](https://blog.amedama.jp/entry/2015/08/31/203556)
264
+
265
+
266
+
267
+ こちらを参考にし、
268
+
269
+
270
+
271
+ ```
272
+
273
+ # yum install nginx --downloadonly --downloaddir=/repo
274
+
275
+ ```
276
+
277
+
278
+
279
+ コマンドを実行しても、/repoに落ちるrpmファイルはまったく同じでした。
282
280
 
283
281
 
284
282
 
@@ -316,82 +314,6 @@
316
314
 
317
315
 
318
316
 
319
- そのファイルをDVDに焼いて、下記コマンドを実行しました。
320
-
321
-
322
-
323
- ```
324
-
325
- # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
326
-
327
- ```
328
-
329
- ```
330
-
331
- (略)
332
-
333
- 他のミラーを試します。
334
-
335
- 依存性の解決をしています
336
-
337
- --> トランザクションの確認を実行しています。
338
-
339
- ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
340
-
341
- --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
342
-
343
- --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
344
-
345
- --> 依存性の処理をしています: nginx-filesystem のパッケージ: nginx-1.10.2-1.el6.x86_64
346
-
347
- --> トランザクションの確認を実行しています。
348
-
349
- ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
350
-
351
- --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
352
-
353
- --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
354
-
355
- ---> Package nginx-filesystem.noarch 0:1.10.1-1.el6 will be インストール
356
-
357
- --> 依存性解決を終了しました。
358
-
359
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
360
-
361
- 要求: nginx-all-modules = 1.10.2-1.el6
362
-
363
- 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
364
-
365
- nginx-all-modules = 1.10.1-1.el6
366
-
367
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
368
-
369
- 要求: nginx-filesystem = 1.10.2-1.el6
370
-
371
- インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
372
-
373
- nginx-filesystem = 1.10.1-1.el6
374
-
375
- エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
376
-
377
- 要求: nginx-filesystem = 1.10.2-1.el6
378
-
379
- 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
380
-
381
- nginx-filesystem = 1.10.1-1.el6
382
-
383
- 問題を回避するために --skip-broken を用いることができません
384
-
385
- これらを試行できます: rpm -Va --nofiles --nodigest
386
-
387
- ```
388
-
389
-
390
-
391
- 上記となり失敗してしまいました。
392
-
393
-
394
-
395
317
  ### 補足情報(FW/ツールのバージョンなど)
396
318
 
397
319
 

3

内容の追記

2018/07/27 04:49

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -272,6 +272,124 @@
272
272
 
273
273
 
274
274
 
275
+ **追記(kazto様)**
276
+
277
+
278
+
279
+ 教えていただいたyumdownloaderコマンドを使い、依存関係を解決しつつパッケージのダウンロードを行いました。
280
+
281
+ その結果pacagesディレクトリに、下記rpmファイルがダウンロードがされました。
282
+
283
+
284
+
285
+ ```
286
+
287
+ GeoIP-1.6.5-1.el6.x86_64.rpm
288
+
289
+ GeoIP-GeoLite-data-2018.04-1.el6.noarch.rpm
290
+
291
+ GeoIP-GeoLite-data-extra-2018.04-1.el6.noarch.rpm
292
+
293
+ gd-2.0.35-11.el6.x86_64.rpm
294
+
295
+ geoipupdate-2.2.1-2.el6.x86_64.rpm
296
+
297
+ nginx-1.10.2-1.el6.x86_64.rpm
298
+
299
+ nginx-all-modules-1.10.2-1.el6.noarch.rpm
300
+
301
+ nginx-filesystem-1.10.2-1.el6.noarch.rpm
302
+
303
+ nginx-mod-http-geoip-1.10.2-1.el6.x86_64.rpm
304
+
305
+ nginx-mod-http-image-filter-1.10.2-1.el6.x86_64.rpm
306
+
307
+ nginx-mod-http-perl-1.10.2-1.el6.x86_64.rpm
308
+
309
+ nginx-mod-http-xslt-filter-1.10.2-1.el6.x86_64.rpm
310
+
311
+ nginx-mod-mail-1.10.2-1.el6.x86_64.rpm
312
+
313
+ nginx-mod-stream-1.10.2-1.el6.x86_64.rpm
314
+
315
+ ```
316
+
317
+
318
+
319
+ そのファイルをDVDに焼いて、下記コマンドを実行しました。
320
+
321
+
322
+
323
+ ```
324
+
325
+ # yum localinstall /media/UDF\ Volume/nginx-1.10.2-1.el6.x86_64.rpm
326
+
327
+ ```
328
+
329
+ ```
330
+
331
+ (略)
332
+
333
+ 他のミラーを試します。
334
+
335
+ 依存性の解決をしています
336
+
337
+ --> トランザクションの確認を実行しています。
338
+
339
+ ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
340
+
341
+ --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
342
+
343
+ --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
344
+
345
+ --> 依存性の処理をしています: nginx-filesystem のパッケージ: nginx-1.10.2-1.el6.x86_64
346
+
347
+ --> トランザクションの確認を実行しています。
348
+
349
+ ---> Package nginx.x86_64 0:1.10.2-1.el6 will be インストール
350
+
351
+ --> 依存性の処理をしています: nginx-all-modules = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
352
+
353
+ --> 依存性の処理をしています: nginx-filesystem = 1.10.2-1.el6 のパッケージ: nginx-1.10.2-1.el6.x86_64
354
+
355
+ ---> Package nginx-filesystem.noarch 0:1.10.1-1.el6 will be インストール
356
+
357
+ --> 依存性解決を終了しました。
358
+
359
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
360
+
361
+ 要求: nginx-all-modules = 1.10.2-1.el6
362
+
363
+ 利用可能: nginx-all-modules-1.10.1-1.el6.noarch (epel)
364
+
365
+ nginx-all-modules = 1.10.1-1.el6
366
+
367
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
368
+
369
+ 要求: nginx-filesystem = 1.10.2-1.el6
370
+
371
+ インストールしています: nginx-filesystem-1.10.1-1.el6.noarch (epel)
372
+
373
+ nginx-filesystem = 1.10.1-1.el6
374
+
375
+ エラー: パッケージ: nginx-1.10.2-1.el6.x86_64 (/nginx-1.10.2-1.el6.x86_64)
376
+
377
+ 要求: nginx-filesystem = 1.10.2-1.el6
378
+
379
+ 利用可能: nginx-filesystem-1.10.1-1.el6.noarch (epel)
380
+
381
+ nginx-filesystem = 1.10.1-1.el6
382
+
383
+ 問題を回避するために --skip-broken を用いることができません
384
+
385
+ これらを試行できます: rpm -Va --nofiles --nodigest
386
+
387
+ ```
388
+
389
+
390
+
391
+ 上記となり失敗してしまいました。
392
+
275
393
 
276
394
 
277
395
  ### 補足情報(FW/ツールのバージョンなど)

2

文言の修正

2018/07/25 08:30

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -268,7 +268,7 @@
268
268
 
269
269
  [Search the RPM repository on rpmfind.net](https://rpmfind.net/linux/rpm2html/search.php)
270
270
 
271
- 上記より自分なりにダウンロードしてDVDに収めたパッケージは下記です。(おそらく足りていない)
271
+ 上記より自分なりにダウンロードしてDVDに収めたパッケージが①の内容です。(おそらく足りていない)
272
272
 
273
273
 
274
274
 

1

文言の修正

2018/07/25 07:13

投稿

sekkati
sekkati

スコア24

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- 現在Apacheで動いているシステムに、nginxをリバースプロキシサーバとして差し込むことになりました。その際に本番環境(RHEL6.6)は外部ネットワークから切り離されてるらしく、CDに必要ファイルを焼いてインストールする方法を取り、その手順書を纏めなければならなくなりました。そのためにテストで使っていいと与えられたKVMの仮想マシン(CentOS6.7)で試行錯誤して頑張っています。
17
+ 現在Apacheで動いているシステムに、nginxをリバースプロキシサーバとして差し込むことになりました。その際に本番環境(RHEL6.6)は外部ネットワークから切り離されてるらしく、CDに必要ファイルを焼いてインストールする方法の手順書を纏めなければならなくなりました。そのためにテストで使っていいと与えられたKVMの仮想マシン(CentOS6.7)で試行錯誤して頑張っています。
18
18
 
19
19
 
20
20