Getting below error when trying to config the git repository on Fisheye, can someone help us to find issue?
Error testing connection.
Error talking to repository:
git-remote-https: error while loading shared libraries: libnghttp2-httpd24.so.14: cannot open shared object file: No such file or directory
at com.atlassian.fisheye.git.GitScmConfig.testConnection(GitScmConfig.java:120)
at com.cenqua.fisheye.RepositoryConfig.testConnection(RepositoryConfig.java:390)
at com.atlassian.fisheye.spi.admin.impl.DefaultRepositoryAdminService.testConnectionFor(DefaultRepositoryAdminService.java:964)
at sun.reflect.GeneratedMethodAccessor2299.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
Connection failed.
Sounds like the user that your Fisheye process is running as doesn't have the libnghttp2-httpd24.so.14 library in its LD_LIBRARY_PATH. This could be due to a missing package, which should be resolved by installing the package includes this library. If it's installed, you could locate the directory that the shared library is located in and create an environment variable in the Fisheye user's environment adding it to the path. Something like this:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/library
where "/path/to/library" is the directory that contains libnghttp2-httpd24.so.14
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.