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 | 29 | 30 |
Tags
- JSON
- Python
- syslog
- 서울시민카드
- Audit Log
- GPU
- 크롬
- audit
- 파이썬
- Linux
- CentOS
- Shell
- centos 7.5
- Elk
- docker
- 디렉토리
- GNOME
- Elasticsearch
- PostgreSQL
- log
- K8S
- bash
- 빅데이터
- yum
- C
- Kubernetes
- RHEL
- zabbix
- rsyslog
- Chrome
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