일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- Oracle 테이블 대소문자
- Oracle 18c HR
- ora-01722
- 무료 오라클 설치
- 무료 오라클 데이터베이스
- Orace 18c
- 오라클 캐릭터셋 조회
- 오라클 캐릭터셋 확인
- 윈도우 Oracle
- Oracle 18c 설치
- ORA-12899
- oracle 18c
- ORA-00922
- Oracle 사용자명
- Oracle Express Edition
- 서평단
- Oracle 초기 사용자
- Oracle 사용자명 입력
- Oracle 18c HR schema
- oracle
- Oracle 테이블 띄어쓰기
- Oracle 윈도우 설치
- 오라클 캐릭터셋 변경
- 비전공자를 위한 데이터베이스 입문
Archives
- Today
- Total
The Nirsa Way
[ModSecurity 2.9] 아파치 modsecurity2 소스 설치 (apache modsecurity2 install) 본문
Security/ModSecurity
[ModSecurity 2.9] 아파치 modsecurity2 소스 설치 (apache modsecurity2 install)
KoreaNirsa 2020. 5. 14. 17:46반응형
-
아파치 modsecurity2 소스 설치 (apache modsecurity2 install)
아래와 같이 의존성 및 컴파일을 위한 패키지를 설치 해줍니다.
yum -y install gcc gcc-c++ httpd-devel pcre-devel
wget https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz
tar xvfz pcre-8.00.tar.gz
cd pcre-8.43
./configure --prefix=/usr/local/pcre
make
make install
이후 아래와 같이 modsecurity2를 직접 설치 합니다. 만약, libxml 에러가 발생할 경우 아래 링크를 참고하여 해결해주신 후 진행 하시면 됩니다.
modsecurity libxml 에러 발생 시 : https://nirsa.tistory.com/215
yum -y install gcc-c++ httpd-devel pcre-devel libxml2-devel
wget https://www.modsecurity.org/tarball/2.9.1/modsecurity-2.9.1.tar.gz
tar -zxvf modsecurity-2.9.1.tar.gz
cd modsecurity-2.9.1
./configure
make
make install
반응형