https://github.com/sepppenner/microstrategyiserverscripts
Scripts to show the MicroStrategy Intelligence Server's status, version, to start and stop the MicroStrategy Intelligence Server and check the state afterwards.
https://github.com/sepppenner/microstrategyiserverscripts
Last synced: 12 days ago
JSON representation
Scripts to show the MicroStrategy Intelligence Server's status, version, to start and stop the MicroStrategy Intelligence Server and check the state afterwards.
- Host: GitHub
- URL: https://github.com/sepppenner/microstrategyiserverscripts
- Owner: SeppPenner
- License: mit
- Created: 2016-12-06T17:03:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-06-04T14:45:23.000Z (about 6 years ago)
- Last Synced: 2025-01-06T02:10:53.534Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: License.txt
Awesome Lists containing this project
README
MicroStrategyIServerScripts
====================================
MicroStrategyIServerScripts provide different scripts for the MicroStrategy Intelligence Server:
- isstate.py: Script to show the MicroStrategy Intelligence Server's status
- isversion.py: Script to show the MicroStrategy Intelligence Server's version
- isstart.py: Script to start the MicroStrategy Intelligence Server and check the state afterwards
- isstop.py: Script to stop the MicroStrategy Intelligence Server and check the state afterwards
- isterminate.py: Script to terminate the MicroStrategy Intelligence Server (Hardcore-stopping the Intelligence Server)
- isrestart.py: Script to restart the MicroStrategy Intelligence Server
The script was written and tested in Python 2.6.8 but runs as well in Python 3.
[](https://ci.appveyor.com/project/SeppPenner/microstrategyiserverscripts)
[](https://github.com/SeppPenner/MicroStrategyIServerScripts/issues)
[](https://github.com/SeppPenner/MicroStrategyIServerScripts/network)
[](https://github.com/SeppPenner/MicroStrategyIServerScripts/stargazers)
[](https://raw.githubusercontent.com/SeppPenner/MicroStrategyIServerScripts/master/License.txt)
[](https://snyk.io/test/github/SeppPenner/MicroStrategyIServerScripts)
## Basic usage:
To add those scripts, copy the py-Files to your server under the /root-Folder and change the mode
to be executable via:
```bash
chmod 755 isstate.py
chmod 755 isstart.py
chmod 755 isstop.py
chmod 755 isversion.py
chmod 755 isterminate.py
chmod 755 isrestart.py
```
## To execute the scripts:
```python
python isstate.py
python isstart.py
python isstop.py
python isversion.py
python isterminate.py
python isrestart.py
```
## To define the aliases for the current user:
Create a new file (if it doesn’t already exist) in the / folder (e.g. /root) called .bashrc and add the aliases from [Bash.basrc](https://github.com/SeppPenner/MicroStrategyIServerScripts/blob/master/Bash.bashrc).
Or copy the file [Bash.basrc](https://github.com/SeppPenner/MicroStrategyIServerScripts/blob/master/Bash.bashrc) to the server and rename it to .bashrc.
## Change the paths in the scripts:
You will need to change the paths in the scripts to your MicroStrategy Intelligence Server's installation file.
Change history
--------------
See the [Changelog](https://github.com/SeppPenner/MicroStrategyIServerScripts/blob/master/Changelog.md).