受付ポートの変更
Luxorを利用する際のポート番号を変更する手順を記載しています。
本手順では11080に変更することで記載していますが、実際に利用するポート番号に置き換えてご検討ください。
INSUITEの設定変更
INSUITEからLuxorへリクエストを送る際のLuxorのポート設定を変更します。
これらの作業は全てのINSUITE APサーバ、管理サーバで実施する必要があります。
- 設定ファイルdomain.datの修正
# vi /home/DreamArts/data/system/domain.dat
luxor_port=11080
- httpdの再起動
# /etc/init.d/httpd stop
# /etc/init.d/httpd start
SmartDBの設定変更
SmartDBからLuxorへリクエストを送る際のLuxorのポート設定を変更します。
これらの作業は全てのSmartDBサーバで実施する必要があります。
- 設定ファイルdefault.xmlの修正
# vi /etc/hibiki/default.xml
<fullTextSearch.luxor.server.contextUrl>http://luxor-server:11080/solr/</fullTextSearch.luxor.server.contextUrl>
- 設定ファイルfull_text_search.xmlの修正
# vi /etc/hibiki/full_text_search.xml
<reindex-settings.server.contextUrl>http://luxor-server:11080/solr/</reindex-settings.server.contextUrl>
- tomcatの再起動
service tomcat stop
service tomcat start
Luxorの設定変更
Luxorが稼働するポート設定を変更します。
- 設定ファイルの修正
# cd /root/luxor.2.7.0/
# vi setup.conf
solrPort=11080
- 設定内容の反映
# sh setup.sh -reflectConf
- solrTomcatの再起動
# service solrTomcat stop
# service solrTomcat start