1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

記事投稿キャンペーン 「2024年!初アウトプットをしよう」

apacheにmod_perlを導入する方法

Last updated at Posted at 2024-01-13

はじめに

アプリケーション導入とかに必要なmod_perlをapacheに導入したい人向けの記事です。
apacheのインストール方法は割愛してます。
導入のための必要最低限の事項しか書いてませんので、ご了承ください。

実施環境

Rocky Linux 8.5(Red hat系ならおそらく転用可能)
※外に出られる環境であることが前提です

方法

  1. yumもしくはdnfコマンドでインストール
# yum install mod_perl
もしくは
# dnf install mod_perl

2./etc/httpd/conf/httpd.confに以下を追加

LoadModule perl_module modules/mod_perl.so

3.apacheの再起動

systemctl restart httpd

終了です。外に出られる環境なら簡単ですね。
あとは必要に応じて、設定ファイルに設定を追加していってください。
ソースインストールする方法もありますが、それはまたの機会に解説できればと(未検証)…

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?