Hello,
I have just installed proxmox on debian 11. This is a new headless installation.
Situation: Can't access https://172.16.5.250:8006
Typical culprits:
/etc/network/interfaces
/etc/hostname
/etc/hosts
netstat - am I missing a routing table?????
Can ssh into the server and it seems that the webpage is there but only accessible from the machine:
Output of pveversion -v
Also have webmin (10000), docker and portainer (8000, 9000, 9443) installed. both webmin and portainer are accessible from the GUI.
I have just installed proxmox on debian 11. This is a new headless installation.
Situation: Can't access https://172.16.5.250:8006
Typical culprits:
/etc/network/interfaces
Code:
mecheng@skynet:~$ cat /etc/network/interfaces
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage parts of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet dhcp
/etc/hostname
Code:
mecheng@skynet:~$ cat /etc/hostname
skynet
/etc/hosts
Code:
mecheng@skynet:~$ cat /etc/hosts
172.16.5.250 skynet.skynet skynet pvelocalhost
# The following lines are desirable for IPv6 capable hosts
# ::1 localhost ip6-localhost ip6-loopback
# ff02::1 ip6-allnodes
# ff02::2 ip6-allrouters
Code:
mecheng@skynet:~$ hostname --ip-address
172.16.5.250
netstat - am I missing a routing table?????
Code:
mecheng@skynet:~$ netstat -an | grep 8006
tcp6 0 0 :::8006 :::* LISTEN
mecheng@skynet:~$ netstat -an | grep 10000
tcp 0 0 0.0.0.0:10000 0.0.0.0:* LISTEN
tcp6 0 0 :::10000 :::* LISTEN
udp 0 0 0.0.0.0:10000 0.0.0.0:*
mecheng@skynet:~$ netstat -an | grep 8000
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN
tcp6 0 0 :::8000 :::* LISTEN
mecheng@skynet:~$ netstat -an | grep 9000
tcp 0 0 0.0.0.0:9000 0.0.0.0:* LISTEN
tcp6 0 0 :::9000 :::* LISTEN
mecheng@skynet:~$
Can ssh into the server and it seems that the webpage is there but only accessible from the machine:
Code:
mecheng@skynet:~$ curl -s -k https://172.16.5.250:8006 | grep title
<title>skynet - Proxmox Virtual Environment</title>
Output of pveversion -v
Code:
proxmox-ve: 7.3-1 (running kernel: 5.15.83-1-pve)
pve-manager: 7.3-4 (running version: 7.3-4/d69b70d4)
pve-kernel-helper: 7.3-2
pve-kernel-5.15: 7.3-1
pve-kernel-5.15.83-1-pve: 5.15.83-1
ceph-fuse: 14.2.21-1
corosync: 3.1.7-pve1
criu: 3.15-1+pve-1
glusterfs-client: 9.2-1
ifupdown: residual config
ifupdown2: 3.1.0-1+pmx3
libjs-extjs: 7.0.0-1
libknet1: 1.24-pve2
libproxmox-acme-perl: 1.4.3
libproxmox-backup-qemu0: 1.3.1-1
libpve-access-control: 7.3-1
libpve-apiclient-perl: 3.2-1
libpve-common-perl: 7.3-1
libpve-guest-common-perl: 4.2-3
libpve-http-server-perl: 4.1-5
libpve-storage-perl: 7.3-1
libspice-server1: 0.14.3-2.1
lvm2: 2.03.11-2.1
lxc-pve: 5.0.0-3
lxcfs: 4.0.12-pve1
novnc-pve: 1.3.0-3
proxmox-backup-client: 2.3.2-1
proxmox-backup-file-restore: 2.3.2-1
proxmox-mini-journalreader: 1.3-1
proxmox-offline-mirror-helper: 0.5.0-1
proxmox-widget-toolkit: 3.5.3
pve-cluster: 7.3-2
pve-container: 4.4-2
pve-docs: 7.3-1
pve-edk2-firmware: 3.20220526-1
pve-firewall: 4.2-7
pve-firmware: 3.6-2
pve-ha-manager: 3.5.1
pve-i18n: 2.8-1
pve-qemu-kvm: 7.1.0-4
pve-xtermjs: 4.16.0-1
qemu-server: 7.3-2
smartmontools: 7.2-pve3
spiceterm: 3.2-2
swtpm: 0.8.0~bpo11+2
vncterm: 1.7-1
zfsutils-linux: 2.1.7-pve3
Also have webmin (10000), docker and portainer (8000, 9000, 9443) installed. both webmin and portainer are accessible from the GUI.