「Linux/apacheインストール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==インストール== # yum install httpd ==起動== # /etc/rc.d/init.d/httpd start ==ストップと再起動== # /etc/rc.d/init.d/httpd stop # /etc/rc.d/init.d/h...」) |
(→プロセス確認) |
||
(同じ利用者による、間の1版が非表示) | |||
行5: | 行5: | ||
# /etc/rc.d/init.d/httpd start | # /etc/rc.d/init.d/httpd start | ||
− | == | + | ==ストップと再起動と設定再読込== |
# /etc/rc.d/init.d/httpd stop | # /etc/rc.d/init.d/httpd stop | ||
# /etc/rc.d/init.d/httpd restart | # /etc/rc.d/init.d/httpd restart | ||
+ | # /etc/rc.d/init.d/httpd graceful | ||
==自動起動設定== | ==自動起動設定== | ||
行15: | 行16: | ||
==プロセス確認== | ==プロセス確認== | ||
ps ax | grep httpd | ps ax | grep httpd | ||
+ | |||
+ | ==接続先webサーバがPermissionとなる場合== | ||
+ | エラーメッセージ | ||
+ | (13)Permission denied: AH00035: access to /index.php denied because search permissions are missing on a component of the path | ||
+ | selinuxを切る | ||
+ | $ sudo setenforce 0 |
2021年12月25日 (土) 04:17時点における最新版
インストール
# yum install httpd
起動
# /etc/rc.d/init.d/httpd start
ストップと再起動と設定再読込
# /etc/rc.d/init.d/httpd stop # /etc/rc.d/init.d/httpd restart # /etc/rc.d/init.d/httpd graceful
自動起動設定
# /sbin/chkconfig httpd on # /sbin/chkconfig --list httpd
プロセス確認
ps ax | grep httpd
接続先webサーバがPermissionとなる場合
エラーメッセージ
(13)Permission denied: AH00035: access to /index.php denied because search permissions are missing on a component of the path
selinuxを切る
$ sudo setenforce 0