Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
root
Creator II
Creator II

TESB - Open Studio - How to access karaf console when starting using "start" instead of "trun"

So, I start an instance of karaf using ./start

It brings up the karaf environment up and running. If I need to access the shell/ console to execute any commands, what options are available (except for the web)?

 

Is it possible to get the shell console without "./stop" and executing "./trun"?

 

Please advise.

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable

In your bin folder (where the trun.bat or .sh is) you will find a client.bat/.sh. Use that and it will hook into your service. You may need to supply parameters such as host and a port. I think you will probably get away with....

 

client -h localhost

....from your local machine

View solution in original post

3 Replies
vapukov
Master II
Master II

You can connect to runtime by ssh (normal terminal session)


to connect use the same port what You setup to Runtime and login credentials same as web

Anonymous
Not applicable

In your bin folder (where the trun.bat or .sh is) you will find a client.bat/.sh. Use that and it will hook into your service. You may need to supply parameters such as host and a port. I think you will probably get away with....

 

client -h localhost

....from your local machine

root
Creator II
Creator II
Author

This is superb. This worked for me!