I have a remote ubuntu 14 installation and I am running apache solar
and apache nutch
on it. At the moment I am connecting over windows 7, with putty to my server.
Apache Solr has a if you open on the server the browser to http://localhost:8983/solr/admin/
a visual interface, to create queries and analyse data.
I would like to access this interface over ssh too? Is there sth like a visual ssh program?
I really appreciate your answer!
ssh -L 8938:your_server_ip:8983 your_server_ip
then connect with "http://localhost:8983/solr/admin/" I your browser. – Panther Sep 17 '14 at 20:52