質問編集履歴
2
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -108,4 +108,49 @@
|
|
108
108
|
[root@localhost yum.repos.d]# mkdir mariadb.repo
|
109
109
|
[root@localhost yum.repos.d]# cd mariadb.repo
|
110
110
|
[root@localhost mariadb.repo]# vi mariadb.repo
|
111
|
+
```
|
112
|
+
SCLにてMariaDBをインストールしたところlistには反映されるようになりました。
|
113
|
+
```
|
114
|
+
[vagrant@localhost ~]$ yum list MariaDB*
|
115
|
+
読み込んだプラグイン:fastestmirror
|
116
|
+
Loading mirror speeds from cached hostfile
|
117
|
+
epel/metalink | 6.5 kB 00:00
|
118
|
+
* base: ftp.tsukuba.wide.ad.jp
|
119
|
+
* epel: mirror01.idc.hinet.net
|
120
|
+
* extras: ftp.tsukuba.wide.ad.jp
|
121
|
+
* remi-safe: mirror.bebout.net
|
122
|
+
* updates: ftp.tsukuba.wide.ad.jp
|
123
|
+
base | 3.7 kB 00:00
|
124
|
+
centos-sclo-rh | 3.0 kB 00:00
|
125
|
+
centos-sclo-sclo | 2.9 kB 00:00
|
126
|
+
epel | 4.7 kB 00:00
|
127
|
+
epel/primary_db | 6.0 MB 00:01
|
128
|
+
extras | 3.4 kB 00:00
|
129
|
+
http://yum.mariadb.org/10.1/centos6-ppc64/repodata/repomd.xml: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
|
130
|
+
他のミラーを試します。
|
131
|
+
To address this issue please refer to the below knowledge base article
|
132
|
+
|
133
|
+
https://access.redhat.com/articles/1320623
|
134
|
+
|
135
|
+
If above article doesn't help to resolve this issue please open a ticket with Re d Hat Support.
|
136
|
+
|
137
|
+
mysql-connectors-community | 2.5 kB 00:00
|
138
|
+
mysql-tools-community | 2.5 kB 00:00
|
139
|
+
mysql56-community | 2.5 kB 00:00
|
140
|
+
nodesource | 2.5 kB 00:00
|
141
|
+
remi-safe | 2.9 kB 00:00
|
142
|
+
remi-safe/primary_db | 932 kB 00:01
|
143
|
+
updates | 3.4 kB 00:00
|
144
|
+
利用可能なパッケージ
|
145
|
+
mariadb55.x86_64 1.1-17.sc1.el6 centos-sclo-rh
|
146
|
+
mariadb55-build.x86_64 1.1-17.sc1.el6 centos-sclo-rh
|
147
|
+
mariadb55-mariadb.x86_64 5.5.53-1.el6 centos-sclo-rh
|
148
|
+
mariadb55-mariadb-bench.x86_64 5.5.53-1.el6 centos-sclo-rh
|
149
|
+
mariadb55-mariadb-devel.x86_64 5.5.53-1.el6 centos-sclo-rh
|
150
|
+
mariadb55-mariadb-libs.x86_64 5.5.53-1.el6 centos-sclo-rh
|
151
|
+
mariadb55-mariadb-server.x86_64 5.5.53-1.el6 centos-sclo-rh
|
152
|
+
mariadb55-mariadb-test.x86_64 5.5.53-1.el6 centos-sclo-rh
|
153
|
+
mariadb55-runtime.x86_64 1.1-17.sc1.el6 centos-sclo-rh
|
154
|
+
mariadb55-scldevel.x86_64 1.1-17.sc1.el6 centos-sclo-rh
|
155
|
+
[vagrant@localhost ~]$
|
111
156
|
```
|
1
追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -86,4 +86,26 @@
|
|
86
86
|
|
87
87
|
何か手順を間違えていますかね? 気が付いた方ご教示いただけるとたすかります。
|
88
88
|
|
89
|
-
よろしくお願いします。
|
89
|
+
よろしくお願いします。
|
90
|
+
|
91
|
+
追記
|
92
|
+
---
|
93
|
+
|
94
|
+
etcディレクトリをmkdirで作って以下の階層に配置したことが原因かとおもったのですがetcを作る前にやはりetcディレクトリにいけなかったんですよねそういえば。 etcディレクトリがないってことはありえないですよね?
|
95
|
+
```
|
96
|
+
[root@localhost ~]# cd yum.repos.d
|
97
|
+
-bash: cd: yum.repos.d: そのようなファイルやディレクトリはありません
|
98
|
+
[root@localhost ~]# cd etc
|
99
|
+
-bash: cd: etc: そのようなファイルやディレクトリはありません
|
100
|
+
[root@localhost ~]# mkdir etc
|
101
|
+
[root@localhost ~]# pwd
|
102
|
+
/root
|
103
|
+
[root@localhost ~]# cd etc
|
104
|
+
[root@localhost etc]# mkdir yum.repos.d
|
105
|
+
[root@localhost etc]# cd yum.repos.d
|
106
|
+
[root@localhost yum.repos.d]# pwd
|
107
|
+
/root/etc/yum.repos.d
|
108
|
+
[root@localhost yum.repos.d]# mkdir mariadb.repo
|
109
|
+
[root@localhost yum.repos.d]# cd mariadb.repo
|
110
|
+
[root@localhost mariadb.repo]# vi mariadb.repo
|
111
|
+
```
|