• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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: 18
  • Captura de pantalla 2022-02-22 013729.png
    Captura de pantalla 2022-02-22 013729.png
    135 KB · Views: 17
  • Captura de pantalla 2022-02-22 013855.png
    Captura de pantalla 2022-02-22 013855.png
    79.5 KB · Views: 14
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