Centos – How to install and setup 389-DS on CentOS 7

389-dscentoscentos7

Setting up Directory Server(389-DS) and Directory Server Admin Console on CentOS 7

Since 389-DS is missing in yum repo of CentOS7 presently and information related it not available. I tried to figure out installation and setup steps to do it are listed in post

Best Answer

389-ds is available in the epel repository, so you can avoid downloading the rpms manually.

wget http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7

wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

sudo rpm --import RPM-GPG-KEY-EPEL-7

sudo yum localinstall epel-release-latest-7.noarch.rpm

sudo yum install 389-ds-base 389-admin

Then follow the steps from the first answer (step 6 - setup-ds-admin.pl )

Related Topic