Configuring modules from terminal without WebStatus
-
- Posts: 5
- Joined: 27 Dec 2024, 20:22
Configuring modules from terminal without WebStatus
Is it possible to configure the RO and AIO modules from the Linux terminal with root access without having to use the WebStatus page? The CPU unit is a RevPi Connect 4.
Re: Configuring modules from terminal without WebStatus
Short answer is No,
long answer would be it depends... So in case you want do letz say deploy a configuration to many other systems just take a look at the following knowledge base page "Cloning"
long answer would be it depends... So in case you want do letz say deploy a configuration to many other systems just take a look at the following knowledge base page "Cloning"
Re: Configuring modules from terminal without WebStatus
Currently the only way to configure RevPi modules is through PiCtory.
In case the problem is remote-only access to the RevPi, the Webstatus/Cockpit and PiCtory port can be tunneled through SSH with the option (see the ssh(1) man page):
This maps the remote port 41443 to the local machine on 41443 making Webstatus and PiCtory available on https://localhost:41443. This way the modules of a remote RevPi can be configured on a client that isn't on the same network.
In case the problem is remote-only access to the RevPi, the Webstatus/Cockpit and PiCtory port can be tunneled through SSH with the
Code: Select all
-L
Code: Select all
ssh -L 41443:localhost:41443 $REMOTE_IP
Last edited by tboehler on 07 Jan 2025, 08:29, edited 1 time in total.