• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Debian 7 + Plesk 12 = issue HTTP/HTTPS on OVH VPS 2014 Cloud

Thaldan

New Pleskian
Hi,

i have somme trouble with plesk 12 on debian 7, after any restart of my vps, the HTTP/HTTPS service are down, all my manage website are not accessible. The only solution i have found is to log in SSH et use the command "/usr/local/psa/admin/sbin/httpdmng --reconfigure-all" for any server reboot.

Same issue with a clean debian install + fresh plesk 12 install and clean debian install + fresh plesk 11.5 install and upgrade to plesk 12

Any permanent solution?

Thx

PS: sorry for my bad english
 
Need more details. Error logs, results of troubleshooting, etc.
 
Same issues after restart the serveur the HTTP/HTTPS service are down on my OVH VPS panel and no acces to any website host on the serveur until i use the command "/usr/local/psa/admin/sbin/httpdmng --reconfigure-all"

Capture.PNG
 

Attachments

  • apache2_error_2.txt
    4.4 KB · Views: 7
  • nginx_error_2.txt
    234 bytes · Views: 2
For temporary fix i create a boot script for run the command "/usr/local/psa/admin/sbin/httpdmng --reconfigure-all" at boot

#! /bin/sh

### BEGIN INIT INFO
# Provides: httpdmng
# Required-Start: $all
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: httpdmng
# Description: Reconfiguring of HTTPD services
### END INIT INFO

# Carry out specific functions when asked to by the system
case "$1" in
start)
echo "Starting reconfiguring of HTTPD services "

/usr/local/psa/admin/sbin/httpdmng --reconfigure-all

;;
stop)

;;
*)
echo "Usage: /etc/init.d/psafix {start}"
exit 1
;;
esac

exit 0

I hope an update for have a cleaner way to fix it :)
 
I've got the same problem. I have a OVH's VPS Classic, everything worked fine till Friday evening when http and https services unexpectedly went down. Unfortunately in my case "/usr/local/psa/admin/sbin/httpdmng --reconfigure-all" didn't help, all the time I also keep trying to restart both services but so far with no success.
 
I've got the same problem. I have a OVH's VPS Classic, everything worked fine till Friday evening when http and https services unexpectedly went down. Unfortunately in my case "/usr/local/psa/admin/sbin/httpdmng --reconfigure-all" didn't help, all the time I also keep trying to restart both services but so far with no success.

Maybe this can help: try restarting the Inverse proxy service (nginx) using Plesk under Server -> Services.

I think that this last update (#MU65) while fixing issues with nginx for other caused some problems.
[-] The /etc/sysconfig/nginx file was empty and Ngingx stopped after Nginx update. (PPPM-3281)

Check the DB as some connetcions may be damaged :)

Have a nice day,

Wulpi
 
Back
Top