메뉴 건너뛰기

리눅스 관련 모음

본문시작

조회 수 51532 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

국산 통나무 수공예 남원제기, 남원목기

자료가 도움이 되셨다면
혼수용품제수용품 필요시
남원제기 공식 홈페이지 http://남원제기.kr
남원목기 공식 홈페이지 http://otchil.kr
에서 구매 해 주세요
정성껏 모시겠습니다.
 

ModSecurity-Apache 설치를 위해서는 아래와 같은 라이브러리가 설치가 되어 있어야 한다.

 

Lua 는 이곳에서 최신버전을 다운 받아 설치한다.

압축을 푼다.

tar zxvf lua-5.x.x.tar.gz

 

설치를 한다. (플랫폼에 맞게) 나는 리눅스 이므로 다음과 같이 한다.

make linux

make install

 

그런데 컴파일시 에러가 나온다.  Readline이 설치가 되지 않아서 그렇다.

 

그럼 먼저 Readline을 설치 해야겠다.

Readline  최신버전 다운 받아 압축을 푼다.

tar zxvf readline-6.x.x.tar.gz

 

컴파일시 설치 경로는 --prefix=/usr/local/share/readline로 하였더니 Lua 컴파일시 readline을 인식하지 못한므로

아래와 같이 --prefix=/usr/local 로 경로설정을 해 준다.  그렇게 하였더니 금방 인식하고 컴파일 에러없이 완료 설치함.

$ ./configure --prefix=/usr/local --enable-shared

 

readline 이 무사히 설치가 되고 Lua 설치를 상기와 같이 컴파일 시도를 하니 에러없이 술술 넘어간다.

 

이제 준비가 되었으니 ModSecurity-Apache 설치를 시작 해 보자.

최신버전을 다운 받아 압축 해제한다.

tar zxvf ModSecurity-Apache_x.x.x.tar.gz

 

아래와 같이 컴파일 명령을 입력하고 설치를 시작한다.

 ./configure --with-apxs=/usr/local/apache243/bin/apxs --with-apr=/usr/local/apr --with-apu=/usr/local/apr --with-libxml=/usr/local/share/libxml2 --with-lua=/usr/local --enable-shared

 

그런데 make 명령에서 자꾸 에러가 난다.  나의 리눅스 버전이 낮아 트러블이 생기는 것 같다.  libtool에서 생기는 것 같아

libtool을 삭제하고 새로운 최신 버전으로 소스 설치한 후 재시도 하였으나 계속 에러가 난다.

버전이 낮은 다음 것들을 삭제하고 소스를 받아 설치한 후 다시 시도 하기로 하였다.

 

 

M4 -> autoconf -> automake

순서대로 설치 해야 한다.

 

GNU M4 설치


1. http://ftp.gnu.org/gnu/m4/  에서 gnum4 다운 받기

2. tar xvfz m4-1.4.16.tar.gz

3. cd m4-1.4.16

4. ./configure --prefix=/usr

5. make && make install

 

autoconf 설치

 

1. ftp://ftp.gnu.org/gnu/autoconf/   에서 autoconf 다운 받기

2. tar xvfz autoconf-2.69.tar.gz

3. cd autoconf-2.69

4. ./configure --prefix=/usr

5. make && make install


automake 설치

 

1. ftp://ftp.gnu.org/gnu/automake/  에서 automake 다운 받기

2. tar xvfz automake-1.11.6.tar.gz

3. cd automake-1.11.6

4. ./configure --prefix=/usr

5. make && make install

 

설치 하면서 혹시라도 호환성 의존성 문제가 있을까 염려 하였지만, 일단 큰 문제없이 설치 되엇으니

다시 아래 명령으로 ModSecurity-Apache를 설치 시작하자.

 ./configure --with-apxs=/usr/local/apache243/bin/apxs --with-apr=/usr/local/apr --with-apu=/usr/local/apr --with-libxml=/usr/local/share/libxml2 --with-lua=/usr/local --enable-shared

O.K

make  &&  make install

O.K

설치가 끝났다.  apache/modules/mod_security2.so 가 생성되었나 확인하고 생성 되었으면 정상.

   

  1. dnssec-keygen 사용법 및 구축과 검증

  2. TIFF 설피시 /usr/local/include/jmorecfg.h:263:16: error: expected identifier before numeric constant 에러

  3. rndc-confgen — rndc key generation tool

  4. ZendGuardLoader.so: undefined symbol: compiler_globals

  5. Luajit 다운로드 및 설치

  6. pcre최신버전 소스설치 후 modsecurity-apache 컴파일시 에러

  7. apache2.x.x 컴파일 에러 해결 - /usr/local/lib/liblua.a: could not read symbols: Bad value

  8. .htaccess 이용 스팸 IP 차단

  9. modcurity 에러메세지

  10. PHP CodeSniffer 코딩검사

  11. PHP5.3 가동후 에러 메세지

  12. unable to include potential exec "include/top.html" in parsed file 에러 해결!!!

  13. Apache-2.4.X 에서 mod_evasive-1.10.1 설치시 나오는 에러 해결...

  14. 특정 디렉토리에 있는 파일 또는 디렉토리의 퍼미션 변경

  15. ZendGuardLoader 설치 에러

  16. No Image 07Jan
    by 햇빛소년
    2013/01/07 by 햇빛소년
    Views 51532 

    ModSecurity-Apache 설치, Lua, readline

  17. No Image 06Jan
    by 햇빛소년
    2013/01/06 by 햇빛소년
    Views 20515 

    php-5.4.10 make시 gd관련 에러...

  18. No Image 06Dec
    by 햇빛소년
    2012/12/06 by 햇빛소년
    Views 20107 

    Sendmail 스패머 IP 차단 쉘스크립트 v2

  19. No Image 06Dec
    by 햇빛소년
    2012/12/06 by 햇빛소년
    Views 21173 

    센드메일(sendmail) RBL 이용하여 해외, 국내 스팸 차단하는 법.

  20. No Image 11Oct
    by 햇빛소년
    2012/10/11 by 햇빛소년
    Views 23347 

    mysql 문자열치환

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 Next
/ 10