我必须在startWeblogic.sh的JAVA_OPTIONS中设置环境变量

在Windows中,我设置为

设置JAVA_OPTIONS = -DCommonFilePath =“” -Dwindow.title =应用程序名称-Dsimulator.context_path = / SiteMinder

上面的语句在Windows中工作正常

但是,如果我尝试在Linux中进行设置,则无法接受。

JAVA_OPTIONS = -DCommonFilePath =“” -Dwindow.title =应用程序名称-Dsimulator.context_path = / SiteMinder

在服务器启动时,其显示的“ -DCommonFilePath =“”“文件或目录不存在。

请帮我。

最佳答案

您需要将JAVA_OPTIONS的值放在引号周围,并在-DCommonFilePath=""中将引号转义,如下所示:

JAVA_OPTIONS="-DCommonFilePath=\"\" -Dwindow.title=App-Name -Dsimulator.context_path=/SiteMinder"

10-01 15:19