User Configuration#
Configuring Users#
Warning
Use the swtp_users tool from the docker image to configure users for access it uses a sqlite3 db for storage
Add User#
Use the following command to add a user to the system
Note
docker exec sshproxyweb /usr/bin/swtp_users –new-user –password hello_world –userid mardux
Change User Password#
Use the following command to change a users password in the system
Note
docker exec sshproxyweb /usr/bin/swtp_users –change-password –password hello_world –userid gideon
Change User To Admin User#
Use the following command to change a user to an ‘admin’ user in the system
Note
docker exec sshproxyweb /usr/bin/swtp_users –update-user –admin –userid gideon
Remove Admin user property from a User#
Use the following command to remove a users ‘admin’ propertry user in the system
Note
docker exec sshproxyweb /usr/bin/swtp_users –update-user –userid gideon
Delete A User#
Use the following command to delete a users from the system
Note
docker exec sshproxyweb /usr/bin/swtp_users –delete-user –userid gideon