-
-
Notifications
You must be signed in to change notification settings - Fork 253
Home
Script-server provides Web GUI for your scripts and remote execution facility.
All you need to do, is create link/configuration to your scripts and start the server. Users will be able to access your scripts via web-browser and execute them. Everything will run on your machine, so users shouldn't care about setting up an environment or working via ssh.
GUI is very straightforward and easy-to-use for anyone. Example of the user interface:
- Users can specify script parameters. Different parameter types are supported [conf-script]
- Providing immediate output to the user and reading his input (if script is interactive)
- LDAP authentication support [conf-server]
- Alerting in case of script execution failures (email or web hook) [conf-server]
- HTTPS support [conf-server]
- Transparent logging and auditing
- Bash colors/styles support [conf-script]
- Download script execution results [conf-script]
[conf-script] These features are configurable per script, see script config page for details
[conf-server] These features are configurable for the whole server, see server config page for details
Python 3.4+ with following modules:
- Tornado
Some features can require additional modules. Such requirements are specified in a corresponding feature description.
OS support:
- Linux (main). Tested and working on Debian 8,9
- Windows (additional). Light testing on Windows 7
- MacOS (additional). Not tested. Most probably some fixes are needed
Any more or less up to date browser with enabled JS
Internet connection is not needed. All the files are loaded from the server.
- Clone/download the repository
- Run tools/init.py script (this will download javascript libraries)
- Create configurations for your scripts in conf/runners/ folder (see script config page for details)
- Launch launcher.py from script-server folder
- Windows command: launcher.py
- Linux command: ./launcher.py
By default, server will run on 5000 port, over HTTP protocol.
All the features listed above and some other minor features can be configured in conf/conf.json file. It is allowed not to create this file. In this case default values will be used. See server config page for details
If you want server to work over HTTPS, you should specify server key and certificate in server configuration.
Completely no security! Use it only in local network for trusted users.
All web/operating logs are written to the logs/server.log Additionally each script logs are written to separate file in logs/processes. File name format is {script_name}_{client_address}_{date}_{time}.log.
Script-server has bundled configs/scripts for testing/demo purposes, which are located in samples folder. You can link/copy these config files (samples/configs/*.json) to server config folder (conf/runners).