Skip to content
Snippets Groups Projects
Commit 79ff7b92 authored by kohleman's avatar kohleman
Browse files

changed the relative path ~ to a more robust one: ~openbis

SVN: 14584
parent 88d3dd34
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Shuts down openBIS server
~/sprint/openBIS-server/apache-tomcat/bin/shutdown.sh
~openbis/sprint/openBIS-server/apache-tomcat/bin/shutdown.sh
#!/bin/bash
# Shows openBIS server log
less ~/sprint/openBIS-server/apache-tomcat/logs/openbis_log.txt
less ~openbis/sprint/openBIS-server/apache-tomcat/logs/openbis_log.txt
#!/bin/bash
# Starts up openBIS server
~/sprint/openBIS-server/apache-tomcat/bin/startup.sh
~openbis/sprint/openBIS-server/apache-tomcat/bin/startup.sh
#!/bin/bash
# Shows openBIS server log with tail -f
tail -f ~/sprint/openBIS-server/apache-tomcat/logs/openbis_log.txt
tail -f ~openbis/sprint/openBIS-server/apache-tomcat/logs/openbis_log.txt
#!/bin/bash
# Shuts down DSS
~/sprint/datastore_server/datastore_server.sh stop
~openbis/sprint/datastore_server/datastore_server.sh stop
#!/bin/bash
# Shows DSS log
less ~/sprint/datastore_server/log/datastore_server_log.txt
less ~openbis/sprint/datastore_server/log/datastore_server_log.txt
#!/bin/bash
# Starts up DSS
~/sprint/datastore_server/datastore_server.sh start
~openbis/sprint/datastore_server/datastore_server.sh start
#!/bin/bash
# Shows DSS log with tail -f
tail -f ~/sprint/datastore_server/log/datastore_server_log.txt
tail -f ~openbis/sprint/datastore_server/log/datastore_server_log.txt
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment