728x90
반응형
728x90
반응형
반응형

갑자기 local로 띄운 서버가 mac -> paralles -> window -> ie에서 안된다면..?

호스트 파일에도 설정이 잘 있는데도 안된다면..?

나 같은 경우 아래와 같은 에러가 브라우저에 찍혔다..

  •  INET_E_RESOURCE_NOT_FOUND
  • CONNECTION_REFUSED

 

hosts 파일의 주소를 아래와 같이 외부 ip로 변경하면 우선 해결된다.

근데 외부 ip가 바뀔 경우 다시 손대야하는 불편함이 있다..

728x90
반응형

'서버 세팅 & tool > vm on mac' 카테고리의 다른 글

[redis] 설치 / redis-cli  (0) 2025.01.09
[terminal] alias in mac terminal  (0) 2022.06.08
[vm] nginx 설치  (0) 2022.02.24
[parallels] nox...... 99%.....  (0) 2022.02.23
[vm] axon server 설치  (0) 2022.01.12
반응형

쿠버네티스에 nginx를 깔고 시작한다.

WAF = web application firewall = L7 방화벽(http 트래픽를 filter, monitor, block하는 web service)

nginx 방화벽은 코드레벨에 가까운 방화벽

MSA기반의 아키텍쳐에서는 개발자가 모든 코드를 다 알 수 없음(어디에 위험요소가 있는지 알 수 없음) 그렇기 때문에 더욱 코드 레발단의 방화벽이 필요함.

 

설정: yaml 파일

설정 명령어:

kubectl apply -f aaa.yaml

특징: 

  • 헤더/바디에 어떤 값이 오면 막는 기능 가능
  • data-guard: 데이터 마스킹이나 데이터 중 민감 데이터같은게 있으면 탐지하거나 할 수 있음
  • 로그 설정 가능
  • waf 설정파일에서 정책/로그정책 등 지정가능
  • 지정 시 파일 이름에는 ap- 로 시작하고 yaml 파일 안에서는 ap- 다음 부분부터 작성하면 되는 듯

 

강의에서는 도커에서 시연을 하는데 도커를 잘 몰라 바로 따라가기가 어려웠다.

728x90
반응형

'서버 세팅 & tool > nginx' 카테고리의 다른 글

라이브환경 인증서 교체  (0) 2024.01.08
[이슈해결][apache] 304 NOT_MODIFIED  (0) 2023.10.12
[nginx] API gateway  (0) 2022.03.14
[nginx] 실전 cors 해결하기  (0) 2022.03.14
[nginx] load balancing  (0) 2022.03.11
반응형

Rest로 api를 요청할 때 request parameter type에 어떻게 가변 변수를 넣는지에 대한 고찰.

 

1. PATH param

url 자체에 가변 변수가 포함되어 있는 경우, resource를 식별할 때 사용

GET /employee/{employeeID} 와 같은 꼴..

url 부분에 중괄호로 변수 위치를 표시하고 아래에서는 타입을 TEMPLATE으로 선택해야 한다. 가변 변수이므로 value 부분에 어떤 값이 올지 지정해줘야 한다.

 

2. QUERY param

GET /employee?designation={name} 과 같이? 뒤에 key=value 구조로 이루어진 부분; 정렬이나 필터링을 할 때 사용

type을 QUERY로 지정하고 value 부분에 역시 어디서 데이터를 가져올지 명시해준다. 위의 parameter 부분에는 (dataGen의 경우) default로 지정한 게 나온다.

 


참고: 

https://www.soapui.org/docs/rest-testing/understanding-rest-parameters/

 

Understanding REST Parameters | Documentation | SoapUI

Article Index PLAIN Parameters Parameter Level: RESOURCE and METHOD You use request parameters to set varying parts in simulated requests. SoapUI supports the following parameter types: QUERY TEMPLATE HEADER MATRIX You can find them in the request editor:

www.soapui.org

 

728x90
반응형

'서버 세팅 & tool > readyapi' 카테고리의 다른 글

groovy basics  (0) 2022.03.24
반응형

테스트 자동화 툴인 ReadyAPI(soupUI)에는 script 언어로 groovy가 쓰인다.

