proxmox-backup/docs/installation.rst

129 lines
4.1 KiB
ReStructuredText
Raw Normal View History

2019-02-27 17:35:05 +00:00
Installation
============
2019-02-27 16:42:31 +00:00
`Proxmox Backup`_ is split into a server and client part. The server part
can either be installed with a graphical installer or on top of
Debian_ from the provided package repository.
2019-11-13 12:10:56 +00:00
.. include:: system-requirements.rst
2019-11-11 11:28:04 +00:00
.. include:: package-repositories.rst
Server Installation
2019-11-13 12:10:56 +00:00
-------------------
The backup server stores the actual backed up data and provides a web based GUI
for various management tasks such as disk management.
2019-11-13 12:10:56 +00:00
.. note:: You always need a backup server. It is not possible to use
`Proxmox Backup`_ without the server part.
The disk image (ISO file) provided by Proxmox includes a complete Debian system
as well as all necessary packages for the `Proxmox Backup`_ Server.
2019-11-13 12:10:56 +00:00
The installer will guide you through the setup process and allow
you to partition the local disk(s), apply basic system configuration
(for example timezone, language, network), and install all required packages.
The provided ISO will get you started in just a few minutes, and is the
recommended method for new and existing users.
2019-11-13 12:10:56 +00:00
Alternatively, `Proxmox Backup`_ Server can be installed on top of an
2019-11-13 12:10:56 +00:00
existing Debian system.
Install `Proxmox Backup`_ Server using the Installer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2019-11-13 12:10:56 +00:00
Download the ISO from |DOWNLOADS|.
2019-11-13 12:10:56 +00:00
It includes the following:
* The `Proxmox Backup`_ Server installer, which partitions the local
disk(s) with ext4, xfs or ZFS, and installs the operating system
2019-11-13 12:10:56 +00:00
* Complete operating system (Debian Linux, 64-bit)
* Proxmox Linux kernel with ZFS support
2019-11-13 12:10:56 +00:00
* Complete tool-set to administer backups and all necessary resources
2019-11-13 12:10:56 +00:00
* Web based management interface
2019-11-13 12:10:56 +00:00
.. note:: During the installation process, the complete server
is used by default and all existing data is removed.
Install `Proxmox Backup`_ Server on Debian
2019-11-13 12:10:56 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Proxmox ships as a set of Debian packages which can be installed on top of a
standard Debian installation. After configuring the
2019-11-13 12:10:56 +00:00
:ref:`sysadmin_package_repositories`, you need to run:
.. code-block:: console
# apt-get update
# apt-get install proxmox-backup-server
The above commands keep the current (Debian) kernel and install a minimal
2019-11-13 12:10:56 +00:00
set of required packages.
If you want to install the same set of packages as the installer
does, please use the following:
.. code-block:: console
# apt-get update
# apt-get install proxmox-backup
This will install all required packages, the Proxmox kernel with ZFS_
support, and a set of common and useful packages.
.. caution:: Installing `Proxmox Backup`_ on top of an existing Debian_
installation looks easy, but it assumes that the base system and local
storage have been set up correctly. In general this is not trivial, especially
when LVM_ or ZFS_ is used. The network configuration is completely up to you
as well.
2019-11-13 12:10:56 +00:00
.. Note:: You can access the web interface of the Proxmox Backup Server with
your web browser, using HTTPS on port 8007. For example at
``https://<ip-or-dns-name>:8007``
Install Proxmox Backup Server on `Proxmox VE`_
2019-11-13 12:10:56 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
After configuring the
:ref:`sysadmin_package_repositories`, you need to run:
.. code-block:: console
# apt-get update
# apt-get install proxmox-backup-server
.. caution:: Installing the backup server directly on the hypervisor
is not recommended. It is safer to use a separate physical
server to store backups. Should the hypervisor server fail, you can
still access the backups.
2019-11-13 12:10:56 +00:00
.. Note:: You can access the web interface of the Proxmox Backup Server with
your web browser, using HTTPS on port 8007. For example at
``https://<ip-or-dns-name>:8007``
Client Installation
2019-11-13 12:10:56 +00:00
-------------------
Install `Proxmox Backup`_ Client on Debian
2019-11-13 12:10:56 +00:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Proxmox ships as a set of Debian packages to be installed on top of a standard
Debian installation. After configuring the :ref:`package_repositories_client_only_apt`,
you need to run:
2019-11-13 12:10:56 +00:00
.. code-block:: console
# apt-get update
# apt-get install proxmox-backup-client
.. note:: The client-only repository should be usable by most recent Debian and
Ubuntu derivatives.
2019-02-27 16:42:31 +00:00