https://www.extremenetworks.com/product/workflow-composer/
Ubuntu Server:
sudo apt-get install curl
- curl -sSL https://stackstorm.com/packages/install.sh | bash -s — –user=st2admin –password=’Ch@ngeMe’
Take EWC for a spin!
https://ewc-docs.extremenetworks.com/start.html
You can also do a lot through the Web UI: Check the history, run actions, configure rules, install packs…check it out at https://{YOUR_ST2_IP}. Login is the same as via the st2
CLI. Default is st2admin
/Ch@ngeMe
.
https://ewc-docs.extremenetworks.com/reference/cli.html
Converting existing scripts into actions:
https://ewc-docs.extremenetworks.com/actions.html#ref-actions-converting-scripts
st2 run packs.setup_virtualenv packs=default
#####################################################################
Action Registration
To register a new action:
- Place it into the content location.
- Tell the system that the action is available.
The actions are grouped in packs and located at /opt/stackstorm/packs
For hacking one-off actions, the convention is to use the default
pack – just create your action in /opt/stackstorm/packs/default/actions
. Once you have tested it out, you should move it to a dedicated pack.
Register an individual action by calling st2 action create my_action_metadata.yaml
. To reload all actions, use st2ctl reload --register-actions
###############################################
Restart network services:
sudo vim /etc/network/interfaces
# The secondary network interface
auto eth1
iface eth1 inet dhcp
sudo /etc/init.d/networking restart
or
sudo ifdown -a
sudo ifup -a
Enable FTP:
sudo apt install vsftpd
sudo vi /etc/vsftpd.conf
sudo systemctl restart vsftpd.service
https://help.ubuntu.com/lts/serverguide/ftp-server.html.en
sudo chmod -R 777 .