Search

'Server'에 해당되는 글 4건

  1. 2017.09.12 웹서버 스타트 시 에러 로그 / 해결
  2. 2017.04.27 web server
  3. 2013.11.25 jeus class 자동 반영 설정
  4. 2013.08.09 한 줄 500칸 이상 조회
Permission denied: make_sock: could not bind to address [::]:80
Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs

 

 

 

 

apache 데몬을 root 권한이 아닌 사용자 계정으로 실행 해서 나는 로그다.

 

기본적으로 예약된 포트는 root 권한 이외의 계정으로는 오픈 할 수 없다.

 

 

 

 

[출처] http://freeism.co.kr/tc/612

web server

Server/Unix/Linux 2017. 4. 27. 18:54 Posted by Request

출처 :

http://blog.naver.com/woony0622/150113410306

http://blog.naver.com/dudwo567890/130156854673

 

 

 

간만에 웹서버가 죽는 경우가 종종 있어 메모를 해놓는다.

 

 

 

프로세스 활성화 확인

 

ps -ef | grep httpd

 

 

웹 프로세스 모두 죽이기

 

killall -9 httpd

 

 

===============================

 

 

find . -name

 

 

 

 

웹서버 확인

./apachectl configtest

 

 

 

jeus class 자동 반영 설정

Server 2013. 11. 25. 15:13 Posted by Request

1.jeus-web-dd.xml 설정

<auto-reload>

<enable-reload>true</enable-reload>

<check-on-demand>true</check-on-demand> //class 변경 유무 체크

</auto-reload>

 

-- class 등 실시간 반영

 

 

 

 

 

2.jeus-web-dd.xml 설정

<auto-reload>

<enable-reload>true</enable-reload>

            <check-on-demand>false</check-on-demand>

</auto-reload>

 

WEBMain.xml 주기 설정

<monitoring>

<check-class-reload>300000</check-class-reload>

</monitoring>

 

-- class 등 300초 반영

 

 

 

참조 : [http://blog.naver.com/dceye?Redirect=Log&logNo=50090035512]

한 줄 500칸 이상 조회

Server/Unix/Linux 2013. 8. 9. 14:04 Posted by Request

한 줄 500칸 이상 PGM

 

find ./[a-z]* -type f -name "*.jsp" | while read xx

do

xxx='awk' length() > 500 '$xx'

if

test "$xxxx"

then

echo $xx

fi

done