• 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!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • 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.

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