[SOLVED] Not able to access promox 9 gui from webbrowser after fresh installation

ashah

New Member
Aug 10, 2025
3
0
1
Hi,
I am new to proxmox and isntalled proxmox 9 but after Installtion I cam not able to access the the GUO interface from a web browser

I can access the machine through ssh

Code:
Mac:~ $ ssh root@192.168.50.100
root@192.168.50.100's password:
Linux proxmox 6.14.8-2-pve #1 SMP PREEMPT_DYNAMIC PMX 6.14.8-2 (2025-07-22T10:04Z) x86_64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Sun Aug 10 15:44:10 2025 from 192.168.50.197
root@proxmox:~#

Also Curl command is woring from command line
Code:
Mac:~ $ curl -s -k https://192.168.50.100:8006
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>proxmox - Proxmox Virtual Environment</title>
    <link rel="icon" sizes="128x128" href="/pve2/images/logo-128.png" />
    <link rel="apple-touch-icon" sizes="128x128" href="/pve2/images/logo-128.png" />
    <link rel="stylesheet" type="text/css" href="/pve2/ext6/theme-crisp/resources/theme-crisp-all.css?ver=7.0.0" />
    <link rel="stylesheet" type="text/css" href="/pve2/ext6/crisp/resources/charts-all.css?ver=7.0.0" />
    <link rel="stylesheet" type="text/css" href="/pve2/fa/css/font-awesome.css" />
    <link rel="stylesheet" type="text/css" href="/pve2/font-logos/css/font-logos.css" />
    <link rel="stylesheet" type="text/css" href="/pve2/css/ext6-pve.css?ver=9.0.3" />
    <link rel="stylesheet" type="text/css" href="/pwt/css/ext6-pmx.css?ver=v5.0.5-t1754474621" />
    <link rel="stylesheet" type="text/css" media="(prefers-color-scheme: dark)" href="/pwt/themes/theme-proxmox-dark.css?ver=v5.0.5-t1754474621" />
    
    <script type='text/javascript'>
        function gettext(message) { return message; }
        function ngettext(singular, plural, count) { return count === 1 ? singular : plural; }
    </script>
    
    <script type="text/javascript" src="/pve2/ext6/ext-all.js?ver=7.0.0"></script>
    <script type="text/javascript" src="/pve2/ext6/charts.js?ver=7.0.0"></script>
    
    <script type="text/javascript" src="/pve2/js/u2f-api.js"></script>
    <script type="text/javascript" src="/qrcode.min.js"></script>
    <script type="text/javascript">
    Proxmox = {
        Setup: { auth_cookie_name: 'PVEAuthCookie' },
        defaultLang: 'en',
        NodeName: 'proxmox',
        UserName: '',
        CSRFPreventionToken: 'null',
        ConsentText: ''
    };
    </script>
    <script type="text/javascript" src="/proxmoxlib.js?ver=v5.0.5-t1754474621"></script>
    <script type="text/javascript" src="/pve2/js/pvemanagerlib.js?ver=9.0.3"></script>
    <script type="text/javascript" src="/pve2/ext6/locale/locale-en.js?ver=7.0.0"></script>

    <script type="text/javascript">
    if (typeof(PVE) === 'undefined') PVE = {};
    Ext.History.fieldid = 'x-history-field';
    Ext.onReady(function() { Ext.create('PVE.StdWorkspace');});
    </script>

  </head>
  <body>
    <!-- Fields required for history management -->
    <form id="history-form" class="x-hidden">
    <input type="hidden" id="x-history-field"/>
    </form>
  </body>
</html>

my /etc/hosts file is
Code:
root@proxmox:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.50.100 pve

# The following lines are desirable for IPv6 capable hosts

::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
root@proxmox:~#

and /etc/resolve.conf file
Code:
root@proxmox:~# cat /etc/resolv.conf
nameserver 8.8.8.8
root@proxmox:~#

and systemctl status pveproxy putput
Code:
root@proxmox:~# systemctl status pveproxy
● pveproxy.service - PVE API Proxy Server
     Loaded: loaded (/usr/lib/systemd/system/pveproxy.service; enabled; preset: enabled)
     Active: active (running) since Sun 2025-08-10 15:44:08 ACST; 9min ago
 Invocation: 2b8a728fb340485d9c6dc1d1bf45d959
    Process: 1214 ExecStartPre=/usr/bin/pvecm updatecerts --silent (code=exited, status=0/SUCCESS)
    Process: 1217 ExecStart=/usr/bin/pveproxy start (code=exited, status=0/SUCCESS)
    Process: 1224 ExecStartPost=sh -c [ ! -e /var/log/pveam.log ] && /usr/bin/pveupdate (code=exited, status=1/FAILURE)
   Main PID: 1220 (pveproxy)
      Tasks: 4 (limit: 30896)
     Memory: 170.3M (peak: 183.7M)
        CPU: 791ms
     CGroup: /system.slice/pveproxy.service
             ├─1220 pveproxy
             ├─1221 "pveproxy worker"
             ├─1222 "pveproxy worker"
             └─1223 "pveproxy worker"

Aug 10 15:44:07 proxmox systemd[1]: Starting pveproxy.service - PVE API Proxy Server...
Aug 10 15:44:08 proxmox pveproxy[1220]: starting server
Aug 10 15:44:08 proxmox pveproxy[1220]: starting 3 worker(s)
Aug 10 15:44:08 proxmox pveproxy[1220]: worker 1221 started
Aug 10 15:44:08 proxmox pveproxy[1220]: worker 1222 started
Aug 10 15:44:08 proxmox pveproxy[1220]: worker 1223 started
Aug 10 15:44:08 proxmox systemd[1]: Started pveproxy.service - PVE API Proxy Server.

i can ping the server