Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- audit
- Audit Log
- K8S
- syslog
- 서울시민카드
- 디렉토리
- GNOME
- 빅데이터
- log
- Shell
- CentOS
- docker
- Kubernetes
- zabbix
- centos 7.5
- Chrome
- Python
- Elasticsearch
- rsyslog
- RHEL
- bash
- 파이썬
- 크롬
- C
- JSON
- Elk
- Linux
- yum
- GPU
- PostgreSQL
Archives
- Today
- Total
목록Apache (2)
Sysops Notepad
[Apache]exit signal Segmentation fault (11) error
/var/log/messages 에 아래와 같이 로그를 남길때 apache core 덤프를 남겨 분석을 하시면 됩니다. [notice] child pid 14444 exit signal Segmentation fault (11) # vi httpd.conf CoreDumpDirectory /tmp # 추가 # apache restart 만약 core 덤프 안 생기면 #ulimit -c unlimited 입력 # gdb /usr/bin/httpd /tmp/core
업무/sys
2021. 4. 9. 16:54
[linux] AB(Apache http server Benchmarking tool)를 활용한 벤치마킹 테스트
1. ab란?- Apache HTTP server Benchmarking Tool- Apache 응답속도를 체크하는 벤치마팅 툴 2. 사용법 # yum install httpd-tools # ab -c 클라이언트수 -n 요청수 -t 시간 URL # ab -c 100 -n 200 -t 60 https://www.naver.com 3. 옵션 -n requests Number of requests to perform : 벤치마킹을 위한 요청수 -c concurrency Number of multiple requests to make : 하나의 요청당 체크할 다중 요구수 (기본값 : 1) -t timelimit Seconds to max. wait for responses : 제한시간 -p postfile Fi..
업무/etc
2019. 2. 19. 11:11