Basic setup of lab servers

Hi Folks … Just joined KK … I am doing my first docker lab where the requirement is to install docker-ce on the stapp01 server. As per uname -r I can see that it’s an ubuntu server. When I log on to the app server with root, can’t find any package manager like apt-get or wget to get the package manager files. Is this expected behaviour ? How should I install the required software ?

[root@stapp01 ~]# which apt-get
/usr/bin/which: no apt-get in (/root/.local/bin:/root/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin)

Hi @fsa-6th-dimension

All the App servers in KK Engineer labs are provisioned with CentOS stream 9 Linux distribution. Hence, you need to use the yum package manager on those servers.

You can confirm this by running cat /etc/os-release on the app server of your choice.

Regards.

1 Like

Thank you Santhosh. Appreciate a prompt response.