Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Mastering Proxmox
Mastering Proxmox

Mastering Proxmox: Master Proxmox VE to effectively implement server virtualization technology within your network

eBook
$19.99 $28.99
Paperback
$47.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Mastering Proxmox

Chapter 2. Proxmox Under the Hood

In the previous chapter, we have seen how a Proxmox GUI looks like and set up a basic cluster, which we are going to use for hands-on learning of Proxmox. In this chapter, we will look at how configuration files hold a Proxmox virtualization platform together, files to be used for advanced configuration, and how to troubleshoot a Proxmox platform. Proxmox is built on Debian Linux, which is very stable with a large active community. So, it inherited the heavy dependency on configuration or the .conf files as we Linux users lovingly like to call them. The Proxmox GUI provides you with the ability to manage a cluster, but does not provide direct access to any configuration files. Any direct changes by an advanced user have to be done through CLI. Commonly used scenarios such as adding special arguments in configuration files are also done through CLI. In this chapter, we will look at the following topics:

  • The Proxmox directory structure
  • Configuration...

The Proxmox cluster directory structure

Proxmox is a cluster-based hypervisor. It is meant to be used with several server nodes. By using multiple nodes in a cluster, we provide redundancy or High Availability to the platform while increasing uptime. A production virtual environment may have several dozens to several hundreds of nodes in a cluster. As an administrator, it may not be a realistic scenario to change configuration files in the cluster one node at a time. Depending on the number of nodes in a cluster, it may take several hours just to change one small argument in a configuration file of all the nodes. An administrator would have to go from node to node to apply these changes. To alleviate wastage of precious time, Proxmox implemented the clustered filesystem to keep all the configuration files, or any other common files shared by all the nodes in the cluster, in a synchronous state. Its official name is Proxmox Cluster file system or pmxcfs, which is a database-driven filesystem...

Dissecting the configuration files

We now know where all the important files that hold a Proxmox cluster together are placed. We will now go inside some of these files for better understanding of what they do and the command arguments they use. You can use any Linux editor to view/edit these configuration files. In this book, we will use #nano to view and edit.

During the learning process, it will be a good idea to make a backup of the configuration files before editing them. In case something goes wrong, you will be able to replace it with the original working configuration file. Simply copy a configuration file using the following command:

# cp /etc/pve/<config_file> /home/<any_folder>

We can also use the SCP command to back up files to another node:

# scp /etc/pve/<config_file> <user>@<ip_or_hostname>:/<folder>

The cluster configuration file

The following code is what our cluster.conf file currently looks like from the cluster we created earlier in Chapter...

User configuration files

The user.cfg file holds all user and group information in the cluster and is located under /etc/pve/. It follows the following format to store all user information:

  • For user information, the format is as follows:
    <type>:<user>@realm:enable:expiry:f_name:l_name:email:comment
  • For group information, the format is as follows:
    <type>:<group_name>:user@realm:comment

Based on this format, the following is what our user.cfg file looks like right now. Depending on user information you have entered, the file content may vary:

user:root@pam:1:0:::[email protected]::
user:pmxuser@pve:1:0:ABC:XYZ:[email protected]:A User:

group:test:wahmed@pve:This is Test Group:

Note that the file user.cfg does not hold any user password. This information is stored under /etc/pve/priv/shadow.cfg.

The password configuration file

The password configuration file is located under /etc/pve/priv/shadow.cfg and stores all the passwords for users in the cluster. The format is rather...

Member nodes

Located under /etc/pve/.members, the member node file shows all the member nodes that are a part of the Proxmox cluster. It is a great way to see the cluster status, when the Proxmox GUI becomes inaccessible for any reason. The following is the .members file in our basic cluster:

{
  "nodename": "pmxvm01",
  "version": 9,
  "cluster": { "name": "pmx-cluster", "version": 2, "nodes": 2, "quorate": 1 },
  "nodelist": {
    "pmxvm01": { "id": 1, "online": 1, "ip": "192.168.145.1"},
    "pmxvm02": { "id": 2, "online": 1, "ip": "192.168.145.2"}
  }
}

The .members file

The content of a .members file is as follows:

"nodename": "pmxvm01"

The previous code section shows the current node where the .members file is being accessed.

"version": 9

The .members file has its...

The virtual machine list file

Located under /etc/pve/.vmlist, the virtual machine list file stores a list of all the virtual machines within the Proxmox cluster. The .vmlist file uses the following format to store the list:

"<vmid>": { "node": "<nodename>", "type": "<vm_type>", "version": <int> }

We have two virtual machines and one template in our basic cluster. The following is the information stored in the .vmlist file:

{
  "version": 24,
  "ids": {
  "121": { "node": "pmxvm01", "type": "openvz", "version": 20 },
  "101": { "node": "pmxvm01", "type": "qemu", "version": 11 },
  "201": { "node": "pmxvm01", "type": "qemu", "version": 22 }}
}

Please note that a VM with ID 201 is a KVM template in our cluster. But...

The Proxmox cluster directory structure


Proxmox is a cluster-based hypervisor. It is meant to be used with several server nodes. By using multiple nodes in a cluster, we provide redundancy or High Availability to the platform while increasing uptime. A production virtual environment may have several dozens to several hundreds of nodes in a cluster. As an administrator, it may not be a realistic scenario to change configuration files in the cluster one node at a time. Depending on the number of nodes in a cluster, it may take several hours just to change one small argument in a configuration file of all the nodes. An administrator would have to go from node to node to apply these changes. To alleviate wastage of precious time, Proxmox implemented the clustered filesystem to keep all the configuration files, or any other common files shared by all the nodes in the cluster, in a synchronous state. Its official name is Proxmox Cluster file system or pmxcfs, which is a database-driven filesystem...

