CentOS7.8環境にて、こちらの記事を参考にApacheのインストールを実施しています。
//epel-releaseパッケージのインストール #yum -y install epel-release //ius-releaseパッケージのインストール #yum install -y https://repo.ius.io/ius-release-el7.rpm //epelリポジトリのyum実行時のデフォルト使用無効化 #vi /etc/yum.repos.d/epel.repo - enabled = 1 + enabled = 0 //Nghttp2(HTTP/2コアエンジン)のインストール #yum --enablerepo=epel -y install nghttp2 //mime.typesのインストール #yum -y install mailcap //Brotli(ブロートリ)のインストール #yum --enablerepo=epel -y install brotli //アパッチのインストール #yum --disablerepo=base,epel,extras,updates --enablerepo=ius -y install httpd #yum -y install openldap-devel expat-devel libdb-devel //ここでdevelが依存関係によりインストール出来ない。 #yum --disablerepo=base,extras,updates --enablerepo=ius -y install httpd-devel mod_ssl Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Including mirror: ftp.riken.jp * remi-safe: ftp.riken.jp Resolving Dependencies --> Running transaction check ---> Package httpd24u-devel.x86_64 0:2.4.43-1.el7.ius will be installed --> Processing Dependency: perl >= 5.004 for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: apr15u-util-devel >= 1.5.0 for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: apr15u-devel >= 1.5.0 for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: /usr/bin/perl for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: perl(strict) for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Running transaction check ---> Package apr15u-devel.x86_64 0:1.5.2-2.ius.el7 will be installed ---> Package apr15u-util-devel.x86_64 0:1.5.4-3.ius.el7 will be installed ---> Package httpd24u-devel.x86_64 0:2.4.43-1.el7.ius will be installed --> Processing Dependency: perl >= 5.004 for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: /usr/bin/perl for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: perl(strict) for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Processing Dependency: /usr/bin/perl for package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 --> Finished Dependency Resolution Error: Package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 (ius) Requires: /usr/bin/perl Error: Package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 (ius) Requires: perl >= 5.004 Error: Package: httpd24u-devel-2.4.43-1.el7.ius.x86_64 (ius) Requires: perl(strict) You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest *** Packages skipped because of dependency problems: apr15u-devel-1.5.2-2.ius.el7.x86_64 from ius apr15u-util-devel-1.5.4-3.ius.el7.x86_64 from ius httpd24u-devel-2.4.43-1.el7.ius.x86_64 from ius
原因、対処方法をご教示いただけますでしょうか。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー