Need download link for gitlab package for Redhat CentOS 7 - download

The server on which i wish to install gitlab is unable to download the gitlab package as shown below.
# curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh
curl: (6) Could not resolve host: packages.gitlab.com; Unknown error
Can you please help with some solution and especially an alternate link where i can download the package from web browser.
I will then upload the installer to my server and then install it in offline mode.

The GitLab Documentation has instructions on manual install, which includes a where to download.
For the Community edition, you can find the list of packages here: https://packages.gitlab.com/gitlab/gitlab-ce

Related

Download chocolatey packages with dependencies but install it later

I´ve got a question about the package installation manager 'chocolatey'. The use case is that I want to download packages from a feed (hosted on azure devOps) including dependencies and save them somewhere on my computer. So I could install these packages later from a local source.
Is it possible to do so? If yes how can I do this
Thanks for your effort! For Further questions don't hesitate to comment my question
Steps 1:
Download artifact from the Azure DevOps feed and save it on the computer.
1. Open power shell and login DevOps via the code az login
2. Please refer to this doc and run the code to download the artifact from the Azure DevOps feed.
az artifacts universal download --organization https://dev.azure.com/{org} --feed feed name --name package name --version verion ID --path .
Step 2:
In this step, you can call chocolatey-install-package command to achieve installing local package. Just run this script in command line task.

NSIS: Access https site in ExecDos

I'm trying to create an installer for a python based scientific application. We use Anaconda as a python distribution and I found https://github.com/faph/NSIS-Conda-Macros to help me setup an installer for conda packages.
However, downloading the miniconda installer failed. I was able to solve that with the help of:
Download of file during NSIS installer run freezes at "connecting"
But I found no way to make the updating of packages work. They use:
ExecDos::exec /DETAILED '"$CONDA" update -y -q conda' "" ""
conda then tries to connect over https to get the most recent packages from their server. The connection always times out. When i run the same code directly in cmd it runs fine.
So my question:
Is it even possible to access https in ExecDos::exec? Does anyone have an idea to work-around the issue?

"No valid url specified" when trying to install Kibana's Sense plugin

I'm trying to install the Sense plugin as specified in ElasticSearch getting started guide, like this:
./bin/kibana plugin --install elastic/sense
However that command seems outdated and the only one that seems possible is this:
./bin/kibana-plugin install elastic/sense
But it doesn't work:
Attempting to transfer from elastic/sense
Attempting to transfer from https://artifacts.elastic.co/downloads/kibana-plugins/elastic/sense/elastic/sense-5.0.1.zip
Plugin installation was unsuccessful due to error "No valid url specified."
I tried to install it by downloading it locally from here: https://download.elasticsearch.org/elasticsearch/sense/sense-2.0.0-beta7.tar.gz
And then running:
./bin/kibana-plugin install file:<PATH_TO_sense-2.0.0-beta7.tar>
But I get this error:
Attempting to transfer from file:/Users/raquelalegre/workspace/ORACC/p4-search-tool/kibana-5.0.1-darwin-x86_64/sense-2.0.0-beta7.tar
Transferring 6363648 bytes....................
Transfer complete
Retrieving metadata from plugin archive
Error: Could not find the End of Central Directory Record
Plugin installation was unsuccessful due to error "Error retrieving metadata from plugin archive"
I'm stuck and can't find how to install this :( Any help would be really appreciated!
It seems that Sense plugin isn’t necessary because Kibana (for sure 5.0.1) is shipped with console available from DevTools menu.
If Kibana is installed locally open http://localhost:5601 and choose “DevTools” from the left menu.
bin/kibana plugin --install sense --url file:///<path of sense plugin>/sense-2.0.0-beta7.tar.gz
Above command works for me with out issues.
Seems, when you are installing locally by downloading complete file was not downloaded.
plz check on that.
The second floor is correct .
I also have this problem. There are many huge differents among different versions . Under the version 5.4.1 even the
kibana plugin --install elastic/sense
is deprecated.
If you want install a plugin for kibana, need use the following command
./bin/kibana-plugin install "plugin name "
And the sense plugin has integrated in kibana dev tools

How to install and configure Apache Ambari on RHEL without internet connection

How to install and configure Apache Ambari on RHEL without internet connection?? I can copy the files to this server from my local machine which has internet connection
You can follow these docs:
http://docs.hortonworks.com/HDPDocuments/Ambari-1.6.1.0/bk_using_Ambari_book/content/ambari-chap1.html
Specifically, installing Ambari and the Stack using Local Repositories is covered here:
http://docs.hortonworks.com/HDPDocuments/Ambari-1.6.1.0/bk_using_Ambari_book/content/ambari-chap1-6.html
Step-1 Download tar file using this below link
Here's a link!
you will get ambari setup using (http://public-repo-1.hortonworks.com/ambari/centos7/2.x/updates/2.6.1.5/ambari-2.6.1.5-centos7.tar.gz)
Step-2 Download 4 RPM dependency about postgres92 which will need during installation .
first of all install these RPM at a time using command rpm -ivf
These name are:-
1. postgresql92-postgresql9.2.18-1.el7.x86_64.rpm
Here's a link!
2. postgresql92-postgresql-libs-9.2.18-1.el7.x86_64.rpm*
Here's a link!
3. postgresql92-postgresql-server-9.2.18-1.el7.x86_64.rpm*
Here's a link!
4. postgresql92-postgresql-runtime-9.2.18-1.el7.x86_64.rpm
Here's a link!
Note: install all 4 above RPM then .... follow below steps
Step-3 go to ambari-server.rpm folder and install it
command: yum install ambari-server.rpm
Step-4 now, start command: ambari-servet setup
and chose you all option below whatever will come after this command .
make sure that while doing all above things you will have to be a root user
Thanks hope it will work fine

cabal: Failed to download, ErrorMisc "Error HTTP code: 407"

Windows 7 x64 SP1 Russian, Virtual machine (VMware) are located on server.
I installed the Haskell from official site yesterday. But I have a problem when I start the command: cabal update. Error message:
C:\Users\admin>cabal update Downloading the latest package list from
hackage.haskell.org cabal: Failed to download
http://hackage.haskell.org/packages/archive/00-index.tar.gz :
ErrorMisc "Error HTTP code: 407"
Internet access is exists. The command ran under admin profile. How can I to correct this issue?
P.S. When I did the same on my home notebook - all worked fine, without this message.
Http status code 407 means "Proxy authentication required". So it seems to be local issue with proxy configuration.
See also: cabal can't use http proxy
Add: cabal uses fetchProxy from HTTP package, it should read IE proxy config.
I don't use windows, so I have no idea what can be wrong. You can try to call fetchProxy manually and see what it returns. If it returns correct value, then open issue on cabal tracker. Otherwise, open issue in HTTP package tracker.

Resources