0
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?

テスト環境を作ろう! Apacheインストール編

Last updated at Posted at 2025-01-24

まずタイムゾーン

タイムゾーンがAsia/Tokyoに設定されているか確認
timedatectl
Asia/Tokyoに変更
timedatectl set-timezone Asia/Tokyo

Apacheのインストール

dnf -y install httpd
httpd -v
systemctl enable httpd
systemctl start httpd
systemctl status httpd
その後、ブラウザへlocalhostと入力

完了

次はphpをインストールします!

備考(yumの時はこちら)

yum -y install httpd httpd-tools httpd-devel httpd-manual
systemctl enable httpd
systemctl start httpd
systemctl start firewalld
firewall-cmd --add-service=http --permanent
firewall-cmd --reload

0
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
0
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?