• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Apache issues after upgrade

Looks like after the upgrade of Apache, it uses default port 80.
But it is not valid configuration for enabled nginx proxy.
Try:
/usr/local/psa/admin/bin/nginxmng --disable
/usr/local/psa/admin/bin/nginxmng --enable

Check Apache has config /etc/apache2/conf.d/zz010_psa_httpd.conf
There should be no virtual host listen to 80 port: grep -R 'VirtualHost.*:80' /etc/apache2/
 
I get the following error in the configuration tab:

/opt/psa/admin/conf/generated/13680025320.67376500_nginx.conf

File Content:

server {
listen 192.168.201.6:80 ;
listen 80.176.171.242:80 ;

location / {
proxy_pass http://127.0.0.1:7080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
 
Looks like after the upgrade of Apache, it uses default port 80.
But it is not valid configuration for enabled nginx proxy.
Try:
/usr/local/psa/admin/bin/nginxmng --disable
/usr/local/psa/admin/bin/nginxmng --enable

Check Apache has config /etc/apache2/conf.d/zz010_psa_httpd.conf
There should be no virtual host listen to 80 port: grep -R 'VirtualHost.*:80' /etc/apache2/

sudo /usr/local/psa/admin/bin/nginxmng --disable
2013-05-20T10:43:52+00:00 ERR (3): Apache config (13690466310.63295000) generation failed: nginx: [emerg] bind() to 80.176.171.242:80 failed (99: Cannot assign requested address)
nginx: configuration file /etc/nginx/nginx.conf test failed

/opt/psa/admin/sbin/hmmng: 1448: /opt/psa/admin/sbin/hmmng: Syntax error: Bad fd number
 
Looks like after the upgrade of Apache, it uses default port 80.
But it is not valid configuration for enabled nginx proxy.
Try:
/usr/local/psa/admin/bin/nginxmng --disable
/usr/local/psa/admin/bin/nginxmng --enable

Check Apache has config /etc/apache2/conf.d/zz010_psa_httpd.conf
There should be no virtual host listen to 80 port: grep -R 'VirtualHost.*:80' /etc/apache2/

sudo grep -R 'VirtualHost.*:80' /etc/apache2/
/etc/apache2/ports.conf:NameVirtualHost *:80
/etc/apache2/sites-available/default:<VirtualHost *:80>
/etc/apache2/sites-enabled/000-default:<VirtualHost *:80>
 
Back
Top