我正在使用apache-tomcat。我的solr在我的localhost上运行正常。现在我想把它放在网上。在apache-tomcat中,在我的bin文件夹中我把我的solr dir.But在线,我没有任何bin文件夹。所以任何人都可以告诉我如何配置solr在我的网站主持人dir.thanks提前
答案 0 :(得分:2)
首先,通过要求身份验证来保护整个tomcat web admin gui。首先,在/etc/tomcat6/tomcat-users.xml
中创建一个新用户<tomcat-users>
<role rolename="admin"/>
<role rolename="manager"/>
<role rolename="proxyUsers"/>
<user username="jorno" password="XXXXX" roles="admin,manager,proxyUsers"/>
<user username="proxyUser" password="XXXXXX" roles="proxyUsers"/>
</tomcat-users>
在文件/etc/tomcat6/web.xml
中添加安全性约束<security-constraint>
<web-resource-collection>
<web-resource-name>
Solr authenticated application
</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>solrUsers</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Basic Authentication</realm-name>
</login-config>
<security-role>
<description>solr users</description>
</security-role>
请记住重启tomcat
/etc/init.d/tomcat6 restart
访问您的tomcat solr应用程序web gui并检查身份验证是否有效。
现在我们在apache中创建实际的代理。首先,创建一个简单的网站。 PHP是必需的。以下示例vhost将执行此操作。注意重写。
q.example.com - Solr搜索引擎代理
<VirtualHost *>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/q.example.com
ServerName q.example.com
ServerAlias solr.example.com
AddDefaultCharset UTF-8
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
# REWRITES
RewriteEngine on
# Debug:
# RewriteLog /tmp/rwlog
# RewriteLogLevel 9
RewriteRule ^/([^/]+)/? /index.php [NC,L]
</VirtualHost>
记得重新加载apache
/etc/init.d/apache2 reload
现在在站点的根目录中创建一个index.php文件。根据您更新索引的频率,您可能希望让用户缓存代理的内容。我在这里设置了5分钟。
<?php
// Avvoid too long client cache
// calc an offset of 5 minutes
$offset = 60 * 5;
// calc the string in GMT not localtime and add the offset
$expire = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
//output the HTTP header
Header($expire);
// Write the result from solr
Echo file_get_contents('http://proxyUser:[password]@127.0.0.1:8080/solr/select?'.$_SERVER["QUERY_STRING"]);
?>
这就是它。您现在可以像这样测试代理
http://q.example.com/select?q= %3A &安培;缩进=上