Book Image

Proxmox Cookbook

By : Wasim Ahmed, Ravi K Jangid
Book Image

Proxmox Cookbook

By: Wasim Ahmed, Ravi K Jangid

Overview of this book

Proxmox VE's intuitive interface, high availability, and unique central management system puts it on par with the world’s best virtualization platforms. Its simplicity and high quality of service is what makes it the foremost choice for most system administrators. Starting with a step-by-step installation of Proxmox nodes along with an illustrated tour of Proxmox graphical user interface where you will spend most of your time managing a cluster, this book will get you up and running with the mechanisms of Proxmox VE. Various entities such as Cluster, Storage, and Firewall are also covered in an easy to understand format. You will then explore various backup solutions and restore mechanisms, thus learning to keep your applications and servers safe. Next, you will see how to upgrade a Proxmox node with a new release and apply update patches through GUI or CLI. Monitoring resources and virtual machines is required on an enterprise level, to maintain performance and uptime; to achieve this, we learn how to monitor host machine resources and troubleshoot common issues in the setup. Finally, we will walk through some advanced configurations for VM followed by a list of commands used for Proxmox and Ceph cluster through CLI. With this focused and detailed guide you will learn to work your way around with Proxmox VE quickly and add to your skillset.
Table of Contents (18 chapters)
Proxmox Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

ZFS commands


In this section, we will look at the commands for performing various tasks for ZFS on Proxmox.

How to do it…

  1. Use the following command to create the raidz ZFS pool:

    # zpool create <pool_name> raidz -m <mountpoint> </dev/sdX> </dev/sdX> <…>
    

    The command to create a zpool named testzfs in the /mnt/zfs1 mount point with three drives looks like this:

    #zpool create testzfs raidz –m /mnt/zfs1/ /dev/vdf /dev/vdg /dev/vdh
    

    The following screenshot shows the output of the zpool list to verify that our pool is created:

  2. Use the following command to delete the ZFS pool:

    # zpool destroy <pool_name>
    

    This action is irreversible. Once the pool is deleted, it is permanently removed.

  3. Use the following command to list all the ZFS pools and storage space:

    # zpool list
    
  4. Use the following command to see the status of all the drives for the ZFS pool:

    #zpool status
    

    The preceding command is useful for checking if any drives are offline or approaching failure by checking...