Skip to content

Instantly share code, notes, and snippets.

@stephanetimmermans
Created July 3, 2014 09:29
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stephanetimmermans/4a4f83d6d973a1999a76 to your computer and use it in GitHub Desktop.
Save stephanetimmermans/4a4f83d6d973a1999a76 to your computer and use it in GitHub Desktop.
Install hipChat on Ubuntu 14.04
sudo su
echo "deb http://downloads.hipchat.com/linux/apt stable main" > \ /etc/apt/sources.list.d/atlassian-hipchat.list
wget -O - https://www.hipchat.com/keys/hipchat-linux.key | apt-key add -
apt-get update
apt-get install hipchat
@grubernaut
Copy link

Line 2 should be:

echo "deb http://downloads.hipchat.com/linux/apt stable main" > /etc/apt/sources.list.d/atlassian-hipchat.list

And it will work perfectly. You only need the \ character when splitting multiple lines.

@abhinavkumar940
Copy link

I can confirm that it works like a breeze. I just tried it on Ubuntu 12 and it's up and running!

@alexandru-calinoiu
Copy link

I get

Cannot write to ‘-’ (Success).

When running:

 wget -O - https://www.hipchat.com/keys/hipchat-linux.key | apt-key add -

@saravananNV
Copy link

how to launch hipchat via terminal

@molavec
Copy link

molavec commented Dec 23, 2015

I have same issue than @alexandru-calinoiu. I activated root user:

http://askubuntu.com/questions/44418/how-to-enable-root-login

Any another way to avoid activate it?

@canh-nguyen-cr
Copy link

Following this instruction, I installed it successfully on Ubuntu 14.04:
https://www.hipchat.com/downloads
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

@jasonzhang2022
Copy link

Failed with this error message
W: Failed to fetch https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/dists/precise/main/binary-amd64/Packages

W: Failed to fetch https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/dists/precise/main/binary-i386/Packages

E: Some index files failed to download. They have been ignored, or old ones used instead.

The URL is not correct!

@wlk
Copy link

wlk commented Jan 12, 2017

Official instructions are here: https://www.hipchat.com/downloads

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment