I am getting the following error as soon as I start JIRA on my Linux test system.
Java HotSpot(TM) 64-Bit Server VM warning: Failed to reserve shared memory (errno = 1)
What system or JIRA parameters to change to fix this issue ? Please advise. Thanks
Community moderators have prevented the ability to post new answers.
errno = 1 generally implies permission denied.
Refer (source):
(errno = 1)
Errno 1 is permission denied. On CentOS 6.x this is usually resolved by adding the Group ID (GID) of the server to /proc/sys/vm/hugetlb_shm_group. In your case the server runs as user dsuser and group dsuser.
echo <numeric_gid_of_dsuser> > /proc/sys/vm/hugetlb_shm_group
Read the system information page.
When you need to edit them, the memory settings are in the setenv.sh/bat
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nic, How do I check, what is configured in the system ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's nothing to do with Jira really. That error usually means that you've tried to allocate more memory to the JVM than your system is configured to allow (either it hasn't got that much memory, or there's a quota or security limit)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
64-bit Linux.
[root@test ~]# getconf LONG_BIT
64
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your Linux is 32 or 64 bit?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
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.