YUMSERV
article thumbnail
[Zabbix] apache 모니터링
MONITORING 2021. 3. 14. 15:03

1. Apache 설정 $ vi /etc/httpd/conf.modules.d/00-base.conf LoadModule status_module modules/mod_status.so $ cat /etc/httpd/conf.d/server-status.conf # 아래 내용 추가 SetHandler server-status Require ip xxx.xxx.xxx.xxx/32 Require host localhost #uncomment to only allow requests from localhost $ service httpd restart Redirecting to /bin/systemctl restart httpd.service $ netstat -nltp Active Internet conne..

Coredump 생성
LINUX/BASIC 2019. 6. 29. 21:43

※ CentOS 7 , Apache 2.4 에서 테스트 진행 기본적으로 linux 서버에서는 coredump가 생성되지 않습니다. 1. 해당 설정 보는 방법# ulimit -acore file size (blocks, -c) 0data seg size (kbytes, -d) unlimitedscheduling priority (-e) 0file size (blocks, -f) unlimitedpending signals (-i) 7166max locked memory (kbytes, -l) 64max memory size (kbytes, -m) unlimitedopen files (-n) 1024pipe size (512 bytes, -p) 8POSIX message queues (bytes, -q) 8..

article thumbnail
WAS WEB 분리
LINUX/WEB 2019. 6. 13. 15:32

1. WEB 서버, WAS 서버란?WEB 서버는 HTML 문서와 같은 정적 컨텐츠를 처리하는 것(HTTP 프로토콜을 통해 읽을 수 있는 문서)Web 서버에 대표적인 예로는 apache, nginx, IIS 등이 있습니다. WAS 서버는 asp, php, jsp등 개발언어를 읽고 처리하여 동적 컨텐츠, 웹 응용 프로그램 서비스를 처리하는 것.WAS 서버의 대표적인 예로는 tomcat, jboss, jeus, web sphere 등이 있습니다.최근에는 WAS서버에는 WEB기능이 포함되어 있는 경우가 많습니다. 2. WEB서버와 WAS 서버를 분리하는 이유?- 기능을 분리하여 서버의 부하를 방지 WAS서버에서는 정적과 동적 처리가 가능한데, 정적처리를 하게 되면 부하가 많이 걸리게 됩니다. 그렇기 때문에, 접..