아무래도 원하는 바를 쉽게 하려면 groovy를 조금이라도 아는 게 중요, 지인짜 기본적인 것만 언급한다.

 

  • 코드 끝에 세미콜론 있어도 되고 없어도 되고..
  • 주석
//한줄

/* 여러줄
애해해
ㅇㅇㅇ*/
  • 로그
//()가 있어도 되고 
log.info("Result :" + c);
//괄호를 생략해도 가능
log.info "soapUI script"
log.info "aa" + c
  • 변수 선언 def
  • string to json
import groovy.json.JsonSlurper

def resResponse = "{'a':'bb', 'n':3}"
//string 형태의 json을 진짜 json으로 바꿔주는 lib.function
def json = new JsonSlurper().parseText(restResponse)

//이후에는 json 접근하 듯 접근 가능
log.info json.a
//결과: bb

 

나머지는 java랑 비슷, 단 stream 쓸 때 {it -> } 로 내부 변수명이 it로 지정되어 있고 별도의 함수가 있는 듯 하다.

https://dzone.com/articles/java-lambda-streams-and-groovy-clauses-comparisons

 

Java Lambda Streams and Groovy Closures Comparisons - DZone Java

This post takes a look at creating and implementing lambda streams in both Java and Groovy, determining that Groovy provides more terse code overall.

dzone.com


ReadyApi에서 제공하는 library

단점은 각 라이브러리에 뭐가 있는지 알기가 어렵다....

기본적으로 많이 쓸 아이들은 아래와 같다.

  • api 결과 가져오기
//api결과를 스트링으로 가져와서 변수 선언
def restResponse = testRunner.testCase.testSteps["Rest 이름"].testRequest.response.contentAsString
//아래도 동일.. 스트링으로 가져온다
def restResponse = testRunner.testCase.testSteps["Rest 이름"].testRequest.response.responseContent
  • 테스트 케이스 변수로 선언하기
//변수를 꺼내다가 프로퍼티로 선언하는 방법
testRunner.testCase.setPropertyValue("aspId", activeList[i])

 

기타 문법..

https://www.soapui.org/docs/scripting-and-properties/tips-tricks/

 

ReadyAPI: Properties & Scripting Samples | SoapUI

NOTE: Some of the scripts in this section relate to standalone SoapUI Pro, which is now part of the ReadyAPI application suite. To try the new functionality, feel free to download the trial version of ReadyAPI from our web site. Accessing Properties 1.1 Ge

www.soapui.org

 

https://intersog.com/blog/how-to-use-groovy-scripts-in-soapui-for-test-requests/

 

How to Use Groovy Scripts in SoapUI for Test Requests - Intersog

Learn how you should use SoapUI Groovy scripts to conduct test requests. ✔Step-by-step guide ✔Code examples.

intersog.com

 

728x90
반응형

'서버 세팅 & tool > readyapi' 카테고리의 다른 글

[readyApi] request parameter  (0) 2022.03.24
반응형

 

api gateway란

  • api management tool sits between client and backend
  • reverse proxy
An API gateway is set up in front of the microservices and becomes the entry point for every new request being executed by the app. It simplifies both the client implementations and the microservices app.

 

기능들

  1. TLS termination
    • ssl /tls 1.3 지원
  2. client authentication
    1. auth_jwt 로 키고/켜고 가능
    2. auth_jwt_key_file 로 저장된 키파일(.jwk)불러올 수 있음
    3.  키가 유효하면 프록시 됨
  3. fine-grained access control
    1. jwt_claim_uid -> 토큰 안 uri 값 가져올 수 있음, 가져와서 더 상세한 조건으로 제한 가능
  4. request routing
    • uri별로 어디로 프록시할지 정할 수 있음
    • proxy_pass 와 =,~ 등을 이용한 정규식 사용 가능
  5. rate limiting
    • limit_req_zone
    • 속도 제한 가능(ex. 5r/m = 5requests per a minute); 사실 횟수 제한에 가까움
    • 이를 초과하면 limit_req_status로 설정해둔 status code가 response로 내려감
  6. load balancing

 

 

