| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
Enable a WebSocket shell endpoint at /.terminal for browser-based terminal access.
jss start --terminalJSS_TERMINAL=true jss startConnect with xterm.js or any WebSocket terminal client:
const ws = new WebSocket('wss://your.pod/.terminal')
ws.onmessage = (e) => terminal.write(e.data)
terminal.onData((data) => ws.send(data))Manage IdP user passwords from the command line.
# Set password interactively
jss passwd <username>
# Set password directly
jss passwd <username> --password <newpassword>
# Generate and print a random password
jss passwd <username> --generate| Flag | Description |
|---|---|
| --password <pw> | Set password non-interactively |
| --generate | Generate random password and print it |
| -r, --root <path> | Data directory (default: ./data) |
# Reset a user's password
jss passwd alice --password newsecretpass
# Generate a random password for a user
jss passwd bob --generate
# Output: New password for bob: a7Bx9kQ2mP...
# Interactive (prompts for password)
jss passwd alice| Back | FazBrowse Home | New Git URL |