IT 55

일반계정으로 Apache 80포트 기동

일반적으로 root 계정이 아닌 계정으로 80포트를 사용한 WEB 기동시 다음과 같은 메시지가 확인된다. ------------------------------------------------------------------------------------------------------------------- (13)Permission denied: AH00072: make_sock: could not bind to address 127.0.0.1:80 no listening sockets available, shutting down AH00015: Unable to open logs ------------------------------------------------------------------..

IT/WEBWAS 2020.07.06

OS별 file descriptor 개수 확인 및 수정

- WAS 기동시 Too many openfiles ~~ 와 같은 로그가 확인되며 기동되지 않을 경우, file descriptor 설정 변경필요 - 아래 설명의 는 수정할 값을 의미함. 1. AIX/Solaris /usr/bin/ulimit -a * Hard limit > ulimit -aH ** Soft limit > ulimit -aS - AIX 수정 (전역 수정_root 권한) vi /etc/security/limits OPEN_MAX nofiles= - Solaris 수정 (전역 수정_root 권한) vi /etc/system set rlim_fd_max= set rlim_fd_cur= - 사용자별 수정 (공통) > ulimit -n 실행 Linux * Hard limit > sysctl -a ..

IT/OS 2020.06.29

TLS v1.2 미만 프로토콜 지원중단에 따른 조치방법

* SSL / TLS 에 대한 정의는 다음을 참고 https://www.websecurity.digicert.com/security-topics/what-is-ssl-tls-https What is SSL, TLS and HTTPS? SSL certificates (Secure Sockets Layer) are an integral part of website security. When you visit a website with SSL, the site's SSL certificate enables you to encrypt the data you send - such as credit card information, names or addresses - so it can't be www.websecu..

IT/WEBWAS 2020.06.15

vi 편집기_자주 쓰는 명령어

engn/files/> vi file.xml (view 로 먼저 파일을 보고, 수정하는 것을 추천) 입력 변경 i 인서트 r 수정 x 커서있는 한칸 삭제 o 한 줄(엔터키) 내려가서 insert u 수정 내용 원복 $ 해당 줄의 끝으로 이동 :%s/aaa/bbb/g 편집 파일 내 aaa를 bbb로 변경 마우스 우클릭 클립보드 복사내용 붙여넣기 :w 편집내용 저장 :wq 저장하고 닫기 :q! 저장 안하고 나가기 :set number 좌측에 행 번호 보여주기 **vi -b 파일명 : 바이너리 형태로 파일을 연다.( UltraEdit 등의 편집기 사용으로 인해 엔터키로 인한 특수문자가 들어간 경우, 확인 가능하다.)

IT/OS 2020.06.13