• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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