2

I am trying to install freeipa-server on ubuntu but not getting it installed as i am getting below error:

sudo apt-get install freeipa-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package freeipa-server

I have tried it on ubuntu 14.04 and also on ubuntu 16.04 but no luck. freeipa-client gets installed fine but not freeipa-server. Any idea how can i get this resolved?

Many Thanks, Deepak

Deepak Prasad
  • 435
  • 2
  • 8
  • 18
  • As an alternative I would suggest docker edition of freeipa server. https://www.freeipa.org/page/Docker – haltunbay Sep 25 '20 at 14:42

1 Answers1

1

The package seems to be available for 16.04 only. It's in universe, so please make sure you have it marked under "Software & Updates" and run sudo apt update.

To add the repository you can also edit /etc/apt/sources.list or invoke:

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
wrwrwr
  • 1,008
  • 2
  • 11
  • 19