페이지 트리

Freshdesk와 AI 챗봇 기반 고객지원 웨비나

안녕하세요. 카카오, 라인 등 다양한 채널로 고객문의를 통합하고 관리하는 Freshdesk와 AI 챗봇을 소개 웨비나를 진행합니다.
2024년 4월 18일 (목) 16:00 팀즈웨비나


이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

« 이전 버전 3 현재 »

이 페이지는 Artifactory의 파일 저장 위치 변경 방법을 정리한다.

설정 파일 확인

RPM으로 설치한 경우

/var/opt/jfrog/artifactory/etc/binarystore.xml

Standalone (zip)으로 설치한 경우

<Artifactory Install Dir>/etc/binarystore.xml

저장소 위치 변경

(경고) 설정 변경 전 Artifactory 서비스를 중지한다.

/data/binaries/filestore 로 변경하는 경우
<config version="v1">
    <chain template="file-system">                                <!-- Use the "file-system" template -->
    </chain>
    <provider id="file-system" type="file-system">                    <!-- Modify the "file-system" binary provider -->
            <fileStoreDir>/data/binaries</fileStoreDir>        <!-- Override the <fileStoreDir> attribute -->
    </provider>
</config>
  • 레이블 없음