前提・実現したいこと
CentOS7.0に、mySQLをインストールをしたいのですが、
以下のコマンドを実施すると、HTTP Error 407が発生してしまい、インストールができません。
##発生しているエラー
$ yum install mysql-community-server
読み込んだプラグイン:fastestmir
Loading mirror speeds from cached hostfile
- base: ftp-srv2.kddilabs.jp
- extras: download.nus.edu.sg
- updates: download.nus.edu.sg
base | 3.6 kB 00:00:00
cr | 2.9 kB 00:00:00
extras | 2.9 kB 00:00:00
http://repo.mysql.com/yum/mysql-connectors-community/el/7/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 407 - Proxy Authentication Required
他のミラーを試します。
One of the configured repositories failed (MySQL Connectors Community),
and yum doesn't have enough cached data to continue. At this point the only
safe thing yum can do is fail. There are a few ways to work "fix" this:
1. Contact the upstream for the repository and get them to fix the problem. 2. Reconfigure the baseurl/etc. for the repository, to point to a working upstream. This is most often useful if you are using a newer distribution release than is supported by the repository (and the packages for the previous distribution release still work). 3. Run the command with the repository temporarily disabled yum --disablerepo=mysql-connectors-community ... 4. Disable the repository permanently, so yum won't use it by default. Yum will then just ignore the repository until you permanently enable it again or use --enablerepo for temporary usage: yum-config-manager --disable mysql-connectors-community or subscription-manager repos --disable=mysql-connectors-community 5. Configure the failing repository to be skipped, if it is unavailable. Note that yum will try to contact the repo. when it runs most commands, so will have to try and fail each time (and thus. yum will be be much slower). If it is a very temporary problem though, this is often a nice compromise: yum-config-manager --save --setopt=mysql-connectors-community.skip_if_unavailable=true
failure: repodata/repomd.xml from mysql-connectors-community: [Errno 256] No more mirrors to try.
http://repo.mysql.com/yum/mysql-connectors-community/el/7/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 407 - Proxy Authentication Required
試したこと
(1)保存した.rpmファイルからMySQLダウンロードする。
$ yum localinstall mysql80-community-release-el7-3.noarch.rpm
(2)MySQL8.0のサブリポジトリエントリを有効にする。
$ yum-config-manager --enable mysql80-community
(3)repolistを確認する。
$ yum repolist all | grep mysql
mysql-cluster-7.5-community/x86_64 MySQL Cluster 7.5 Community 無効
mysql-cluster-7.5-community-source MySQL Cluster 7.5 Community - So 無効
mysql-cluster-7.6-community/x86_64 MySQL Cluster 7.6 Community 無効
mysql-cluster-7.6-community-source MySQL Cluster 7.6 Community - So 無効
mysql-cluster-8.0-community/x86_64 MySQL Cluster 8.0 Community 無効
mysql-cluster-8.0-community-source MySQL Cluster 8.0 Community - So 無効
mysql-connectors-community/x86_64 MySQL Connectors Community 無効
mysql-connectors-community-source MySQL Connectors Community - Sou 無効
mysql-tools-community/x86_64 MySQL Tools Community 無効
mysql-tools-community-source MySQL Tools Community - Source 無効
mysql-tools-preview/x86_64 MySQL Tools Preview 無効
mysql-tools-preview-source MySQL Tools Preview - Source 無効
mysql55-community/x86_64 MySQL 5.5 Community Server 無効
mysql55-community-source MySQL 5.5 Community Server - Sou 無効
mysql56-community/x86_64 MySQL 5.6 Community Server 無効
mysql56-community-source MySQL 5.6 Community Server - Sou 無効
mysql57-community/x86_64 MySQL 5.7 Community Server 無効
mysql57-community-source MySQL 5.7 Community Server - Sou 無効
mysql80-community/x86_64 MySQL 8.0 Community Server 有効: 0
mysql80-community-source MySQL 8.0 Community Server - Sou 無効
(4)mysql-community-serverをインストールする。
$ yum install mysql-community-server
※エラー発生
補足情報(FW/ツールのバージョンなど)
/etc/yum.confにプロキシーを設定をしており、
全てのサブリポジトリエントリを無効にするとyum updateコマンドは実施可能になります。
ですが、サブリポジトリエントリを1つでも有効にすると
yumコマンドで「HTTP Error 407 - Proxy Authentication Required」エラーが出てしまい、
mysql-community-serverのインストールやyum updateコマンドも実施できなくなってしまいます。
なにか手順漏れなどありましたらご指摘、ご教授お願いします。
OS:CentOS7.0
回答1件
あなたの回答
tips
プレビュー