Proxmox: Difference between revisions
From Pumping Station One
No edit summary |
|||
| (5 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{mbox |type=warning |text=This information is out of date. [[IT Infrastructure|Up-to-date IT information can be found here]] }} | |||
Proxmox is the name of the software running the vm hosting software. | Proxmox is the name of the software running the vm hosting software. | ||
There are 4 | There are 4 servers in the rack running proxmox, 2 of them are turned on. | ||
== Management Interface == | == Management Interface == | ||
| Line 7: | Line 9: | ||
The management interface is are: | The management interface is are: | ||
* https://10.100.200. | * https://10.100.200.55:8006/#v1:0:=node%2Fvm01:4:::::: | ||
* https://10.100. | * https://10.100.2.61:8006/#v1:0:=node%2Fvm01:4:::::: | ||
* https://10.100.2.62:8006/#v1:0:=node%2Fvm01:4:::::: | |||
User creation is not automatic, but password are checked against ldap, so member credentials work. | User creation is not automatic, but password are checked against ldap, so member credentials work. | ||
| Line 72: | Line 75: | ||
== Configure ip addresses == | == Configure ip addresses == | ||
Follow these instructions to set static IP for your VM: [[Systems/Services/Dhcp|DHCP]] | |||
== Resetting the Root Password == | == Resetting the Root Password == | ||
| Line 99: | Line 98: | ||
# Press "upload" | # Press "upload" | ||
# Find your iso locally and press upload | # Find your iso locally and press upload | ||
== Annoying Popup Windows == | |||
Edit the file /usr/share/pve-manager/ext4/pvemanagerlib.js | |||
<syntaxHighlight lang=javascript> | |||
/*if (data.status !== 'Active') { | |||
Ext.Msg.show({ | |||
title: gettext('No valid subscription'), | |||
icon: Ext.Msg.WARNING, | |||
msg: PVE.Utils.noSubKeyHtml, | |||
buttons: Ext.Msg.OK, | |||
callback: function(btn) { | |||
if (btn !== 'ok') { | |||
return; | |||
} | |||
orig_cmd(); | |||
} | |||
}); | |||
} else */{ | |||
orig_cmd(); | |||
} | |||
</syntaxHighlight> | |||
== Gotchas == | == Gotchas == | ||
* If you delete an iso file while a vm is still pointing at it, that machine will not reboot successfully until you change the configured iso | * If you delete an iso file while a vm is still pointing at it, that machine will not reboot successfully until you change the configured iso | ||