> For the complete documentation index, see [llms.txt](https://docs.roboflow.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.roboflow.com/roboflow/roboflow-ko/deploy/enterprise-deployment/license-server.md).

# License Server(사용 중단)

{% hint style="warning" %}
License Server는 더 이상 사용되지 않습니다. 새로운 배포에서는 다음을 사용해야 합니다 [Secure Gateway](broken://pages/c71d3a9e72e6c46ddc28836629e2ce12c8b65f1d), 그 후속 제품으로, 모델 가중치와 컨테이너 이미지를 로컬 캐싱하는 기능이 추가됩니다.
{% endhint %}

<figure><img src="/files/556ccc415f63a4608d2b79ba0ee8d6160ffe6d95" alt=""><figcaption><p>Roboflow API의 프록시로 License Server를 사용합니다.</p></figcaption></figure>

## 사전 요구 사항

* Ubuntu 20.04+ 또는 Debian 11+가 실행 중인 Linux 서버
* api.roboflow\.com 및 repo.roboflow\.com에 대한 인터넷 액세스
* 고정 IP 주소 또는 호스트 이름
* 포트 80 사용 가능(또는 사용자 지정 포트)
* Docker Engine 20.10+
* 200GB+ 저장 공간
* 4GB+ 메모리

## License Server 사용

Roboflow Inference Server를 인터넷으로부터 방화벽으로 차단하려면, Roboflow API와 모델 가중치의 프록시 역할을 하는 Roboflow License Server를 사용해야 합니다.

다음에 액세스할 수 있는 머신에서 `https://api.roboflow.com` 및 `https://repo.roboflow.com` (및 포트 `80` 가 비공개 네트워크에서 실행 중인 Inference Server에 대해 열려 있어야 합니다), License Server Docker 컨테이너를 가져옵니다:

```
docker pull repo.roboflow.com/roboflow/license-server
```

그리고 실행합니다:

```
docker run -d --name license-server -p 80:80 --restart unless-stopped \
    repo.roboflow.com/roboflow/license-server:latest
```

다음에 IP를 전달하여 Inference Server가 이 License Server를 사용하도록 구성합니다: `LICENSE_SERVER` 환경 변수:

```
sudo docker run --net=host --env LICENSE_SERVER=10.0.1.1 roboflow/inference-server:cpu
```

## Device Manager를 통한 구성

장치를 다음을 통해 관리하는 경우 [Device Manager](/roboflow/roboflow-ko/deploy/device-manager.md), 각 장치의 inference service에 대한 Configuration 탭에서 License Server 주소를 직접 설정할 수 있습니다.

License Server 주소를 입력하면 `API_BASE_URL` 가 자동으로 다음으로 설정됩니다: `https://api.roboflow.com`. 이를 통해 License Server에 요청을 프록시할 업스트림이 제공되며, 다음 두 항목이 모두 `LICENSE_SERVER` 및 `API_BASE_URL` 동일한 온프레미스 주소를 가리키는 잘못된 구성을 방지합니다(이는 재귀 프록시 루프를 유발합니다).

License Server 필드를 지워도 다음은 제거되지 않습니다 `API_BASE_URL`, 따라서 기존 구성은 영향을 받지 않습니다.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.roboflow.com/roboflow/roboflow-ko/deploy/enterprise-deployment/license-server.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
