Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Installing on Ubuntu 18.04

Yosi Zargari April 22, 2018

Hello,

Are you guys planning on adding a release file for your hipchat Ubuntu repository for bionic (18.04)?

At the moment, following your instructions results in an error:

E: The repository 'https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.

8 answers

6 votes
Caleb Ott May 2, 2018

I am having the same issue. I can't install on Ubuntu 18.04.

Phillip Stromberg May 2, 2018

If you're following the instructions on the downloads page, open your /etc/apt/sources.list.d/atlassian-hipchat4.list file and change bionic to xenial

sudo apt-get update && sudo apt-get install hipchat4

then create the symlinks @Matt Sweeney posted in his comment above.

This got me working on 18.04 64-bit desktop.

Caleb Ott May 2, 2018

Phillip,  Thank you this worked for me too!

Paulius May 10, 2018

Philip and others, thanks!

This is all I have been using to successfully start HipChat4:

Like I Inocentes likes this
Ming Jiang May 17, 2018

This one works :)

David Pineau May 18, 2018

Same here, I was missing the link "libssl.so" for hipchat to work with the Xenial version on the Bionic distribution :)

 

Thanks for pointing that one out,  sugalvojau !

Richard L. Scott May 18, 2018

Worked for me as well, although the 4th from the last step did not work.  Nevertheless, I'm up and running on Kubuntu 18.04.  Thanks.

ndf14685 July 4, 2018

Phillips, Thansk a lot

I Inocentes November 14, 2018

Thanks sugalvojau NA

Aswini Padala December 11, 2018

Thanks a lot Phillip

6 votes
Matt Cotter April 27, 2018

Run these commands to create new symlinks an you should be fine.

sudo rm /opt/HipChat4/lib/libcrypto.so*

sudo ln -s /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /opt/HipChat4/lib/libcrypto.so.1.0.0

sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /opt/HipChat4/lib/libssl.so.1.0.0

Yosi Zargari April 29, 2018

The original problem was not being able to install due to missing release file. One of my attempts was to change the release in the apt source file to artful and while it did install successfully and the HipChat client started alright, I couldn't login.

Your suggestion here helped me solve that problem, but the release file is still missing AFAIK. Thanks for your helpful comment, though!

Eric_Schildkamp May 3, 2018

Thanks alot @Matt Sweeney

georg_tavonius May 4, 2018

I can't install it as well, and for me this does not work because all the files you remove and symlink don't exist.

 

So does anyone have gotton the installation to work yet?

Nazar Babyniuk May 15, 2018

Provided instructions worked for me,  thank you@Matt Sweeney

magnusthor May 16, 2018

If I haven't installed HipChat yet because:

$ sudo apt-get update
Hit:1 http://se.archive.ubuntu.com/ubuntu bionic InRelease
Hit:2 http://se.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:3 http://se.archive.ubuntu.com/ubuntu bionic-backports InRelease
Hit:4 http://security.ubuntu.com/ubuntu bionic-security InRelease
Ign:5 https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic InRelease
Err:6 https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic Release
404 Not Found [IP: 52.86.11.106 443]
Reading package lists... Done
E: The repository 'https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

then I cannot create symlinks to the non existent files:

$ sudo rm /opt/HipChat4/lib/libcrypto.so*
rm: cannot remove '/opt/HipChat4/lib/libcrypto.so*': No such file or directory
$ sudo ln -s /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /opt/HipChat4/lib/libcrypto.so.1.0.0
ln: failed to create symbolic link '/opt/HipChat4/lib/libcrypto.so.1.0.0': No such file or directory
$ sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /opt/HipChat4/lib/libssl.so.1.0.0
ln: failed to create symbolic link '/opt/HipChat4/lib/libssl.so.1.0.0': No such file or directory

 How do we get passed this?

Like gruenebohne likes this
MANGESH DHULAP June 20, 2019

How to install Hipchat Client Atlassian Hipchat in Ubuntu 18.04 — A Best Instant Messenger App for Linux

Follow the below steps to install Hipchat Client Atlassian Hipchat in Ubuntu 18.04 — A Best Instant Messenger App for Linux:
mangesh@itsmarttricks:~$ wget https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-4.0.1517-Linux.deb
mangesh@itsmarttricks:~$ sudo dpkg -i HipChat4-4.0.1517-Linux.deb

Read More https://www.itsmarttricks.com/how-to-install-hipchat-client-atlassian-hipchat-in-ubuntu-18-04/

1 vote
Abukamel May 22, 2018
sudo sh -c 'echo "deb https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client stretch 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
sudo ln -s /usr/lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /opt/HipChat4/lib/libcrypto.so.1.0.0
sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /opt/HipChat4/lib/libssl.so.1.0.0
sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /opt/HipChat4/lib/libssl.so

 

Richard Reijmers June 4, 2018

Works for me!

Peter Sjöqvist July 11, 2018

@Abukamel Could you add the following to the script you posted:

sudo ln -s /usr/lib/x86_64-linux-gnu/libssl.so.1.0.0 /opt/HipChat4/lib/libssl.so


That made it finally work for me :)

Thanks to everyone who contributed to solving this!

Abukamel July 11, 2018

Done

1 vote
Dan_Halbert May 16, 2018

There appear to be two issues here:

1. There is no Releases file for bionic. I fixed that for now by replacing "bionic" with "xenial" in /etc/apt/sources.list.d/atlassian-hipchat4.list. Then I did "sudo apt update; sudo apt install hipchat4".

2. After installing, the hipchat4 executable doesn't connect. That's fixable by following the "ln" instructions above, or in this issue: https://jira.atlassian.com/browse/HCPUB-6249.

I got things running by doing both of the above (after having uninstalled hipchat4 during my upgrade from 16.04 to 18.04).

1 vote
Vasil Kanev April 27, 2018

Same problem here:

Ign:5 https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic InRelease
Err:6 https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic Release
404 Not Found [IP: 54.164.30.90 443]
Reading package lists... Done
E: The repository 'https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client bionic Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.

0 votes
Richard Reijmers May 18, 2018
Perhaps Atlassian staff can elaborate on when they'll have a bionic/snap/flat package available?

Edit: I see op questioned that already, but of course this is community driven, so no Atlassian staff @here..

Also https://jira.atlassian.com/browse/HCPUB-2070 seems related, it has my vote!
0 votes
georg_tavonius May 4, 2018

I found a solution to this, that wors for me, instead of the suggested

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'

I just use the release for stretch. That works also with the bionic beaver. So I do this instead:

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

Stefan Rijnhart May 6, 2018

Thanks Georg, but that version has the same missing symbols as the Xenial one.

After applying Matt Sweeney's symlinks I still had the missing symbols, but googling the exact error took me to https://github.com/wkhtmltopdf/wkhtmltopdf/issues/3001 where someone points out that in Debian based distributions, the symbols are only available when libssl-dev is installed. That got Hipchat4 running for me on Ubuntu 18.04

Richard Reijmers May 7, 2018

The stretch package is not working for me on Bionic, keeps asking me for the URL.

Mark Foster April 22, 2019

There is a typo above. it's "stretch" not "stetch"

Like Richard Reijmers likes this
0 votes
Bruno Raymundo
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 23, 2018

Hi, Yosi!

This is related to a known issue, recently reported. Please check and follow for updates:

HCPUB-6379

Yosi Zargari April 25, 2018

Are you sure this is the same thing? The ticket seems to be about the yum repo while I'm referring to to Ubuntu Bionic apt repo...

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events