sudo yum install gitlab-ce "Nothing to Do" when trying to Upgrade to latest version of gitlab - centos

I am trying to update to the latest version of gitlab on my CentOS server. I am currently running Omnibus version 8.3.2, which has a security issue. I am using the instructions from the update page:
sudo yum install gitlab-ce
Whenever I run this command I get a "Nothing to Do" from the Yum command.
Loaded plugins: refresh-packagekit, security, ulninfo
Setting up Install Process
Nothing to do
I have also tried a manual update with a .rpm file and I get conflict errors because it isn't removing the older version. What am I missing in order to upgrade my version? I am new to this so I apologize if I am over complicating things. I really don't want to uninstall and re-install the latest version.
Thanks in advace

Related

How do i update a apt package on github

I have some code on github, and it needs sfml 2.5.1, and i have a github ci set up to compile my code. However, when installing sfml, it installs 2.4.2. I have tried to do sudo apt update, but that doesn't seem to work (cmake says sfml is version 2.4.2)

Upgrading sqlite3 on Centos 7

Does anyone know how to upgrade sqlite3 on Centos7. The repos only have up to version 3.7.
I downloaded the source code and compiled. Replaced binaries. If I type sqlite/sqlite3 --version then it's 3.31.
If I run rails then it's stuck at 3.7.
DNF is stuck on 3.7 too.
I read that Centos7 stays at this version. There's no easy upgrade path to Centos8 without reinstall so trying to avoid that.
Uninstall the package from Centos. Then, do a normal source install of sqlite afterwards.

How do you specify the version of azure-functions-core-tools?

I have an AzureDevOps pipeline which was running fine a few weeks ago. When I tried to run it again, I got an error which apparently is caused by running the latest azure-functions-core-tools. It was suggested to downgrade it but I couldn't find how to do it on Azure CLI.
I tried adding the version to the code below but it didn't work.
sudo apt-get install azure-functions-core-tools=(version I want to use)
Firstly use apt-cache showpkg <package-name> to list available versions.
Then use sudo aptitude install <azure-functions-core-tools>=<version> to install the version.

Mongodb Version mismatch Issue 3.6 to 4.0 upgrade

I have installed the latest version of MongoDB i.e 4.0.10. I am using Ubuntu 18.04.
When i run mongod --version in putty command line i get version 4.0.10
But When i run query in Studio3T db.version(); i get version 3.6.3
I ran dpkg -l | grep mongo and got following output.
Please help me in identifying what i am doing wrong here.
Looks like you have two MongoDBs installed, judging from 3.6.3-0ubuntu1 installed by apt, and 4.0.10 versions there.
The page Install MongoDB Community Edition on Ubuntu stated:
The mongodb package provided by Ubuntu is not maintained by MongoDB Inc. and conflicts with the mongodb-org package. To check if Ubuntu’s mongodb package is installed on the system, run sudo apt list --installed | grep mongodb. You can use sudo apt remove mongodb and sudo apt purge mongodb to remove and purge the mongodb package before attempting this procedure.
The older 3.6.3 appears to be still running in port 27017, thus that was the one connected to by Studio3T.
To ensure a clean installation, it's better to do a clean install by:
Follow the instructions in Uninstall MongoDB Community Edition
Remove 3.6.3 using apt as per the instruction above
Reinstall using the procedure in Install MongoDB Community Edition on Ubuntu.
It's probably not required to uninstall/reinstall everything again, but you don't want to have conflicting leftover files that will create problems down the road.
If you need the data in the old 3.6.3, please do mongodump before uninstalling it. You can subsequently restore it later.

How to correctly install bucardo

I am new to bucardo and I am trying my first install. I have postgresql-9.1 installed.
After installing all dependencies I have downloaded Bucardo-5.1.1.tar file, extract it and sucessfully install it using make according to bucardo site instructions.
The problem starts when I try to launch "bucardo_ctl". The bucardo_ctl script is not installed with bucardo-5.1.1 install script and ubuntu says I need to run "apt-get update bucardo" for installing bucardo_ctl.
The problem is that when I install bucardo from ubuntu repositories, it also installs postgresql-8.4, and bucardo from repository is version 4.
How can I install bucardo_ctl from bucardo-5.1.1?
Thank you very much
Regards
Paulo