after change the java encoding by adding the code below to to"setenv.sh".
JVM_SUPPORT_RECOMMENDED_ARGS="-Dfile.encoding=utf-8
-Dsun.jnu.encoding=utf-8", JIRA does not start.
Inside error message the first line is:
java.nio.charset.IllegalCharsetNameException: utf-8-Dsun.jnu.encoding=utf-8
and it says that Java can't find charset "utf-8-Dsun.jnu.encoding=utf-8" because it does not exist. The root cause is that you missed space before the second option and this option was used part of charset name.
You should type like this:
JVM_SUPPORT_RECOMMENDED_ARGS="-Dfile.encoding=utf-8 -Dsun.jnu.encoding=utf-8"
logs
/opt/atlassian/jira/logs/catalina.out:
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=384m; support was removed in 8.0
Error occurred during initialization of VM
java.nio.charset.IllegalCharsetNameException: utf-8-Dsun.jnu.encoding=utf-8
at java.nio.charset.Charset.checkName(Unknown Source)
at java.nio.charset.Charset.lookup2(Unknown Source)
at java.nio.charset.Charset.lookup(Unknown Source)
at java.nio.charset.Charset.defaultCharset(Unknown Source)
at sun.nio.cs.StreamEncoder.forOutputStreamWriter(Unknown Source)
at java.io.OutputStreamWriter.<init>(Unknown Source)
at java.io.PrintStream.<init>(Unknown Source)
at java.io.PrintStream.<init>(Unknown Source)
at java.lang.System.newPrintStream(Unknown Source)
at java.lang.System.initializeSystemClass(Unknown Source)
nothing more output
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like a standard setenv.sh to me. No sign of your extra flags, so I assume this one is working ok.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes, but if you add a flag: JVM_SUPPORT_RECOMMENDED_ARGS="-Dfile.encoding=utf-8-Dsun.jnu.encoding=utf-8" does not start, flag needed to properly launch the plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, we come back to the question I asked before 1. Why are you adding these flags? You probably don't need them 2. What does the log file say?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex,
Try reverting the change so you can start JIRA, but if possible attach here the setenv file that wasn't working so we can take a look.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then take the flags out.
There are two things here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.