Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.133.113.101
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
snap /
lxd /
33085 /
share /
lxd-documentation /
_sources /
[ HOME SHELL ]
Name
Size
Permission
Action
explanation
[ DIR ]
drwxr-xr-x
howto
[ DIR ]
drwxr-xr-x
reference
[ DIR ]
drwxr-xr-x
tutorial
[ DIR ]
drwxr-xr-x
api-extensions.md.txt
108.13
KB
-rw-r--r--
api.md.txt
886
B
-rw-r--r--
architectures.md.txt
2.14
KB
-rw-r--r--
authentication.md.txt
11.86
KB
-rw-r--r--
backup.md.txt
6.08
KB
-rw-r--r--
cloud-init.md.txt
13.2
KB
-rw-r--r--
clustering.md.txt
1.45
KB
-rw-r--r--
config-options.md.txt
194
B
-rw-r--r--
container-environment.md.txt
3.2
KB
-rw-r--r--
contributing.md.txt
7.48
KB
-rw-r--r--
daemon-behavior.md.txt
1.2
KB
-rw-r--r--
database.md.txt
1.74
KB
-rw-r--r--
debugging.md.txt
6.34
KB
-rw-r--r--
dev-lxd.md.txt
5.06
KB
-rw-r--r--
doc-cheat-sheet-myst.md.txt
4.15
KB
-rw-r--r--
environment.md.txt
2.48
KB
-rw-r--r--
events.md.txt
25.55
KB
-rw-r--r--
faq.md.txt
7.4
KB
-rw-r--r--
getting_started.md.txt
1.93
KB
-rw-r--r--
guest-os-compatibility.md.txt
7.31
KB
-rw-r--r--
image-handling.md.txt
3.93
KB
-rw-r--r--
images.md.txt
1003
B
-rw-r--r--
index.md.txt
3.45
KB
-rw-r--r--
installing.md.txt
14.52
KB
-rw-r--r--
instance-exec.md.txt
8.96
KB
-rw-r--r--
instances.md.txt
2.42
KB
-rw-r--r--
internals.md.txt
727
B
-rw-r--r--
metrics.md.txt
13.74
KB
-rw-r--r--
networks.md.txt
2.06
KB
-rw-r--r--
operation.md.txt
1.09
KB
-rw-r--r--
production-setup.md.txt
1.35
KB
-rw-r--r--
profiles.md.txt
9.96
KB
-rw-r--r--
projects.md.txt
823
B
-rw-r--r--
remotes.md.txt
3.17
KB
-rw-r--r--
requirements.md.txt
2.2
KB
-rw-r--r--
rest-api.md.txt
9.03
KB
-rw-r--r--
restapi_landing.md.txt
385
B
-rw-r--r--
server.md.txt
3.06
KB
-rw-r--r--
storage.md.txt
1.26
KB
-rw-r--r--
support.md.txt
2.23
KB
-rw-r--r--
syscall-interception.md.txt
5.34
KB
-rw-r--r--
userns-idmap.md.txt
3.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remotes.md.txt
(remotes)= # How to add remote servers ```{note} Remote servers are a concept in the LXD CLI. If you are using the UI or the API, you can interact with different remotes by using their exposed UI or API addresses instead. ``` By default, the command-line client interacts with the local LXD daemon, but you can add other servers or clusters to interact with. One use case for remote servers is to distribute images that can be used to create instances on local servers. See {ref}`remote-image-servers` for more information. You can also add a full LXD server as a remote server to your client. In this case, you can interact with the remote server in the same way as with your local daemon. For example, you can manage instances or update the server configuration on the remote server. ## Authentication To be able to add a LXD server as a remote server, the server's API must be exposed, which means that its {config:option}`server-core:core.https_address` server configuration option must be set. When adding the server, you must then authenticate with it using the chosen method for {ref}`authentication`. See {ref}`server-expose` for more information. ## List configured remotes % Include parts of the content from file [howto/images_remote.md](howto/images_remote.md) ```{include} howto/images_remote.md :start-after: <!-- Include start list remotes --> :end-before: <!-- Include end list remotes --> ``` ## Add a remote LXD server % Include parts of the content from file [howto/images_remote.md](howto/images_remote.md) ```{include} howto/images_remote.md :start-after: <!-- Include start add remotes --> :end-before: <!-- Include end add remotes --> ``` ## Select a default remote The LXD command-line client is pre-configured with the `local` remote, which is the local LXD daemon. To select a different remote as the default remote, enter the following command: lxc remote switch <remote_name> To see which server is configured as the default remote, enter the following command: lxc remote get-default ## Configure a global remote You can configure remotes on a global, per-system basis. These remotes are available for every user of the LXD server for which you add the configuration. Users can override these system remotes (for example, by running [`lxc remote rename`](lxc_remote_rename.md) or [`lxc remote set-url`](lxc_remote_set-url.md)), which results in the remote and its associated certificates being copied to the user configuration. To configure a global remote, edit the `config.yml` file that is located in one of the following directories: - the directory specified by `LXD_GLOBAL_CONF` (if defined) - `/var/snap/lxd/common/global-conf/` (if you use the snap) - `/etc/lxd/` (otherwise) Certificates for the remotes must be stored in the `servercerts` directory in the same location (for example, `/etc/lxd/servercerts/`). They must match the remote name (for example, `foo.crt`). See the following example configuration: ``` remotes: foo: addr: https://192.0.2.4:8443 auth_type: tls project: default protocol: lxd public: false bar: addr: https://192.0.2.5:8443 auth_type: tls project: default protocol: lxd public: false ```
Close