본문 바로가기

ETC

(4)
Forward Proxy & Reverse Proxy Forward Proxy (포워드 프록시):클라이언트가 프록시 서버를 통해 서버에 요청을 보냅니다.프록시 서버는 클라이언트의 요청을 받아서 서버로 전달하고, 서버의 응답을 받아 클라이언트로 다시 전달주로 클라이언트가 인터넷에 접근할 때 보안, 캐싱, 익명성 등을 제공하기 위해 사용됩니다.Reverse Proxy (리버스 프록시):클라이언트가 프록시 서버를 통해 서버에 요청을 보냅니다.클라이언트는 실제 서버의 위치를 알 필요가 없으며, 모든 요청과 응답은 리버스 프록시를 통해 처리됩니다.주로 서버의 부하 분산, 보안 강화, 캐싱 등을 위해 사용됩니다.​  Q1) 실제 서버의 위치라고 했는데, 실제 서버라는게 어떤 서버를 말하는거야? nginx나 apache http server같은 web 서버야? webl..
문자열 치환 #####파일 내 문자열 치환##### sed -i 's/기존문자/바꿀문자/g' 파일 sed -i 's/aaa/bbb/g' *.sh #####파일 내 경로 치환##### sed -i 's|기존경로|바꿀경로|g' 파일 sed -i 's|/app/wildfly/wildfly_2611/bin/domain.sh|/sw/wildfly26/bin/domain.sh|g' *.sh vi 치환 명령 요약 :s/old/new 현재 행의 처음 old를 new로 교체 :s/old/new/g 현재 행의 모든 old를 new로 교체 :10, 20s/old/new/g 10번째 행부터 20번째 행까지 모든 old를 new로 교체 :-3, +4s/old/new/g 현재 커서 위치에서 3행 위부터 4행 아래까지 old를 new로 교체 ..
Session ID 분석 브라우저의 개발자 도구를 열면 'Application' - 'Cookie'에서 세션 ID를 확인할 수 있다. sessionid 에는 primary jvmid 와 secondary jvmid 정보가 함께 기입이 된다. sessionid!primary_server_id!secondary_server_id!creation_time
[LINUX] 초기 설정으로 80포트 사용 시 나오는 에러 https://askubuntu.com/questions/338218/why-am-i-getting-permission-denied-make-sock-could-not-bind-to-address-when Why am I getting "Permission denied: make_sock: could not bind to address" when starting Apache2? I can stop it using /etc/init.d/apache2 stop But when I want to start it again using: /etc/init.d/apache2 start I get this error: Starting web server apache2 ... askubuntu.com In Linux ..