콤마 찍기 (정규표현식)

Web/JavaScript 2021. 2. 22. 13:36 Posted by Request

//콤마찍기
function comma(str) {
    str = String(str);
    return str.replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,');
}

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