CentOS7をインストールしたサーバをWebサーバとして使用するためにApacheとPHPをインストールする。
# yum install httpd
# yum install httpd-devel
# yum install php
# yum install php-mbstring
# yum install php-mysqli
# yum install php-xml
httpd-develは、apxsを使うのでインストールする。
Apache起動前のメモリーの使用状況チェック。
$ free
total used free shared buff/cache available
Mem: 1006680 83748 665208 6728 257724 768536
Swap: 1044220 0 1044220
OS起動時にApacheを起動するように設定する。
自動起動の設定
# systemctl enable httpd.service
起動
# systemctl start httpd.service
確認
# systemctl status httpd.service
Apache起動後のメモリーの使用状況チェック。
$ free
total used free shared buff/cache available
Mem: 1006680 93612 651652 6812 261416 757540
Swap: 1044220 0 1044220
これでApache+PHPインストール完了。
0 件のコメント:
コメントを投稿