I m trying to install Harbor 2.4.1 on a CentOS 7 host.
I have already installed docker and docker-compose.
But wenn I try to run ./install.sh to instal harbor I get the message
[grafra1969@docker-registry harbor]$ sudo ./install.sh --with-notary --with-trivy --with-chartmuseum
[Step 0]: checking if docker is installed ...
Note: docker version: 20.10.12
[Step 1]: checking docker-compose is installed ...
✖ Need to install docker-compose(1.18.0+) by yourself first and run this script again.
[grafra1969@docker-registry harbor]$ ls ..
certs harbor harbor-online-installer-v2.4.1.tgz harbor-online-installer-v2.4.1.tgz.asc
Docker and docker-compose are available. What is the problem?
[grafra1969@docker-registry harbor]$ docker version
Client: Docker Engine - Community
Version: 20.10.12
API version: 1.41
Go version: go1.16.12
Git commit: e91ed57
Built: Mon Dec 13 11:45:41 2021
OS/Arch: linux/amd64
Context: default
Experimental: true
Server: Docker Engine - Community
Engine:
Version: 20.10.12
API version: 1.41 (minimum version 1.12)
Go version: go1.16.12
Git commit: 459d0df
Built: Mon Dec 13 11:44:05 2021
OS/Arch: linux/amd64
Experimental: true
containerd:
Version: 1.4.12
GitCommit: 7b11cfaabd73bb80907dd23182b9347b4245eb5d
runc:
Version: 1.0.2
GitCommit: v1.0.2-0-g52b36a2
docker-init:
Version: 0.19.0
GitCommit: de40ad0
[grafra1969@docker-registry harbor]$
2
Answers
My Problem was caused by the fact that I installed docker-compose in /usr/local/bin. I assumed this would be a good location, since it was in the PATH of my user and in the PATH of user root. However I did not consider, that sudo uses a different PATH. This secure path is configured in /etc/sudoers and does not contain /usr/local/bin. So I deceided to move the docker-compose script to /usr/bin and the installer worded fine.
this is a bug/issue with the composer installation, I just had the same problem and managed to fix it by running:
and then to prevent the installer from overwriting the symlink you just created you will need to remove the docker and docker-compose installation from the installer.
You should have a sh file that looks something like this:
After all of this you can check if you have docker and docker-compose installed by running them with no commands and if they are indeed installed you can now run the new installer sh file.
Also, add yourself to the docker group using
sudo usermod -a -G docker <YOUR_USER>
just to make sure that’s not the issue.For more info on this problem check Github