質問編集履歴

2

追記

2018/02/08 03:32

投稿

seen
seen

スコア49

test CHANGED
File without changes
test CHANGED
@@ -219,3 +219,93 @@
219
219
  [root@localhost mariadb.repo]# vi mariadb.repo
220
220
 
221
221
  ```
222
+
223
+ SCLにてMariaDBをインストールしたところlistには反映されるようになりました。
224
+
225
+ ```
226
+
227
+ [vagrant@localhost ~]$ yum list MariaDB*
228
+
229
+ 読み込んだプラグイン:fastestmirror
230
+
231
+ Loading mirror speeds from cached hostfile
232
+
233
+ epel/metalink | 6.5 kB 00:00
234
+
235
+ * base: ftp.tsukuba.wide.ad.jp
236
+
237
+ * epel: mirror01.idc.hinet.net
238
+
239
+ * extras: ftp.tsukuba.wide.ad.jp
240
+
241
+ * remi-safe: mirror.bebout.net
242
+
243
+ * updates: ftp.tsukuba.wide.ad.jp
244
+
245
+ base | 3.7 kB 00:00
246
+
247
+ centos-sclo-rh | 3.0 kB 00:00
248
+
249
+ centos-sclo-sclo | 2.9 kB 00:00
250
+
251
+ epel | 4.7 kB 00:00
252
+
253
+ epel/primary_db | 6.0 MB 00:01
254
+
255
+ extras | 3.4 kB 00:00
256
+
257
+ http://yum.mariadb.org/10.1/centos6-ppc64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
258
+
259
+ 他のミラーを試します。
260
+
261
+ To address this issue please refer to the below knowledge base article
262
+
263
+
264
+
265
+ https://access.redhat.com/articles/1320623
266
+
267
+
268
+
269
+ If above article doesn't help to resolve this issue please open a ticket with Re d Hat Support.
270
+
271
+
272
+
273
+ mysql-connectors-community | 2.5 kB 00:00
274
+
275
+ mysql-tools-community | 2.5 kB 00:00
276
+
277
+ mysql56-community | 2.5 kB 00:00
278
+
279
+ nodesource | 2.5 kB 00:00
280
+
281
+ remi-safe | 2.9 kB 00:00
282
+
283
+ remi-safe/primary_db | 932 kB 00:01
284
+
285
+ updates | 3.4 kB 00:00
286
+
287
+ 利用可能なパッケージ
288
+
289
+ mariadb55.x86_64 1.1-17.sc1.el6 centos-sclo-rh
290
+
291
+ mariadb55-build.x86_64 1.1-17.sc1.el6 centos-sclo-rh
292
+
293
+ mariadb55-mariadb.x86_64 5.5.53-1.el6 centos-sclo-rh
294
+
295
+ mariadb55-mariadb-bench.x86_64 5.5.53-1.el6 centos-sclo-rh
296
+
297
+ mariadb55-mariadb-devel.x86_64 5.5.53-1.el6 centos-sclo-rh
298
+
299
+ mariadb55-mariadb-libs.x86_64 5.5.53-1.el6 centos-sclo-rh
300
+
301
+ mariadb55-mariadb-server.x86_64 5.5.53-1.el6 centos-sclo-rh
302
+
303
+ mariadb55-mariadb-test.x86_64 5.5.53-1.el6 centos-sclo-rh
304
+
305
+ mariadb55-runtime.x86_64 1.1-17.sc1.el6 centos-sclo-rh
306
+
307
+ mariadb55-scldevel.x86_64 1.1-17.sc1.el6 centos-sclo-rh
308
+
309
+ [vagrant@localhost ~]$
310
+
311
+ ```

1

追記

2018/02/08 03:32

投稿

seen
seen

スコア49

test CHANGED
File without changes
test CHANGED
@@ -175,3 +175,47 @@
175
175
 
176
176
 
177
177
  よろしくお願いします。
178
+
179
+
180
+
181
+ 追記
182
+
183
+ ---
184
+
185
+
186
+
187
+ etcディレクトリをmkdirで作って以下の階層に配置したことが原因かとおもったのですがetcを作る前にやはりetcディレクトリにいけなかったんですよねそういえば。 etcディレクトリがないってことはありえないですよね?
188
+
189
+ ```
190
+
191
+ [root@localhost ~]# cd yum.repos.d
192
+
193
+ -bash: cd: yum.repos.d: そのようなファイルやディレクトリはありません
194
+
195
+ [root@localhost ~]# cd etc
196
+
197
+ -bash: cd: etc: そのようなファイルやディレクトリはありません
198
+
199
+ [root@localhost ~]# mkdir etc
200
+
201
+ [root@localhost ~]# pwd
202
+
203
+ /root
204
+
205
+ [root@localhost ~]# cd etc
206
+
207
+ [root@localhost etc]# mkdir yum.repos.d
208
+
209
+ [root@localhost etc]# cd yum.repos.d
210
+
211
+ [root@localhost yum.repos.d]# pwd
212
+
213
+ /root/etc/yum.repos.d
214
+
215
+ [root@localhost yum.repos.d]# mkdir mariadb.repo
216
+
217
+ [root@localhost yum.repos.d]# cd mariadb.repo
218
+
219
+ [root@localhost mariadb.repo]# vi mariadb.repo
220
+
221
+ ```