• 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.

Issue Ip addresses registered in plesk are missing from the server´s network interfaces

oizo

New Pleskian
Hi ALL

I have a Virtual server in IONOS, and just today after reboot it shows the error in the startup, something related with the interfaces . at the first of all i checked the journalctl and it shows an error related to nginx and i launched the folowing commands (nginxmng -d) and (nginxmng -e) and nginx started aganin, but still the error in the picture attached.

ip address not found onthe interface(s): 82.165.2.225 and then when it tried to repair web server config for all domains it shows this error (one or more IP addresses registered in plesk (82.165.2.225) are missing from the server´s network interfaces.

i dont know how to add the ip to the network interfaces.

the conntent of Interfaces file is:

source /etc/network/interfaces.d/*
#The loopback network interface
auto lo ens192

ahh, i launched the command plesk bin ipmanage --reread also and finally i tried plesk repair installation, but nothing works.

Thanks a lot in advance
 

Attachments

  • Captura de pantalla 2022-02-22 013705.png
    Captura de pantalla 2022-02-22 013705.png
    99 KB · Views: 21
  • Captura de pantalla 2022-02-22 013729.png
    Captura de pantalla 2022-02-22 013729.png
    135 KB · Views: 19
  • Captura de pantalla 2022-02-22 013855.png
    Captura de pantalla 2022-02-22 013855.png
    79.5 KB · Views: 17
Hi Oizo,
Your /etc/network/interfaces.d/* file should look like this (with your server IP address replacing the text YOUR.IP.ADDRESS.HERE)::

Code:
# The loopback network interface
auto lo ens192
iface lo inet loopback

# The primary network interface
allow-hotplug ens192

iface ens192 inet static
    address YOUR.IP.ADDRESS.HERE/32
    gateway 10.255.255.1
    up route add -net 10.255.255.1 netmask 255.255.255.255 dev ens192
 
Back
Top