26 lines
538 B
Bash
Executable File
26 lines
538 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
## RECOMMENDATION: run this sequence of commands manually, waiting between one command and the next one to ensure service dependencies are met.
|
|
|
|
echo "Starting postgresql"
|
|
sudo systemctl start postgresql
|
|
|
|
echo "Starting activemq"
|
|
sudo systemctl start activemq
|
|
|
|
echo "Starting transform"
|
|
sudo systemctl start transform
|
|
|
|
echo "Starting tomcat"
|
|
sudo systemctl start tomcat
|
|
|
|
echo "Starting solr"
|
|
sudo systemctl start solr
|
|
|
|
echo "Starting nginx"
|
|
sudo systemctl start nginx
|
|
|
|
|
|
echo "Services have been started successfully!" |