mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-06 13:18:00 +03:00
docs: exand PBS to Proxmox Backup (Server)
where applicable. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
dd71b70b5d
commit
db10278b95
@ -31,7 +31,7 @@ Login
|
|||||||
.. image:: images/screenshots/pbs-gui-login-window.png
|
.. image:: images/screenshots/pbs-gui-login-window.png
|
||||||
:target: _images/pbs-gui-login-window.png
|
:target: _images/pbs-gui-login-window.png
|
||||||
:align: right
|
:align: right
|
||||||
:alt: PBS login window
|
:alt: Proxmox Backup Server login window
|
||||||
|
|
||||||
When you connect to the web interface, you will first see the login window.
|
When you connect to the web interface, you will first see the login window.
|
||||||
Proxmox Backup Server supports various languages and authentication back ends
|
Proxmox Backup Server supports various languages and authentication back ends
|
||||||
@ -47,7 +47,7 @@ GUI Overview
|
|||||||
.. image:: images/screenshots/pbs-gui-dashboard.png
|
.. image:: images/screenshots/pbs-gui-dashboard.png
|
||||||
:target: _images/pbs-gui-dashboard.png
|
:target: _images/pbs-gui-dashboard.png
|
||||||
:align: right
|
:align: right
|
||||||
:alt: PBS GUI Dashboard
|
:alt: Proxmox Backup Server GUI Dashboard
|
||||||
|
|
||||||
The Proxmox Backup Server web interface consists of 3 main sections:
|
The Proxmox Backup Server web interface consists of 3 main sections:
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ Mailing Lists
|
|||||||
Proxmox Backup Server is fully open-source and contributions are welcome! Here
|
Proxmox Backup Server is fully open-source and contributions are welcome! Here
|
||||||
is the primary communication channel for developers:
|
is the primary communication channel for developers:
|
||||||
|
|
||||||
:Mailing list for developers: `PBS Development List`_
|
:Mailing list for developers: `Proxmox Backup Sever Development List`_
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
~~~~~~~~~~~
|
~~~~~~~~~~~
|
||||||
|
@ -110,7 +110,7 @@ We recommend to configure this repository in ``/etc/apt/sources.list``.
|
|||||||
deb http://ftp.debian.org/debian bullseye main contrib
|
deb http://ftp.debian.org/debian bullseye main contrib
|
||||||
deb http://ftp.debian.org/debian bullseye-updates main contrib
|
deb http://ftp.debian.org/debian bullseye-updates main contrib
|
||||||
|
|
||||||
# PBS pbs-no-subscription repository provided by proxmox.com,
|
# Proxmox Backup Server pbs-no-subscription repository provided by proxmox.com,
|
||||||
# NOT recommended for production use
|
# NOT recommended for production use
|
||||||
deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription
|
deb http://download.proxmox.com/debian/pbs bullseye pbs-no-subscription
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
Command line tool for restoring files and directories from PBS archives. In contrast to
|
Command line tool for restoring files and directories from Proxmox Backup
|
||||||
proxmox-backup-client, this supports both container/host and VM backups.
|
archives. In contrast to proxmox-backup-client, this supports both
|
||||||
|
container/host and VM backups.
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
<title>PBS Prune Simulator</title>
|
<title>Proxmox Backup Server Prune Simulator</title>
|
||||||
|
|
||||||
<link rel="stylesheet" type="text/css" href="extjs/theme-crisp/resources/theme-crisp-all.css">
|
<link rel="stylesheet" type="text/css" href="extjs/theme-crisp/resources/theme-crisp-all.css">
|
||||||
<style>
|
<style>
|
||||||
|
@ -595,21 +595,21 @@ in the following LDIF dataset, the user ``user1`` has the unique domain
|
|||||||
|
|
||||||
In in similar manner, Proxmox Backup Server uses user identifiers (``userid``)
|
In in similar manner, Proxmox Backup Server uses user identifiers (``userid``)
|
||||||
to uniquely identify users. Thus, it is necessary to establish a mapping
|
to uniquely identify users. Thus, it is necessary to establish a mapping
|
||||||
between PBS's ``userid`` and LDAP's ``dn``. This mapping is established by
|
between a Proxmox Backup Server ``userid`` and an LDAP ``dn``. This mapping is
|
||||||
the ``user-attr`` configuration parameter - it contains the name of the LDAP
|
established by the ``user-attr`` configuration parameter - it contains the name
|
||||||
attribute containing a valid PBS user identifier.
|
of the LDAP attribute containing a valid Proxmox Backup Server user identifier.
|
||||||
|
|
||||||
For the example above, setting ``user-attr`` to ``uid`` will have the effect
|
For the example above, setting ``user-attr`` to ``uid`` will have the effect
|
||||||
that the user ``user1@<realm-name>`` will be mapped to the LDAP entity
|
that the user ``user1@<realm-name>`` will be mapped to the LDAP entity
|
||||||
``uid=user1,ou=People,dc=ldap-test,dc=com``. On user login, PBS will perform
|
``uid=user1,ou=People,dc=ldap-test,dc=com``. On user login, Proxmox Backup
|
||||||
a `subtree search` under the configured Base Domain (``base-dn``) to query
|
Server will perform a `subtree search` under the configured Base Domain
|
||||||
the user's ``dn``. Once the ``dn`` is known, an LDAP bind operation is performed
|
(``base-dn``) to query the user's ``dn``. Once the ``dn`` is known, an LDAP
|
||||||
to authenticate the user against the LDAP server.
|
bind operation is performed to authenticate the user against the LDAP server.
|
||||||
|
|
||||||
As not all LDAP servers allow `anonymous` search operations, it is possible to
|
As not all LDAP servers allow `anonymous` search operations, it is possible to
|
||||||
configure a bind domain (``bind-dn``) and a bind password (``password``).
|
configure a bind domain (``bind-dn``) and a bind password (``password``).
|
||||||
If set, PBS will bind to the LDAP server using these credentials before
|
If set, Proxmox Backup Server will bind to the LDAP server using these
|
||||||
performing any search operations.
|
credentials before performing any search operations.
|
||||||
|
|
||||||
A full list of all configuration parameters can be found at :ref:`domains.cfg`.
|
A full list of all configuration parameters can be found at :ref:`domains.cfg`.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user