메뉴 건너뛰기

리눅스 관련 모음

본문시작

조회 수 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. pcre최신버전 소스설치 후 modsecurity-apache 컴파일시 에러

    Date2013.01.19 Category에러해결 By햇빛소년 Views76636
    Read More
  2. passwd, groups, gpasswd 알아두면 좋을듯한 생소한 명령사용법.

    Date2012.06.19 By햇빛소년 Views27485
    Read More
  3. openssl 소스설치

    Date2014.03.16 Category설치관련 By햇빛소년 Views4887
    Read More
  4. open(/var/dcc/map): Permission denied --- maillog에러 메세지 드디어 해결!! --제2편

    Date2012.06.09 By햇빛소년 Views31089
    Read More
  5. open(/var/dcc/map): Permission denied --- maillog에러 메세지 드디어 해결!!

    Date2012.06.09 By햇빛소년 Views31887
    Read More
  6. named 에러 (/var/log/massages) 가 있을 때 해결 방법

    Date2013.06.12 Category에러해결 By햇빛소년 Views33936
    Read More
  7. named error -> dumping master file: tmp-6bFrQDtE5l: open: permission denied

    Date2015.05.06 Category에러해결 By햇빛소년 Views1059
    Read More
  8. MySQL에러[Warning] IP address '211.154.154.171' could not be resolved: no reverse address mapping.

    Date2011.05.09 By햇빛소년 Views51324
    Read More
  9. mysql 컴파일 설치 후 해야 할 일...

    Date2014.02.23 Category설치관련 By햇빛소년 Views4
    Read More
  10. mysql 문자열치환

    Date2012.10.11 By햇빛소년 Views23347
    Read More
  11. MySQL 데이타베이스 (DB) euckr => utf8 로 변환하여 이전 작업 하기

    Date2014.03.10 Category설치관련 By햇빛소년 Views3845
    Read More
  12. mysql 계정사용자 추가하기.

    Date2015.01.11 Category설치관련 By햇빛소년 Views1216
    Read More
  13. mysql root 및 사용자 계정 password(비밀번호) 변경 및 에러 대처.

    Date2015.08.11 Category에러해결 By햇빛소년 Views3235
    Read More
  14. MYSQL / 필드내 특정 문자열 치환하는 mysql 명령문

    Date2011.03.26 By햇빛소년 Views50687
    Read More
  15. mqueue 설정 및 사용법

    Date2016.05.26 Category설정 및 사용법 By햇빛소년 Views1793
    Read More
  16. ModSecurity-Apache 설치, Lua, readline

    Date2013.01.07 By햇빛소년 Views51532
    Read More
  17. modcurity 에러메세지

    Date2013.01.17 Category에러해결 By햇빛소년 Views0
    Read More
  18. mc(미드나잇 커맨드) 종료시 처음 PWD로 바뀌는 문제 해결

    Date2013.06.09 Category에러해결 By햇빛소년 Views17544
    Read More
  19. mariadb 소스설치시 Curses library not found. Please install appropriate package,

    Date2016.02.16 CategoryCentOS 7 By햇빛소년 Views2199
    Read More
  20. Mail Server 구축(postfix, dovecot, amavisd-new, spamassassin, clamav)

    Date2011.05.02 By햇빛소년 Views96540
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 Next
/ 10