Dissecting the configuration files


We now know where all the important files that hold a Proxmox cluster together are placed. We will now go inside some of these files for better understanding of what they do and the command arguments they use. You can use any Linux editor to view/edit these configuration files. In this book, we will use #nano to view and edit.

During the learning process, it will be a good idea to make a backup of the configuration files before editing them. In case something goes wrong, you will be able to replace it with the original working configuration file. Simply copy a configuration file using the following command:

# cp /etc/pve/<config_file> /home/<any_folder>

We can also use the SCP command to back up files to another node:

# scp /etc/pve/<config_file> <user>@<ip_or_hostname>:/<folder>

The cluster configuration file

The following code is what our cluster.conf file currently looks like from the cluster we created earlier in Chapter...

Left arrow icon Right arrow icon

Description

This is not an instructional guide, but a practical, scenario-based book which guides you through everything you need to know in a practical manner by letting you build your own cluster. By the end of the book, you will have a fully functional Proxmox cluster setup at your disposal and have the knowledge to replicate virtualization solutions .If you already know what the word virtualization means and you are ready to stand out from the crowd equipped with the unique ability to design and implement a rock-solid virtualized network environment using Proxmox, then you have just picked up the only book you will need. Linux system administration experience together with knowledge of networking and virtualization concepts is assumed. This book is also useful if you are already using Proxmox and simply want to master its advanced features.

What you will learn

  • Provide big business virtualization technology at small business prices by using Proxmox
  • Configure virtual machines beyond the basic default setup
  • Set up virtual environments of any size
  • Set up scalable, distributed shared storage systems using Ceph
  • Analyze realworld virtual environment scenarios and formulate Proxmoxbased solutions
  • Monitor resources and virtual machines to maintain performance and uptime
  • Troubleshoot a virtual environment based on reallife scenarios

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jul 14, 2014
Length: 310 pages
Edition : 1st
Language : English
ISBN-13 : 9781783980833
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jul 14, 2014
Length: 310 pages
Edition : 1st
Language : English
ISBN-13 : 9781783980833
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 151.97
Proxmox High Availability
$48.99
Mastering Proxmox
$47.99
Proxmox Cookbook
$54.99
Total $ 151.97 Stars icon
Banner background image

Table of Contents

11 Chapters
1. Dive into the Virtual World with Proxmox Chevron down icon Chevron up icon
2. Proxmox Under the Hood Chevron down icon Chevron up icon
3. Shared Storages with Proxmox Chevron down icon Chevron up icon
4. A Virtual Machine for a Virtual World Chevron down icon Chevron up icon
5. Network of Virtual Networks Chevron down icon Chevron up icon
6. Proxmox HA – Zero Downtime Chevron down icon Chevron up icon
7. High Availability Storage for High Availability Cluster Chevron down icon Chevron up icon
8. Proxmox Production Level Setup Chevron down icon Chevron up icon
9. Proxmox Troubleshooting Chevron down icon Chevron up icon
10. Putting It All Together Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.3
(18 Ratings)
5 star 50%
4 star 33.3%
3 star 16.7%
2 star 0%
1 star 0%
Filter icon Filter
Top Reviews

Filter reviews by




Malcolm J Warwick Apr 03, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
very well written and easy to understand
Amazon Verified review Amazon
matthew williams Jan 14, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got a review copy of this book an a electronic version from Packt Publishing's staff, which I thank for the opportunity they gave me.I've used Proxmox heavily in the past and this book does a great job of helping guide users through setting up Proxmox for production use.One of the hidden gems of this book is chapter 7 which derives into the usage of Ceph for high availability storage. Whether you use Proxmox or not the chapter on high availability storage is well worth the cost aloneIf you are in the need for a high powered virtual machine cluster and don't wasn't to get tied into the high price that can go with other solutions then Proxmox is really one of the best solutions or there and Mastering Proxmox will help you to get the most out of Proxmox
Amazon Verified review Amazon
Ruusento Sep 18, 2014
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got a review copy of this book from Packt Publishing's staff, which I thank for the opportunity they gave me.What can I say about this book?It is a nice and quite complete book/sysadmin manual with various configuration examples, sample hardware BOMs, and with many tips and tricks for troubleshooting and setting up clusters of any dimension. Takes care of covering quite every aspect and feature of the latest 3.x branch of PVE, including eventual infographics on how to set up every particular feature. Highly recommended for every Proxmox sysadmin and enthusiast, which might prefer a manual instead of looking for threads and eventual guides into the PVE forums.
Amazon Verified review Amazon
Karl Jan 30, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent book, which goes into great detail on building a high availability Proxmox cluster.There is a special section on troubleshooting which was also excellent. I purchased the book to help me with my understanding of the inner workings of the network functions. It explains each aspect of the system in a thorough and concise manner.
Amazon Verified review Amazon
Grayson Kent Feb 11, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Amazing book. I wish all guides were this thorough and well-thought out. One of the few books I read digitally and liked enough to buy to have around. My only criticism is that I felt the Ceph stuff should be put into its own book.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.