Ubuntu 16.04에 hipchat을 어떻게 설치합니까?

Ubuntu 16.04에 hipchat을 어떻게 설치합니까?

적절한 소스에 저장소를 추가하고 실행할 때 다음 오류가 발생합니다 apt update.

E: Failed to fetch https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/dists/xenial/Release  No Hash entry in Release file /var/lib/apt/lists/partial/atlassian.artifactoryonline.com_atlassian_hipchat-apt-client_dists_xenial_Release which is considered strong enough for security purposes
E: Some index files failed to download. They have been ignored, or old ones used instead.

패키지 서명의 보안 변경 때문이라는 것을 알고 있으며 Atlassian에 지원 티켓을 열었지만 답변을 받지 못했습니다.

그동안 해결 방법이 있나요?

답변1

Atlassian이 저장소를 수정하기 전까지는 다음을 다운로드할 수 있습니다.deb 파일dpkg를 사용하여 다음을 설치합니다.

    wget https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-4.0.1517-Linux.deb
    sudo dpkg -i HipChat4-4.0.1517-Linux.deb

답변2

sudo sh -c 'echo "deb https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client $(lsb_release -c -s) main" > /etc/apt/sources.list.d/atlassian-hipchat4.list'

wget -O - https://atlassian.artifactoryonline.com/atlassian/api/gpg/key/public | sudo apt-key add -

sudo apt-get update

sudo apt-get install hipchat4 

관련 정보