Difference between revisions of "Troubleshooting"

From Proxmox VE
Jump to navigation Jump to search
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:Troubleshooting]]
+
== Switch novnc KVM console ==
== I can't switch virtual consoles in Linux KVM guests with alt-F1, alt-F2... ==
 
  
 +
I can't switch virtual consoles in Linux KVM guests with alt-F1, alt-F2...
 
VNC viewer does not pass some key combinations or they may be intercepted by your operating system.
 
VNC viewer does not pass some key combinations or they may be intercepted by your operating system.
  
Line 9: Line 9:
  
 
  sendkey alt-f3
 
  sendkey alt-f3
 
  
 
== How can I send sysrq to Linux KVM guests? ==
 
== How can I send sysrq to Linux KVM guests? ==
Line 45: Line 44:
  
 
==  How can I assign a physical disk to a CT? ==
 
==  How can I assign a physical disk to a CT? ==
 +
 +
{{Note|Article about the stable Proxmox VE 4.x releases}}
 +
 +
See [[Linux_Container#pct_container_storage|Linux_Container]]
 +
 +
{{Note|Article about the old stable Proxmox VE 3.x releases}}
 +
 
See http://wiki.openvz.org/Bind_mounts
 
See http://wiki.openvz.org/Bind_mounts
  
Line 53: Line 59:
  
 
== NFS Client Mount Error: "mount.nfs: No such device" ==
 
== NFS Client Mount Error: "mount.nfs: No such device" ==
 +
{{Note|Article about the old stable Proxmox VE 3.x releases}}
 
By default NFS cannot be mounted in VZ containers. See this page to set-it-up: [http://wiki.openvz.org/NFS OpenVZ: NFS]
 
By default NFS cannot be mounted in VZ containers. See this page to set-it-up: [http://wiki.openvz.org/NFS OpenVZ: NFS]
 
See also this page to make an host's directory visible to a container: [http://wiki.openvz.org/Bind_mounts OpenVZ: Bind mounts]
 
See also this page to make an host's directory visible to a container: [http://wiki.openvz.org/Bind_mounts OpenVZ: Bind mounts]
  
== Cluster & Multicast issues ==
+
[[Category:Troubleshooting]]
See [[Troubleshooting multicast, quorum and cluster issues]]
 
 
 
== See also ==
 
* [[:Category:Troubleshooting]]
 
* [[:Category:HOWTO]]
 

Latest revision as of 13:15, 28 November 2016

Switch novnc KVM console

I can't switch virtual consoles in Linux KVM guests with alt-F1, alt-F2... VNC viewer does not pass some key combinations or they may be intercepted by your operating system.

To send custom key combinations to the guest, go to "Monitor" in Virtual Machine Configuration for a given guest and use "sendkey" command.

For example, to switch to the third console (tty3) you would use:

sendkey alt-f3

How can I send sysrq to Linux KVM guests?

Similarly to the above, go to "Monitor" in Virtual Machine Configuration for a given guest and use "sendkey" command.

For example, to issue "Emergency Sync", you would use:

sendkey alt-sysrq-s

In the VNC viewer for the given guest you should see:

SysRq : Emergency Sync

You should also see this entry if you run "dmesg" on this guest.

See also http://en.wikipedia.org/wiki/Magic_SysRq_key for a full reference of possible combinations.


How can I access Linux guests through a serial terminal

See Serial Terminal

How can I assign a physical disk to a VM?

You don't have to do anything at host level (i.e. not add to fstab or anything), just set is as available directly to the KVM guest:

qm set <vmid> -ide# /dev/sdb

Or:

qm set <vmid> -ide# /dev/disk/by-id/[your disk ID]

...since having the drive letter change (should you add a drive) might have unintended consequences.

Also see /etc/qemu-server/<vmid>.conf if you want to add it editing the conf file by hand (i.e. adding ide1: /dev/sdb2). After that you can run the VM as usual, and you will have the new storage device available inside it. Beware that you can't assign it to more than one running VM if the filesystem is not designed for such scenario.

How can I assign a physical disk to a CT?

Yellowpin.svg Note: Article about the stable Proxmox VE 4.x releases

See Linux_Container

Yellowpin.svg Note: Article about the old stable Proxmox VE 3.x releases

See http://wiki.openvz.org/Bind_mounts

"error: out of partition" after a fresh install

The error message below may happens when you had two or more harddrives connected during the installation. Try to disconnect all but one disk.

error: out of partition.
grub rescue>

NFS Client Mount Error: "mount.nfs: No such device"

Yellowpin.svg Note: Article about the old stable Proxmox VE 3.x releases

By default NFS cannot be mounted in VZ containers. See this page to set-it-up: OpenVZ: NFS See also this page to make an host's directory visible to a container: OpenVZ: Bind mounts