-2

i have installed ldap and phpldapadmin 3 weeks ago and everything was good. yesterday i wanted to configure web server, so the web server works fine, and the command

service apache2 restart 

it gives as result :

 * Restarting web server apache2                                         [ OK ] 

but when i check the file /var/log/apache2/error.log i get :

[Mon Jan 09 23:07:56.392253 2017] [mpm_event:notice] [pid 10447:tid 3074607744] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Mon Jan 09 23:07:56.392355 2017] [core:notice] [pid 10447:tid 3074607744] AH00094: Command line: '/usr/sbin/apache2'

when this result appears in this file, i could not be able any more to access to my_IP_address/phpldapadmin, it gives as result "The requested URL /phpldapadmin/ was not found on this server. "

Also:

$ service apache2 status
* apache2 is running

$ pgrep apache
10642
10645
10646

$ telnet localhost 80
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.

$ ps -A | grep 'apache2'
 10642 ?        00:00:00 apache2
 10645 ?        00:00:00 apache2
 10646 ?        00:00:00 apache2

so any help ?

2 Answers2

0

Apache seems working fine as other said. I suggest you to check permissions about the folder where phpmyadmin is stored. Check also if DocumentRoot or path where phpmyadmin is configured is really accessible.

Try create a new site where save a index.html file with "Hello" inside and try to provide it throw apache.

0

That means your apache service is started, running, and working properly. Check the location where you installed phpldapadmin, it should be in "DocumentRoot" that you mentioned in http.conf file, or else create link to this path, then restart the apache service.

Manoj K
  • 77