如何保持SOLR在远程服务器上运行
我有一个使用 solr 搜索引擎的网站,但我只能在通过 ssh 连接到服务器 (Amazon EC2) 并运行 java -jar start.jar 时才能使用它。一旦我退出 ssh 会话,它就会停止运行,并且不再可以搜索任何内容。即使我没有访问服务器,如何保持它运行?
如果需要更多澄清,请发表评论。
I have a site that uses a solr search engine, but I've only been able to use it while I'm ssh'ed into the server (Amazon EC2) and run the java -jar start.jar. As soon as I log out of the ssh session, it stops running and nothing is searchable anymore. How can I keep this running even when I'm not accessing the server?
If this needs any more clarification, just comment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用它
来实现你想要的。
I use
to achieve what you want.
要么说服它以守护进程模式运行,要么使用类似setsid的东西启动它,以将其与您的登录会话ID解除关联,这样当您的登录会话结束时它就不会被终止。
Either convince it to run in daemon mode, or start it with something like setsid to disassociate it from your login session ID, so that it won't be terminated when your login session is.