| 207 | |
| 208 | ** Cockpit Web Conssole |
| 209 | |
| 210 | [[Image(cockpit.png,500px)]] |
| 211 | |
| 212 | Cockpit is a nice user friendly web based administrator console that allows users to configure and manage remote servers. To install on the GBlade server use the following commands: |
| 213 | |
| 214 | {{{ |
| 215 | sudo apt install cockpit |
| 216 | sudo systemctl enable cockpit |
| 217 | sudo systemctl start cockpit |
| 218 | }}} |
| 219 | |
| 220 | Once installed it can be accessed by a browser on the network at the following url: |
| 221 | |
| 222 | {{{ |
| 223 | https://<ip address>:9090 |
| 224 | or |
| 225 | https://<localhost>:9090 |
| 226 | }}} |
| 227 | |
| 228 | Where localhost is the host name of the computer as set in the /etc/hostname file. |
| 229 | |
| 230 | For more info on using Cockpit see the following link: [https://cockpit-project.org/ Cockpit] |
| 231 | |
| 232 | ** Remote Management with MeshCentral |
| 233 | |
| 234 | [[Image(meshcentral.png,500px)]] |
| 235 | |
| 236 | MeshCentral is an opensource, multi-platform, self-hosted, feature packed remote management applications. It allows for remote access to your GBlades. |
| 237 | |
| 238 | See the following link for instructions on using and installing: [https://meshcentral.com/info/ Link] |
| 239 | |
| 240 | For a quick trial without installing the host software, you can create a free "Public Server Account" on the MeshCental website and then add clients to this account. |
| 241 | |
| 242 | To install the client agent on a GBlade, click the "Agent" link under my devices tab, select "Linux/BSD" operating system and then copy the command line code from the popup box and run it from your command line on the GBlade. After completion, the GBlade will show up as a device in the MeshCentral dashboard. |
| 243 | |
| 244 | Example command line code (note keys have been edited out): |
| 245 | |
| 246 | {{{ |
| 247 | (wget "https://meshcentral.com/meshagents?script=1" -O ./meshinstall.sh || wget "https://meshcentral.com/meshagents?script=1" --no-proxy -O ./meshinstall.sh) && chmod 755 ./meshinstall.sh && sudo -E ./meshinstall.sh https://meshcentral.com 'xxxxxxxxxxxxx' || ./meshinstall.sh https://meshcentral.com 'xxxxxxxxxxxxxx' |
| 248 | }}} |
| 249 | |
| 250 | [[Image(meshcentralagent.png,300px)]] |
| 251 | |
| 252 | MeshCentral Dashboard with GBlade client |
| 253 | |
| 254 | [[Image(meshcentral1.png,500px)]] |
| 255 | |
257 | | ** Cockpit Web Conssole |
258 | | |
259 | | [[Image(cockpit.png,500px)]] |
260 | | |
261 | | |
262 | | Cockpit is a nice user friendly web based administrator console that allows users to configure and manage remote servers. To install on the GBlade server use the following commands: |
263 | | |
264 | | {{{ |
265 | | |
266 | | sudo apt install cockpit |
267 | | sudo systemctl enable cockpit |
268 | | sudo systemctl start cockpit |
269 | | }}} |
270 | | |
271 | | Once installed it can be accessed by a browser on the network at the following url: |
272 | | |
273 | | {{{ |
274 | | https://<ip address>:9090 |
275 | | or |
276 | | https://<localhost>:9090 |
277 | | |
278 | | }}} |
279 | | |
280 | | Where localhost is the host name of the computer as set in the /etc/hostname file. |
281 | | |
282 | | For more info on using Cockpit see the following link: [https://cockpit-project.org/ Cockpit] |
283 | | |
284 | | |