Documentation for Axxon One 2.0. Documentation for other versions of Axxon One is [available too].

Previous page Linux OS에서 기본 DetectorPack에 애드온 설치  Axxon One 컨테이너 작업 Next page

Docker를 사용하여 Axxon One Server를 시작하려면 다음을 수행하세요.

  1. Docker 설치:
      1. Prepare the environment:
        1. Install the packages to use the repository via HTTPS.

          sudo apt-get install apt-transport-https ca-certificates curl gnupg2 software-properties-common
        2. Add official Docker GPG key.

          curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
          sudo apt-key fingerprint 0EBFCD88
        3. Configure the repository:
          1. for the x86_64 / amd64 architecture:

            • Debian:

              sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
            • Ubuntu:

              sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
          2. for the armhf architecture:

            • Debian:

              sudo add-apt-repository "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
            • Ubuntu:

              sudo add-apt-repository "deb [arch=armhf] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
        4. Update the lists of packages:

          sudo apt-get update
      2. Install and configure the Docker:

        1. Install docker-ce.

          sudo apt-get install docker-ce docker-compose
        2. Add a user to the Docker.

          sudo adduser docker
        3. Install git and the envsubst utility using the command:

          sudo apt-get install git gettext binutils

      Note

      Ubuntu에서 Docker를 사용하여 Axxon One 시작하기 위한 최소 요구 사항:

      • Dual core processor
      • 4 GB RAM
      • 200 GB HDD
      1. Prepare the environment:
        1. Install the packages and set up the repository:

          sudo dnf -y install dnf-plugins-core
          sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo

           

        2. Refresh metadata cache:

          dnf makecache

           

      2. Install and configure the Docker:
        1. Install Docker with additional packages:

          dnf -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin docker-compose
        2. Install git and the envsubst utility using the command:

          dnf install git gettext binutils

           

    • 다른 배포 패키지: https://docs.docker.com/engine/install/. 
  2. Axxon One 저장소를 연결합니다. 이를 위해 다음을 수행합니다.
    1. 컨테이너가 위치할 디렉토리로 이동합니다.

      cd /home/%username

      여기서 %username은 컨테이너가 위치할 사용자 이름입니다.

    2. axxonnext.docker 저장소를 복제합니다.

      git clone https://src.axxonsoft.dev/bitbucket/scm/one/axxonnext.docker.git

      Attention!

      " 서버 인증서 검증에 실패했습니다" 오류가 발생하는 경우, 터미널에서 다음 명령을 실행하세요.

      export GIT_SSL_NO_VERIFY=1
    3. 복제된 저장소 파일을 업데이트합니다.
      1. axxonnext.docker 폴더로 이동합니다.

        cd /home/%username/axxonnext.docker/

        여기서 %username은 컨테이너가 생성될 사용자 이름입니다.

      2. git 저장소의 내용을 다운로드하세요.

        git pull

         

  3. Axxon One 컨테이너를 만듭니다.  Axxon One 컨테이너를 만들려면 다음을 수행합니다.
    1. Axxon One의 deb 패키지, Detector Pack 및 Driver Pack을 /home/%username/axxonnext.docker/server/build/ 폴더로 복사합니다.

      mv /home/user/Downloads/axxon-* /home/axxonnext.docker/server/build/ 
    2. axxonnext.docker/server 폴더로 이동합니다.

      cd /home/%username/axxonnext.docker/server
    3. 다음 명령을 실행합니다.

      ./axxon-one.sh build

      Axxon One 컨테이너 어셈블리가 시작됩니다.

    4. 작업이 완료된 후 어셈블리  컨테이너 목록을 보려면 다음 명령을 실행하세요.

      ./axxon-one.sh list

Docker를 사용한 Axxon One  Server 출시가 완료되었습니다.

  • No labels