Pro.Monitor Cockpit
User Guide
Support
User Guide
Support
The application can be installed on most common Linux distributions, the syntax of the commands described below might change from one distribution to another
To install Pro.Monitor Cockpit, download the install package and extract the compressed file in your home directory. Do not copy the archive in /opt folder
tar -xvzf Pro.Monitor-Cockpit-VERSION_BUILD_NUMBER.tar.gz
This will create the following files:
Run install.sh
The Pro.Monitor Cockpit is installed by default in /opt
You can now start the application:
systemctl start promonitor-cockpit
systemctl stop promonitor-cockpit ./update.sh systemctl start promonitor-cockpit
Older versions are not deleted during an update from the OS. You will have to delete old version folders manually
Before to installing Pro.Monitor Cockpit, open install.sh script and update the pmDir variable
pmDir="/opt"
Then, open promonitor-cockpit.service and set the same folder on the following lines :
WorkingDirectory=/opt/Pro.Monitor-Cockpit/ ExecStart=/opt/Pro.Monitor-Cockpit/bin/startup.sh
Change port.http.nonssl and port.http.ssl value in the file /opt/Pro.Monitor-Cockpit/bin/setenv.sh
systemctl stop promonitor-cockpit vi /opt/Pro.Monitor-Cockpit/bin/setenv.sh # change the appropriate port systemctl start promonitor-cockpit
Change the -Xms and -Xmx value in /opt/Pro.Monitor-Cockpit/bin/setenv.sh to define minimum and maximum allocated memory
systemctl stop promonitor-cockpit vi /opt/Pro.Monitor-Cockpit/bin/setenv.sh systemctl start promonitor-cockpit
sudo firewall-cmd –zone=public –add-port=9888/tcp –permanent sudo firewall-cmd –reload
sudo iptables -I INPUT -p tcp -m tcp –dport 9888 -j ACCEPT sudo service iptables save
proxy_pass http://<LOCAL SERVER>:<LOCAL PORT>; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header host $host; proxy_set_header X-forward-for $proxy_add_x_forwarded_for;