2015-04-29 55 views
-1

如何在Hybris中配置tcServer在Hybris中配置tcServer

我發現tcServer設置在/bin/platform/project.properties,哪些屬性需要配置?

tomcat.context.template=${HYBRIS_CONFIG_DIR}/tomcat/tomcat_context.tpl 

# The directory into which files created by "ant production" are created 
#production.output.path=${HYBRIS_TEMP_DIR}/hybrisServer 

# Choose the type of server: tomcat or tcserver 
bundled.server.type=tcserver 

# Absolute path to tomcat 
#bundled.tomcat.home=${platformhome}/tomcat 

#Version of tomcat server 
#bundled.tomcat.version=7.0.52 

# Absolute path to tcserver 
bundled.tcserver.home=${HYBRIS_CONFIG_DIR}/tcServer 

# tcserver's tomcat version 
bundled.tcserver.tomcat.version=7.0.42.A.RELEASE 

# Relative path to tcserver's tomcat 
bundled.tcserver.tomcat.home=tomcat-${bundled.tcserver.tomcat.version} 

# Name of an server instance 
#bundled.tcserver.instance=instance1 

# Name of an instance template to use: hybris or hybris_insight 
bundled.tcserver.template=hybris 


production.output.path=${HYBRIS_TEMP_DIR}/hybrisServer 
+0

問題不清楚。你想達到什麼目的?默認情況下爲 – jhamu

+0

hybris在tomact上運行,但我想在tcServer上運行? PLZ電話步驟來配置它 –

回答

1

自從5.1版本,採用hybris不再出貨 的tcServer嵌入採用hybris平臺。爲了使用tc服務器 ,您需要獨立安裝並配置hybris平臺 以使用此服務器。

啓用了SpringSource的tcServer:

此前5.1版本,SpringSource的的tcServer出廠時採用hybris平臺。要啓用它,您必須:

  1. 打開local.properties文件。
  2. 對於bundled.server.type屬性,請設置值tcserver。
  3. 設置bundled.tcserver.instance屬性。
  4. 調用ant deployant all(已包含部署調用),用於將配置文件從您的{HYBRIS_CONFIG_DIR}/tcServer/conf文件夾部署到tcSServer實例。如果SpringSource tcServer實例還沒有創建,它是隱式地通過部署過程創建的。

運行的SpringSource的tcServer

  1. 在Windows上:從平臺的bin目錄調用 tcserver.bat INSTANCE_NAME 。
  2. 在Linux上:從平臺的bin目錄中調用 ./tcserver.sh instance_name 。

請記住將instance_name替換爲要運行的tcServer實例的實際名稱。

有關詳細信息,請點擊此鏈接:

https://wiki.hybris.com/display/release5/SpringSource+tcServer

+0

我做到了這一點,但在服務器啓動我找到一個服務器=只有Tomcat –