1 2 3 4 5 |
# yum -y install --enablerepo=remi,remi-php56 phpMyAdmin エラー: パッケージ: php-tidy-5.6.25-1.el7.remi.x86_64 (remi-php56) 要求: libtidy-0.99.so.0()(64bit) 問題を回避するために --skip-broken を用いることができます。 これらを試行できます: rpm -Va --nofiles --nodigest |
インストールするとエラーが出る
libtidy-0.99.so.0が無いと言われているので下記の方法でインストールする。
1 2 |
# wget ftp5.gwdg.de/pub/opensuse/repositories/home:/csbuild:/centosextra/RedHat_RHEL-6/x86_64/libtidy-20081207-1.1.x86_64.rpm # rpm -Uvh libtidy-20081207-1.1.x86_64.rpm |
再度phpMyAdminのインストールを実行。
1 |
# yum -y install --enablerepo=remi,remi-php56 phpMyAdmin |
phpMyAdminの設定をする。
1 2 3 |
/etc/phpMyAdmin/config.inc.php $cfg['DefaultLang'] = 'ja-utf-8'; # chown -R root:apache /usr/share/phpMyAdmin/ |
アクセス可能にするためApacheの設定を行う。
1 2 3 4 5 6 7 8 |
/etc/httpd/conf.d/phpMyAdmin.conf <Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 <IfModule mod_authz_core.c> # Apache 2.4 Require local 192.168.70.0/24 # systemctl reload httpd |