일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 18c
- Oracle Express Edition
- 무료 오라클 데이터베이스
- Oracle 18c 설치
- 무료 오라클 설치
- Oracle 사용자명
- Oracle 사용자명 입력
- 비전공자를 위한 데이터베이스 입문
- Orace 18c
- 오라클 캐릭터셋 조회
- 윈도우 Oracle
- Oracle 18c HR schema
- Oracle 18c HR
- Oracle 테이블 띄어쓰기
- 오라클 캐릭터셋 변경
- ORA-00922
- Oracle 초기 사용자
- 오라클 캐릭터셋 확인
- ORA-12899
- oracle
- 서평단
- Oracle 윈도우 설치
- ora-01722
- Oracle 테이블 대소문자
Archives
- Today
- Total
The Nirsa Way
[ModSecurity 2.9] 아파치 modsecurity2 설치 시 에러 "checking for libxml2 config script... no configure: *** xml library not found. configure: error: libxml2 is required" 본문
Security/ModSecurity
[ModSecurity 2.9] 아파치 modsecurity2 설치 시 에러 "checking for libxml2 config script... no configure: *** xml library not found. configure: error: libxml2 is required"
KoreaNirsa 2020. 5. 14. 17:41반응형
-
아파치 modsecurity2 설치 시 에러 "checking for libxml2 config script... no configure: *** xml library not found. configure: error: libxml2 is required"
해당 에러는 modeseucirty2 소스 설치 시 libxml 2.6.29 이하 버전일 경우 발생할 수 있습니다. 아래와 같이 상위 버전을 설치받아 해결하실 수 있습니다.
cd /usr/local/src
wget ftp://xmlsoft.org/libxml2/libxml2-2.7.7.tar.gz
tar xvzf libxml2-2.7.7.tar.gz
cd libxml2-2.7.7
./configure --prefix=/usr/local/xml
make && make install
cp modsecurity.conf-recommended /etc/httpd/conf/modsecurity.conf
rpm -qa | grep libxml 으로 확인할 때 이미 상위 버전을 사용중이라면 아래 패키지를 설치하여 에러를 해결할 수 있습니다.
yum -y install libxml2-devel
반응형