-
Bug
-
Resolution: Duplicate
-
Medium
-
None
-
3.4.3
-
Solaris
-
3.04
-
When JIRA 3.4.3 Standalone is started on Solaris, it prints:
./catalina.sh: JAVA_OPTS= -Xms128m -Xmx256m -Djava.awt.headless=true : is not an identifier
This is because in bin/setenv.sh JIRA uses the bash syntax for setting a variable, which isn't compatible with vanilla /bin/sh:
export JAVA_OPTS=" $JAVA_OPTS -Xms128m -Xmx256m -Djava.awt.headless=true "
To fix, change the line to this:
JAVA_OPTS=" $JAVA_OPTS -Xms128m -Xmx256m -Djava.awt.headless=true "
export JAVA_OPTS
- duplicates
-
JRASERVER-8979 Bash syntax in shell script setenv.sh
-
- Closed
-