Changes between Version 9 and Version 10 of TutorialSetupLXC
- Timestamp:
- Jul 11, 2019, 8:41:26 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TutorialSetupLXC
v9 v10 54 54 LXC should be built in by default. (You need to run these commands as sudo ) 55 55 56 * ` lxc version`56 * `sudo lxc version` 57 57 58 58 59 59 1. Initiate LXC (single host) 60 60 61 * `lxd init` 61 * `sudo lxd init` 62 62 63 {{{ 63 64 Would you like to use LXD clustering? (yes/no) [default=no]: 64 65 Do you want to configure a new storage pool? (yes/no) [default=yes]: 65 66 Name of the new storage pool [default=default]: 66 Name of the storage backend to use (btrfs, ceph, dir, lvm, zfs) [default=zfs]: dir67 Name of the storage backend to use (btrfs, dir, lvm) [default=btrfs]: dir 67 68 Would you like to connect to a MAAS server? (yes/no) [default=no]: 68 Would you like to create a new local network bridge? (yes/no) [default=yes]: 69 What should the new bridge be called? [default=lxdbr0]: 70 What IPv4 address should be used? (CIDR subnet notation, “auto” or “none”) [default=auto]: 71 What IPv6 address should be used? (CIDR subnet notation, “auto” or “none”) [default=auto]: 72 Would you like LXD to be available over the network? (yes/no) [default=no]: yes 69 Would you like to create a new local network bridge? (yes/no) [default=yes]: no 70 Would you like to configure LXD to use an existing bridge or host interface? (yes/no) [default=no]: no 71 Would you like LXD to be available over the network? (yes/no) [default=no]: 73 72 Would you like stale cached images to be updated automatically? (yes/no) [default=yes] 74 73 Would you like a YAML "lxd init" preseed to be printed? (yes/no) [default=no]: 75 74 }}} 75 76 76 77 77 78 … … 105 106 * Check IP address of the host machine: `ifconfig` 106 107 108 {{{#!comment 107 109 108 110 * Enter `sudo lxc network edit lxdbr0` 109 111 and edit, 110 {{{ 112 111 113 ipv4.address: 192.248.xx.yy/24 112 114 ipv4.nat: "false" 115 116 }}} 117 118 * Modify the default container profile to add bridged network: `lxc profile edit default` 119 120 {{{ 121 122 config: {} 123 description: Default LXD profile 124 devices: 125 eth0: 126 nictype: bridged 127 parent: lxdbr0 128 type: nic 129 root: 130 path: / 131 pool: default 132 type: disk 133 name: default 134 used_by: [] 113 135 }}} 114 136 … … 117 139 118 140 119 * ` lxc remote list`141 * `sudo lxc remote list` 120 142 121 143 … … 123 145 124 146 125 * ` lxc image list`147 * `sudo lxc image list` 126 148 127 149 … … 129 151 130 152 131 * ` lxc image list images:`132 133 134 * ` lxc image list images:ubuntu`153 * `sudo lxc image list images:` 154 155 156 * `sudo lxc image list images:ubuntu` 135 157 136 158 … … 139 161 140 162 141 * ` lxc launch ubuntu:18.04 test-ct`142 143 * ` lxc list`163 * `sudo lxc launch ubuntu:18.04 test-ct` 164 165 * `sudo lxc list` 144 166 145 167 146 168 Delete a container 147 169 148 * ` lxc stop test-ct`149 150 * ` lxc delete --force test-ct`170 * `sudo lxc stop test-ct` 171 172 * `sudo lxc delete --force test-ct` 151 173 152 174 6. Create Three Production LXCs for your institute