install hipchat in ubuntu 16.04
how to install hipchat in ubuntu 16.04
Upgraded to ubuntu 16.04? chances are high that you have already faced problem while trying to install hipchat as steps listed in official site is of no help.
The script below will help you install older version of hipchat(i.e 2.2.1).
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 hipchatIn case you want to install latest version, you may install hipchat4 but it won’t even remember your credentials once you quit. To install hipchat4 you need to run following script:
wget https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-4.0.1517-Linux.deb
sudo dpkg -i HipChat4-4.0.1517-Linux.debReferences:
- <a href=https://gist.github.com/stephou0104/4a4f83d6d973a1999a76 rel=“nofollow” target=“_blank”>https://gist.github.com/stephou0104/4a4f83d6d973a1999a76
- <a href=http://askubuntu.com/questions/763391/how-do-i-install-hipchat-on-ubuntu-16-04 rel=“nofollow” target=“_blank”>http://askubuntu.com/questions/763391/how-do-i-install-hipchat-on-ubuntu-16-04
Keep reading
Fix mise GitHub Rate Limit with a Token
mise makes unauthenticated GitHub API calls by default. When you hit the rate limit installing tools, a personal access token (no scopes required) fixes it permanently.
How to solve Deployment Failure-`assets:precompile`
I was trying to deploy rails 6 app on ec2 server using capistrano when precompile failure lead to whole deploymentt failure. I had to uninstall cmdtest and install yarn
How to Sort an Array of Objects in JavaScript
How to Sort an Array of Objects in JavaScript
What did you take away?
Thoughts, pushback, or a story of your own? Drop a reply below — I read every one.
Comments are powered by Disqus. By posting you agree to their terms.