[SOLVED] No network no access webui after updating 8 ->9

helio

Member
Nov 17, 2022
29
0
6
After updating can no longer access to webui neither ssh.

Here is the result of ip a

Please same advise.
Thanks
 

Attachments

  • IMG_6637.jpg
    IMG_6637.jpg
    1.5 MB · Views: 14
Could you please post the output of

Code:
cat /etc/network/interfaces
 
You should be able to temporarily restore network connectivity via

Code:
ip a a 192.168.0.5/24 dev eno1
ip link set up eno1
ip r a default via 192.168.0.1

Could you then please post the output of

Code:
pveversion -v
apt update
 
You should be able to temporarily restore network connectivity via

Code:
ip a a 192.168.0.5/24 dev eno1
ip link set up eno1
ip r a default via 192.168.0.1

Could you then please post the output of

Code:
pveversion -v
apt update
Here is.
 

Attachments

  • pveversion.jpg
    pveversion.jpg
    658.3 KB · Views: 5
You need to also:
echo "nameserver 8.8.8.8" > /etc/resolv.conf

Additionally, now that you've set the IP - you should be able to SSH into the host and collect/provide text output, rather than literal screen shots.

Also, check the date/time of your system and fix it if its off:
date -s "YYYY-MM-DD HH:MM:SS"




Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
 
Last edited:
You need to also:
echo "nameserver 8.8.8.8" > /etc/resolv.conf

Additionally, now that you've set the IP - you should be able to SSH into the host and collect/provide text output, rather than literal screen shots.

Also, check the date/time of your system.



Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
Yes you are right now I can ssh. But cannot access webui.
 
Yes you are right now I can ssh. But cannot access webui.
It seems like proxmox-ve got removed did you get a warning prompting you to run touch '/please-remove-proxmox-ve' ?

You need to configure the proper repository for PVE 9, as described in [1]. You still have the bookworm PVE repo configured (and an enterprise repository for trixie, which only works if you have a subscription)

Then run
Code:
apt install proxmox-ve

[1] https://pve.proxmox.com/wiki/Upgrade_from_8_to_9#Add_the_Proxmox_VE_9_Package_Repository
 
  • Like
Reactions: helio
Continue troubleshooting with the commands @shanreich is providing you. You've had a failed upgrade and the software is not properly installed



Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
here is a error
Code:
root@pve:~# apt install proxmox-ve
Solving dependencies... Error!
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

Unsatisfied dependencies:
 libpve-rs-perl : Depends: perlapi-5.36.0 but it is not installable
 libpve-u2f-server-perl : Depends: perlapi-5.36.0 but it is not installable
 librados2-perl : Depends: perlapi-5.36.0 but it is not installable
 lxc-pve : Depends: libgnutlsxx30 but it is not installable
 pve-cluster : Depends: perlapi-5.36.0 but it is not installable
Error: Unable to correct problems, you have held broken packages.
Error: The following information from --solver 3.0 may provide additional context:
   Unable to satisfy dependencies. Reached two conflicting decisions:
   1. pve-cluster:amd64 is selected for install because:
      1. proxmox-ve:amd64=8.4.0 is selected for install
      2. proxmox-ve:amd64 Depends qemu-server
      3. qemu-server:amd64 Depends pve-cluster
   2. pve-cluster:amd64 Depends perlapi-5.36.0
      but none of the choices are installable:
      [no choices]
root@pve:~#
 
It seems like proxmox-ve got removed did you get a warning prompting you to run touch '/please-remove-proxmox-ve' ?

You need to configure the proper repository for PVE 9, as described in [1]. You still have the bookworm PVE repo configured (and an enterprise repository for trixie, which only works if you have a subscription)

Then run
Code:
apt install proxmox-ve

[1] https://pve.proxmox.com/wiki/Upgrade_from_8_to_9#Add_the_Proxmox_VE_9_Package_Repository
THANK YOU working :)