CentOS6:yumでMariaDBがインストールできない
CentOS6.8にてDjangoを利用するためにこちらを参考に環境構築したところ、MariaDBをyumでインストールしようとしたところ、パッケージが利用できない事象が発生。
venvで仮想環境を作成し、その環境上で実行しています。
(venv_app1) [vagrant@localhost django_apps]$ sudo yum install -y mariadb-server mariadb-devel
読み込んだプラグイン:fastestmirror
インストール処理の設定をしています
Loading mirror speeds from cached hostfile
* base: www.ftp.ne.jp
* epel: ftp.riken.jp
* extras: www.ftp.ne.jp
* remi-safe: ca.mirror.babylon.network
* updates: www.ftp.ne.jp
パッケージ mariadb-server は利用できません。
パッケージ mariadb-devel は利用できません。
エラー: 何もしません
(venv_app1) [vagrant@localhost django_apps]$ cat /etc/redhat-release
CentOS release 6.8 (Final)
pythonのバージョン/シンボリックリンクは下記のようになっています。
(venv_app1) [vagrant@localhost django_apps]$ cd /usr/bin/
(venv_app1) [vagrant@localhost bin]$ ll | grep python
lrwxrwxrwx. 1 root root 28 12月 5 23:07 2016 pip -> /usr/local/python/bin/pip3.5
lrwxrwxrwx. 1 root root 29 12月 5 23:06 2016 python -> /usr/local/python/bin/python3
-rwxr-xr-x. 2 root root 4864 7月 24 05:23 2015 python.bk
lrwxrwxrwx. 1 root root 6 6月 10 02:31 2015 python2 -> python
-rwxr-xr-x. 2 root root 4864 7月 24 05:23 2015 python2.6
yumは下記のとおりです。
(venv_app1) [vagrant@localhost bin]$ cat /usr/bin/yum
#!/usr/bin/python2.6
import sys
try:
import yum
except ImportError:
print >> sys.stderr, """\
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
%s
Please install a package which provides this module, or
verify that the module is installed correctly.
It's possible that the above module doesn't match the
current version of Python, which is:
%s
If you cannot solve this problem yourself, please go to
the yum faq at:
http://yum.baseurl.org/wiki/Faq
""" % (sys.exc_value, sys.version)
sys.exit(1)
sys.path.insert(0, '/usr/share/yum-cli')
try:
import yummain
yummain.user_main(sys.argv[1:], exit_code=True)
except KeyboardInterrupt, e:
print >> sys.stderr, "\n\nExiting on user cancel."
sys.exit(1)