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
- Oracle 테이블 대소문자
- Oracle 테이블 띄어쓰기
- oracle
- ora-01722
- 오라클 캐릭터셋 조회
- 서평단
- 무료 오라클 설치
- Oracle 18c HR schema
- Oracle 윈도우 설치
- Orace 18c
- ORA-12899
- ORA-00922
- 오라클 캐릭터셋 확인
- Oracle 초기 사용자
- 비전공자를 위한 데이터베이스 입문
- Oracle 18c 설치
- Oracle 사용자명 입력
- 무료 오라클 데이터베이스
- 윈도우 Oracle
- 오라클 캐릭터셋 변경
- oracle 18c
- Oracle 18c HR
- Oracle Express Edition
- Oracle 사용자명
Archives
- Today
- Total
Nirsa's Learning Lab
[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"
Nirsa 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
반응형