Study
Apache(아파치) 관련
메디츠
2024. 1. 14. 14:54
반응형
15년 5월 기준.
/usr/local/apache/bin
./apachectl stop
./apachectl start
./apachectl restart
service httpd start
Apache 403 에러
httpd.conf
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
KeepAlive는 한번 연결된 상대에 대해서 연결을 잃지 않고 지속적으로 요청에 응답
ON 접속자의 수 상관없이 메모리가 충분할경우
OFF 동시 접속자수가 많을경우, 메모리가 충분하지 못할경우
/etc/httpd // yum
/usr/local/apache2 // compile
/var/www // http service
반응형