Installing proxmox VE 4.4 on debian jessie

s0lid

New Member
May 5, 2013
3
0
1
Hi everyone,

I followed the instruction in proxmox wiki after the installation i tried to load the web but it's not working rebooted the server still the webUI isn't running. I run htop and saw some pve running in background but im not sure which should i check for the proxmox webUI.

Hope anyone can help me. Thanks!
 
The API needs two daemons, pveproxy and pvedaemon:

# systemctl status pveproxy
# systemctl status pvedaemon
 
Thank you for replying! Looks like my 2 daemons are working. I just forgot to put https in the beginning, now it's working! :D


Code:
# systemctl status pveproxy
● pveproxy.service - PVE API Proxy Server
   Loaded: loaded (/lib/systemd/system/pveproxy.service; enabled)
   Active: active (running) since Mon 2017-05-08 10:19:06 +08; 25s ago
  Process: 961 ExecStart=/usr/bin/pveproxy start (code=exited, status=0/SUCCESS)
 Main PID: 968 (pveproxy)
   CGroup: /system.slice/pveproxy.service
           ├─968 pveproxy
           ├─969 pveproxy worker
           ├─970 pveproxy worker
           └─971 pveproxy worker

May 08 10:19:05 pve systemd[1]: Starting PVE API Proxy Server...
May 08 10:19:06 pve pveproxy[968]: starting server
May 08 10:19:06 pve pveproxy[968]: starting 3 worker(s)
May 08 10:19:06 pve pveproxy[968]: worker 969 started
May 08 10:19:06 pve pveproxy[968]: worker 970 started
May 08 10:19:06 pve pveproxy[968]: worker 971 started
May 08 10:19:06 pve systemd[1]: Started PVE API Proxy Server.



# systemctl status pvedaemon
● pvedaemon.service - PVE API Daemon
   Loaded: loaded (/lib/systemd/system/pvedaemon.service; enabled)
   Active: active (running) since Mon 2017-05-08 10:19:05 +08; 32s ago
  Process: 939 ExecStart=/usr/bin/pvedaemon start (code=exited, status=0/SUCCESS)
 Main PID: 955 (pvedaemon)
   CGroup: /system.slice/pvedaemon.service
           ├─955 pvedaemon
           ├─956 pvedaemon worker
           ├─957 pvedaemon worker
           └─958 pvedaemon worker

May 08 10:19:05 pve pvedaemon[955]: starting server
May 08 10:19:05 pve pvedaemon[955]: starting 3 worker(s)
May 08 10:19:05 pve pvedaemon[955]: worker 956 started
May 08 10:19:05 pve pvedaemon[955]: worker 957 started
May 08 10:19:05 pve pvedaemon[955]: worker 958 started
May 08 10:19:05 pve systemd[1]: Started PVE API Daemon.