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
- NotificationCompat.Builder
- setDefaults(NotificationCompat.DEFAULT_ALL)
- 안드로이드 알림
- android notification 예제
- 알림 우선순위
- notifications
- setPriority(NotificationCompat.PRIORITY_HIGH)
- Pending Intent
- 알림 인텐트
- 펜딩인텐트
- setContentIntent
- 안드로이드 알림채널
- 안드로이드 알림 예제
- 버전별 관리
- notification channel
- notification manager
Archives
- Today
- Total
공부용 블로그
apache mpm 설정 본문
prefolk, woker, event-mpm 설정을 하기 위한 방법
1. 각 모드의 설정확인
# cd /etc/apache2/mods-available // 이 디렉토리에 들어가서 conf 파일들을 열어보면 됨
2. 사용 가능한 모드 확인
# ls -l /etc/apache2/mods-available/mpm*
3. 현재 사용중인 모드 확인
# apachectl -V | grep -i mpm
4. 현재 사용중인 모드(mpm_prefork인경우) 끄기
# a2dismod mpm_prefork
=> ERROR : the following modules depend on mpm_prefork and need to be disabled first : php7.2 라고 나오는 경우
# a2dismod php7.2
다시 prefork 모드를 끄자
# a2dismod mpm_prefork
# service apache2 restart // 재시작
해당 모드 활성화: a2enmod mpm방식
해당 모드 비활성화: a2dismod mpm방식
=> 설정 후 서버 재시작
'설계 > WebServer' 카테고리의 다른 글
Web Server Architecture 마인드맵 (0) | 2018.09.30 |
---|---|
mysql connector/j download (0) | 2018.09.27 |
Jmeter Listener 사용법 (0) | 2018.09.21 |
Web Server benchmark 할 때 고려해야할 사항 (0) | 2018.09.19 |
nmonchart 사용법 (0) | 2018.09.15 |