728x90
반응형

'서버 세팅 & tool > nginx' 카테고리의 다른 글

[이슈해결][apache] 304 NOT_MODIFIED  (0) 2023.10.12
[nginx] WAF  (0) 2022.03.30
[nginx] 실전 cors 해결하기  (0) 2022.03.14
[nginx] load balancing  (0) 2022.03.11
[nginx] reverse proxy  (0) 2022.03.03
반응형

문제: nginx -> springboot2.6.2 swagger로 api요청 시 CORS 문제로 실행 안됨

 

1. spring 설정으로 addCorsMapping 해주어야 함

@Component
public class WebMvcConfig implements WebMvcConfigurer {
    @Override
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/api/**");
    }
}

 

2. nginx.conf 로 프락시 되는 주소를 localhost -> 해당 도매인으로 수정

#user  nobody;
worker_processes  1;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}

http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" ';

    server {
        listen       80;
        server_name  alpha.example.com;
        access_log  /home1/test/logs/access_log.log  main;

        location / {
           #proxy_pass http://localhost:8600;
            proxy_pass http://alpha.example.com:8600;
        }
    }
}
728x90
반응형

'서버 세팅 & tool > nginx' 카테고리의 다른 글

[이슈해결][apache] 304 NOT_MODIFIED  (0) 2023.10.12
[nginx] WAF  (0) 2022.03.30
[nginx] API gateway  (0) 2022.03.14
[nginx] load balancing  (0) 2022.03.11
[nginx] reverse proxy  (0) 2022.03.03
반응형

 

로드밸런싱(load balancing)

  • 클라이언트와 백엔드 서비스 사이에 위치
  • 클라이언트로부터 요청을 받고 해당 요청을 수행할 수 있는 서비스나 인스턴스로 요청을 균등하게 전달하는 방법

 

서버의 로드밸런싱을 해주는 로드밸런서는 여러 장비/프로그램이 있을 수 있겠지만, 여기서는 nginx의 로드밸런싱에 대해 다루겠다.

https://docs.nginx.com/nginx/admin-guide/load-balancer/http-load-balancer/

 

HTTP Load Balancing | NGINX Plus

HTTP Load Balancing Load balance HTTP traffic across web or application server groups, with several algorithms and advanced features like slow-start and session persistence. Overview Load balancing across multiple application instances is a commonly used t

docs.nginx.com

  • ip/port/domain 기반한 group/pool/service단위로 로드발랜싱 가능
  • proxy_pass 에 그룹으로 지정
  • http context 안에 든 upstream 에서 설정

 

로드밸런싱 룰

  • 사용자가 정한 방식에 의해 적절한 서버를 선택, 기본값은 라운드 로빈 알고리즘(균등)
  • weight를 따로줘서 가중치를 줄 수 있음. 서버가 받는 요청은 가중치에 비례함.
  • max_conns 최대 연결 서버 조정 가능, 나머지는 큐에
    • 관련하여 queue / timeout 설정 가능
  • 특정횟수만큼 실패하면 빠질 수 있음  max_fails/fail_timeouts

 

로드 밸런싱 알고리즘

주의) 로드밸런싱 알고리즘 중 세션을 보존할 수 있는게 있는데 새 서버를 추가하거나 제거하면 해시 키가 손실될 가능성이 높아서 세션 정보가 무효가 될 가능성이 있음

  1. round robin
  2. hash
    • hash $request_uri 
    • -> /example 이 요청 uri 일 경우 항상 동일한 서버로 
    • 가중치도 같이 줄 수 있음
  3. ip_hash
    • 고객의 ipv4/v6를 기반으로 해시 키 잡음. 동일한 서버로 라우팅함
  4. least_conn
    • 제일 놀고 있는 서버에게 감
  5. least_time
    • 가장 빠른 응답을 하는 서버에게, 헤더의 평균 응답시간 활
  6. 랜덤

 

세션 유지

(curl로하면 쿠키 저장이 안되서 바로 보기가 불가하고 브라우저 테스트 시 확인가능)

  • sticky cookie
    • 최초 요청 시 쿠키 생성하여 헤더에 세팅, 이후 요청에서는 헤더의 쿠키 값을 보고 해당 서버로 보냄
    • 쿠키 만료 시간, 도메인, path 설정 가능
  • sticky route 고정 경로
    • nginx가 서버의 route 변수(쿠키나 uri에서 가져옴)를 확인하여 프록시 할 서버를 식별
  • sticky learn
    • reqeust/response를 검사해서 어디로 프록시할지 결정

 

example .conf

728x90
반응형

'서버 세팅 & tool > nginx' 카테고리의 다른 글

[이슈해결][apache] 304 NOT_MODIFIED  (0) 2023.10.12
[nginx] WAF  (0) 2022.03.30
[nginx] API gateway  (0) 2022.03.14
[nginx] 실전 cors 해결하기  (0) 2022.03.14
[nginx] reverse proxy  (0) 2022.03.03
반응형

 

nginx 구성

#기본 경로
/etc/nginx
#메인 설정
/etc/nginx/nginx.conf
	    include /etc/nginx/conf.d/*.conf;

#설정 값 경로 -> alphabetical order로 설정파일 읽음
/etc/nginx/conf.d

#nginx -T 로 설정값 읽는 순서 파악 가능

 

reverse proxy로서의 역할

  • server side proxy; client와 백엔드 사이에서 연결 중재
  • server블락 안의 proxy_pass 지시문 
  • 연결이 끊어지기 전에 연결을 닫고, 백엔드에 대한 새 연결을 하는데, 도중에 original 정보 손실 가능성 있음
  • 클라이언트 정보(ip, request, etc) 캡처 후 연결 종료
  • 백엔드로 새 연결 시 기존 정보를 헤더(proxy_set_header)에 담아서 전달
  • 웹서버 역할도 하고 애플리케이션을 호스팅도 하면서 프록시역할도 함

 

location / {
    proxy_pass http://127.0.0.1:8080;
}

이것이 기본적인 구문이다. 즉, 현재 서버에 / 로 시작하는 path로 접근하면, http://127.0.0.1:8080 으로 return 한다는 의미이다. 그러면 실제 사용자는 8080 포트에 접근하지 않았지만 8080 포트에 접근한 것과 동일한 효과가 발생한다.

nginx는 클라이언트가 접근한 path를 보고, 가장 적합한 location의 블럭으로 요청을 보내서 처리하게 된다. 주소에 대한 규칙 및 우선순위는 다음과 같다.

  1. = : 정규식이 정확하게 일치
    • location = /admin { . . . }
  2. ^~ : 정규식 앞부분이 일치
    • location ^~ /admin { . . . }
  3. ~ : 정규식 대/소문자 일치
    • location ~ /admin/ { . . . }
  4. ~* : 대/소문자를 구분하지 않고 일치
    • location ~* .(jpg|png|gif)
  5. /  : 하위 일치(prefix match)
    • location /admin { . . . }

 

예시는 아래 링크로 첨부한다.

https://www.digitalocean.com/community/tutorials/understanding-nginx-server-and-location-block-selection-algorithms

 

Understanding Nginx Server and Location Block Selection Algorithms | DigitalOcean

 

www.digitalocean.com


default.conf수정

새로운 로그파일에 해더 찍도록 설정

초기 default.conf

 

수정 default.conf

sudo nginx -s reload

conf파일을 수정한 경우 위 명령어로 반드시 리로드를 해줘야 한다.


참고: 원문 https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/

 

NGINX Reverse Proxy | NGINX Plus

NGINX Reverse Proxy Configure NGINX as a reverse proxy for HTTP and other protocols, with support for modifying request headers and fine-tuned buffering of responses. This article describes the basic configuration of a proxy server. You will learn how to p

docs.nginx.com

 

728x90
반응형

'서버 세팅 & tool > nginx' 카테고리의 다른 글

[이슈해결][apache] 304 NOT_MODIFIED  (0) 2023.10.12
[nginx] WAF  (0) 2022.03.30
[nginx] API gateway  (0) 2022.03.14
[nginx] 실전 cors 해결하기  (0) 2022.03.14
[nginx] load balancing  (0) 2022.03.11
반응형

이번 글은 이전에 다뤘던 chaining test와 bulk request test의 연장선이다.

2022.02.08 - [서버 세팅 & tool/postman] - [postman] chaining sample test

 

[postman] chaining sample test

이전 글: 2022.02.08 - [서버 세팅, tool 사용법/postman] - [test] environment variable setting & snippets [test] environment variable setting & snippets 이전 글: 2022.02.08 - [서버 세팅, tool 사용법..

bangpurin.tistory.com

2022.02.23 - [서버 세팅 & tool/postman] - [postman] 파일로 bulk request를 불러와서 api test하기

 

[postman] 파일로 bulk request를 불러와서 api test하기

이전 글: 2022.02.08 - [서버 세팅 & tool/postman] - [postman] chaining sample test [postman] chaining sample test 이전 글: 2022.02.08 - [서버 세팅, tool 사용법/postman] - [test] environment variabl..

bangpurin.tistory.com

 

api 두 개를 순차적으로 요청할 때, 첫 번째 api 결과로 얻은 list안의 어떤 값을 두 번째 api의 요청 값에 넣어 순차적으로 테스트하는 방법을 알아본다. 이전 글에서 다룬 chaining test랑도 비슷하지만, chaining test에서는 object안의 항목을 variable로 set 해서 전달했다면, 여기서는 마치 for loop을 도는 것처럼 list안의 항목을 하나씩 돌아 테스트한다.

이전에 다룬 bulk test와도 비슷하지만 별도의 csv파일을 활용하지 않고 진행하는 것에 차이가 있다.

 

예를 들어 첫 번째 api의 결과가 다음과 같다고 가정하자.

{
    "playerInfos": [
        {
            "createdTime": "20171130144206",
            "updatedTime": "20190221153455",
            "playerId": "000120000000000",
            "bizLicenseNo": "1128131171",
            "name": " test",
            "status":"02"
        },
        {
            "createdTime": "20170825181332",
            "updatedTime": "20190221184742",
            "playerId": "000090000000000",
            "bizLicenseNo": "6068637012",
            "name": "미진테크",
            "status":"02"
        },
        {
            "createdTime": "20171106090524",
            "updatedTime": "20190221184837",
            "playerId": "000113000000000",
            "bizLicenseNo": "4558700713",
            "name": "맛있는우동",
            "status":"02"
        },
        {
            "createdTime": "20170728144046",
            "updatedTime": "20190221152314",
            "playerId": "000079000000000",
            "bizLicenseNo": "2140125811",
            "status":"02"
            "name": "공룡핸드폰",
        }
    ...
}

여기서 status = '01' 이면 active, '01'이 아니면 inactive이다. 원하는 것은 active 한 object의 playerId를 꺼내서 다음 api의 request항목(여기서는 path param)에 넣어 순차적으로 요청하는 것이라면, 테스트 코드를 어떻게 작성해야 할까.

전체 흐름을 다음과 같이 생각해볼 수 있다.

  1. 첫 번째 api결과를 json으로 바꾼다.
  2. playerInfos의 object를 순차적으로 돌면서 status = '01' 이면 playerId를 playerIds라는 array에 담는다.
  3. playerIds를 env-variable이나 collection-variable로 설정한다(여기서는 collection-variable로 지정한다).
  4. 두 번째 api에서 collection-variable로 설정된 playerIds를 꺼내서 맨 앞을 꺼내서 변수(playerId)로 설정하고 array에서 지운다.
  5. 수정된 array(playerIds)를 다시 collection-variable로 지정한다.
  6. 두 번째 api의 status code가 200인지 확인하다.
  7. playerIds array의 길이가 0보다 크면 두 번째 api를 요청한다. 그렇지 않으면 종료한다.

 

위 흐름은 아래와 같이 정리된다.

  • 첫 번째 api 요청 후에 세팅해야 하는 것: 1, 2, 3
  • 두 번째 api 요청 전에 세팅해야 하는 것: 4, 5
  • 두 번째api 요청 후에 세팅해야하는 것: 6, 7

 

1. 첫 번째 api 테스트 작성

pm.test("Status code is 200", function () {
    pm.response.to.have.status(200);
});

if(pm.response.to.have.status(200)){  //정상요청했다면
    var json = pm.response.json();   //1. 결과를 json으로 담고
    //console.log(json.playerInfos)

    //2. json 중 status가 01인 아이들인 object를 모으고, object 중 playerId만 모아 playerIds에 넣는다.
    let playerIds = json.playerInfos.filter((i) => i.status == '01').map(e => e.playerId);
    //console.log(playerIds);
    pm.collectionVariables.set("playerIds", playerIds);  //3. collection-var로 세팅
}

 

두 번째 api url은 다음 형식이다.

[get] www.abc.com/asps/{{aspId}}  

aspId를 collection-var로 세팅해서 자동으로 가져가게 할 생각이다.

 

2. 두번째 api 테스트 작성 - pre-request script

let playerIds = pm.collectionVariables.get("playerIds"); //4. collection-var에서 꺼냄
let aspId = playerIds.shift(); //5. playerIds array에서 맨 처음 항목 꺼내서 aspId라는 변수로 담고 playerIds에서 지움
pm.collectionVariables.set("aspId", aspId); //5. 변수세팅
pm.collectionVariables.set("playerIds", playerIds); //6. 수정된 array 재세팅

postman test에서는 javascript가 사용 가능하기 때문에 여기서는 shift 함수를 이용했다. 상황에 따라 다양한 함수를 활용 가능하다.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/shift

 

Array.prototype.shift() - JavaScript | MDN

The shift() method removes the first element from an array and returns that removed element. This method changes the length of the array.

developer.mozilla.org

 

3. 두 번째 api 테스트 작성 - test

const playerIds = pm.collectionVariables.get("playerIds");

pm.test("Status code is 200", function () {
    pm.response.to.have.status(200);  //6. 현재 요청이 성공인지 우선 확인
});

if(playerIds && playerIds.length > 0){ //collection-var의 array에 데이터가 있는지 확인하고, 있으면
    postman.setNextRequest("get affiliate by asp"); //7. 자기자신을 다시 실행
}else{
    postman.setNextRequest(null); //7. 없으면 끝
}

 

이렇게 두고 테스트하니 아래처럼 첫 번째 api는 1번 두 번째 api는 playerIds array의 크기(여기서는 29)만큼의 루프를 모두 돌아 정상 실행됨을 확인할 수 있었다.

728x90
반응형
반응형

2022.01.03 - [서버 세팅 & tool/vm on mac] - [vm] virtual box centos7 세팅

 

[vm] virtual box centos7 세팅

1. oracle virtual box for mac 설치 2. centos7 iso 받기 https://ftp-srv2.kddilabs.jp/Linux/packages/CentOS/7.9.2009/isos/x86_64/ 참고로 gui 리눅스를 사용하기 위해 풀버전으로 받았음 ​ 3. https://mine..

bangpurin.tistory.com

최소설치 /32기가 /2기가램 으로 진행

vm 을 마련해주고 nginx 설치를 진행한다.

 

참고로 cli로 리눅스를 깔으니 마우스포인터가 없어 복붙이 힘들어.. 맥 터미널로 vm 에 붙어서 작업했다..

vm 서버의 ip를 알기 위해서는 아래 명령어를 입력하면 된다.

ip addr

 

1. nginx repo 추가

sudo vi /etc/yum.repos.d/nginx.repo

//열린 파일에 아래 작성
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1

 

2. nginx 설치

sudo yum install -y nginx

 

3. (옵션)centos에 설치된 모든 라이브러리 업데이트, 자바 설치

sudo yum update -y
sudo yum install java-1.11 ~~

 

4. 방화벽 포트 열기

# 포트 개방
sudo firewall-cmd --permanent --zone=public --add-port=8080/tcp
# 방화벽 재시작
sudo firewall-cmd --reload
# 개방된 포트 목록 확인
sudo firewall-cmd --list-ports

 

5. 서비스 등록 및 시작

sudo systemctl status nginx
sudo systemctl enable nginx
sudo systemctl start nginx
728x90
반응형

+ Recent posts