Fix the post, wrong information inside
This commit is contained in:
parent
dd7a6a0769
commit
5dce0f35b4
1 changed files with 7 additions and 3 deletions
|
@ -60,12 +60,16 @@ Fixing the dependency problem is easy:
|
|||
zypper in apache2-worker
|
||||
{% endhighlight %}
|
||||
|
||||
Then, we'll tackle the configuration issue. Open (as root) `/etc/dirsrv/admin-serv/httpd.conf`, locate and comment out (or delete) the following lines:
|
||||
Then, we'll tackle the configuration issue. Open (as root) `/etc/dirsrv/admin-serv/httpd.conf`, locate and comment out (or delete) the following line:
|
||||
|
||||
{% highlight apache %}
|
||||
LoadModule unixd_module /usr/lib64/apache2/mod_unixd.so
|
||||
{% endhighlight %}
|
||||
|
||||
Then change the `mpm_worker_module` one so that it reads like this:
|
||||
|
||||
{% highlight apache %}
|
||||
LoadModule mpm_worker_module /usr/lib64/apache2/mod_mpm_worker.so
|
||||
[...]
|
||||
LoadModule unixd_module /usr/lib64/apache2/mod_unixd.so
|
||||
{% endhighlight %}
|
||||
|
||||
Save the file and now you'll be able to run `setup-ds-admin.pl` without issues. I won't cover the process here, there are plenty of instructions in the 389 DS documentation.
|
||||
|
|
Reference in a new issue