Apache(7)
-
centos 7 apm yum install
** 붉은 글씨는 수정해야 하는 문자들임 [apm 설치] #> rpm -qa libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel서버에 설치된 패키지 확인 #> yum install libjpeg* libpng* freetype* gd-* gcc gcc-c++ gdbm-devel libtermcap-devel패키지 yum install #> yum install httpdapache(httpd) yum install #> vi /etc/yum.repos.d/MariaDB.repo기존의 yum 으로 설치할 경우 MariaDB 5.5 버전이 설치가됨최신버전 설치를 원할경우 yum 미러 경로를 직접 지정 # MariaDB 10.1 Ce..
2018.12.18 -
웹엔진 헤더정보 숨기기
테스트는 아파치에서 함. curl -I http://localhostcurl -D- -o /dev/null http://localhost 를 입력하면 현재 웹서버의 헤더 정보를 볼수 있다. 그 때 server 항목에서 apache버전명이 노출이 된다. apache 버전이 노출이 되면 해당 버전의 exploit을 이용하여 침투,침해사고가 일어날 수 있다. 그것을 방지하기 위해 httpd.conf 에서 아래 내용을 추가하면 된다. 1. # Include conf/crs/modsecurity_crs_10_setup.conf Include conf/crs/modsecurity_crs_10_setup.confSecRuleEngine onServerTokens MinimalSecServerSignature "xxx..
2017.09.08 -
nginx 버전 업그레이드
nginx 설치 root@ #> service nginx stoproot@ #> mv nginx nginx_bak wget http://nginx.org/download/nginx-1.10.2.ziproot@ #> tar xvzf nginx-1.10.2.tar.gzroot@ #> cd nginx-1.10.2/src/core root@xxx /core/ #> cd /nginx-1.10.2/root@xxx /nginx-1.10.2/ #> ./configure --prefix=/nginx --conf-path=/nginx/conf/nginx.conf --error-log-path=/logs/error.log --http-log-path=/nginx/logs/access.log --with-http_ssl_mo..
2016.11.21 -
원하는 것만 출력하는 옵션 feat. ps -ef
ps -ef | grep *** | grep -v grep | wc -l 실행중인 프로세스 목록중에서 ***인 것만 출력 하면서 grep실행 프로세스는 생략을 하고 출력한 프로세스의 라인수만 출력 grep *** = 프로세스이름이 ***인것만 출력 grep -v grep = -v옵션은 해당 단어가 들어가는 것은 제외한다는 의미. 그러므로 grep이 들어가는 프로세스는 제외 wc -l = 문서가 몇줄, 몇 단어로 구성되어 있는지 출력해줌 -l옵션은 라인 수만 출력
2016.11.10 -
WAS란
Web Application Server의 약어 WEB 서버는 HTML같은 정적인 문서같은 컨텐츠를 처리하는것WAS 서버는 asp,php,jsp 등 개발 언어를 읽고 처리하여 동적 컨텐츠, 웹응용 프로그램 서비스를 처리하는 것. 요즘 WAS서버에는 WEB서버의 기능을 포함
2016.10.27 -
Centos7 libc설치
Centos6 이하 버전에서는 libc-client 를 yum 으로, 즉 패키지로 설치가 가능하지만 Centos7 버전에서는 libc-client 패키지를 지원해주지 않는다. 7버전에서 설치 하기위해서는 몇가지를 설치해야 libc 패키지 설치를 진행할 수 있다. 1. epel-release-7-*.noarch.rpm설치 #> wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm -이주소로 다운받으면 된다. #> yum install -y epel-release-7-5.noarch.rpm 2. epel-release-7.rpm 설치 #> wget http://rpms.famillecollet.com/enterpris..
2016.03.17 -
apm 설치 전 작업
vmware사용 CentOS 5.5 32bit를 설치하여 사용함. APM 소스설치 (Apache + Php + Mysql) CentOS 5.5 32bitmysql 5.1.32apache 2.2.2php 5.2.8 (zlib, libpng, libjpeg, freetype, gd, iconv 컴파일 설치) apm은 mysql -> apache -> php 순으로 설치 기존패키지 삭제. #rpm -qa httpd php mysql#rpm remove -y httpd php mysql 컴파일러와 라이브러리를 설치 #yum install -y gcc cpp gcc-c++ flex libxml2 libxml2-devel compat-gcc-32-g77 만약 compat-gcc-32-g77이 설치가 안된다면 com..
2013.08.06