find / -name access_log -exec rm -f {} \;


access_log부분에다가 원하는 파일명을 쓰면된다.


디렉토리 까지 함께 삭제하고 싶으면


find / -name access_log -exec rm -rf {} \;


-r 조건을 추가해주면된다.


WRITTEN BY
rabbbit
필기

,

네이버 신디케이션

정보 2014. 11. 27. 17:42

사용자가 원하는 정보를 제공할수 있고 


네이버 검색에 유리함 


나중에 api에 대해서 정리할것


WRITTEN BY
rabbbit
필기

,

아파치(apache) 시작,중지,리스타트하기

아파치 시작,중지,리스타트는 httpd 또는 apachectl 을 사용합니다.
apachectl 은 httpd와 같은 역할입니다. 아니 좀 정확히 말하면 httpd를 콘트롤 해주는 역할을 가진 녀석으로
httpd 처럼 사용해 주면 됩니다.


아파치 시작
# apachectl start
# httpd start


아파치 중지
# apachectl stop
# httpd stop

아파치 리스타트
# apachectl restart
# httpd restart


위와 같이 했는데 안될경우

아파치 시작
# /etc/rc.d/init.d/httpd start

아파치 중지
# /etc/rc.d/init.d/httpd stop

아파치 리스타트
# /etc/rc.d/init.d/httpd restart


다 아시겠지만 덧붙여서 apachectl 또는 httpd 의 위치는 말그대로 which 명령어를 씁니다.

# which apachectl

결과물 
/usr/local/apache/bin/apachectl 


httpd.conf 파일의 문법검사는
# apachectl configtest

이상 없을때의 결과물
Syntax OK


WRITTEN BY
rabbbit
필기

,

리눅스 방화벽 설정.


▶▷ 열려 있는 포트 확인 ◁◀

netstat -anp | grep LISTEN


방화벽 상태 알아보기

service iptables status


방화벽 올리고 내리기

service iptables stop

service iptables start


방화벽 설정 수정하기

vi /etc/sysconfig/iptables


방화벽 해제

iptable -F 혹은

ipchains -F 를 입력하세요.


redhat 9.0 이라면 lokkit 으로 방화벽 설정을 할 수도 있습니다.


Usage: lokkit [OPTION...]

-f, --fwtype Write Red Hat style

/etc/sysconfig/iptables rules,

instead of a shell script

-q, --quiet Run noninteractively; process

only command-line arguments

-n, --nostart Configure firewall but do not

activate it

--high Enable 'high' security level

(default)

--medium Enable 'medium' security level

--disabled Disable firewall

--dhcp Allow DHCP through the firewall

-p, --port=port:protocol (e.g, ssh:tcp)Allow specific ports through the

firewall

-t, --trust=device to trust Allow all traffic on the

specified device


Help options:

-?, --help Show this help message

--usage Display brief usage message


lokkit -q --disabled 라고 하면 방화벽이 해제됩니다.

iptables -F라고 직접 명령을 주어도 됩니다 F는 Flush 를 뜻합니다.

Kernel 2.2대의 linux 배포판이라면 ipchains -F 하면 됩니다.


WRITTEN BY
rabbbit
필기

,

boost 설치 방법

정보 2014. 9. 18. 14:04

http://warmz.tistory.com/903


WRITTEN BY
rabbbit
필기

,

한글



영문

- 출처 생활코딩



WRITTEN BY
rabbbit
필기

,