I'm baffled as to how to uncomment and comment connectors in the server.xml file.
Regardless of the edits I make the service fails to restart.
To comment or uncomment connectors in the server.xml file, you need to follow these steps:
<!-- <Connector port="8080" protocol="HTTP/1.1" ... /> -->
To uncomment a connector, remove the <!-- and --> comment markers from the beginning and end of the line, respectively. For example:
<Connector port="8080" protocol="HTTP/1.1" ... />
Save the server.xml file after making the necessary changes.
After modifying the server.xml file, you need to restart your server for the changes to take effect. If the service fails to restart, there might be other issues in the configuration or dependencies that need to be addressed.
Check the server logs in the installation folder for any error messages
<jira-installation-directory>/logs/catalina.out
Text that is in between <!-- TEXTTEXTTEXT --> is commented out. To uncomment it you would remove the <!-- --> part.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sean McCann
Typically in Linux/Windows you would comment an XML file using '<!--' at the start of the line and end it with '-->'
I can't comment exactly on why the service won't start, but that's how you would comment out lines of a file.
Hope that helps - Steve.
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.