I am using elasticsearch.zip , and kibana.zip in linux . Elastic search have option to run as daemon using (elasticsearch -d -p pid). it is working fine after we closed the putty. How can achieve the same for kibana . I tried with "kibana &". after closing the putty session , i couldn't access it . Any solution highly appreciated.
You can either start kibana process as start-up daemon once your elasticsearch instance is also set to start at boot time. Or else while starting it up manually use the nohup
command to start it like: nohup ./bin/kibana &
This way the kibana process will ignore SIGHUP such as closing the putty session and keep itself running.