<!-- 
RSS generated by JIRA (9.7.1#970001-sha1:2222b88b221c4928ef0de3161136cc90c8356a66) at Thu Feb 08 03:28:02 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>MongoDB Jira</title>
    <link>https://jira.mongodb.org</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.7.1</version>
        <build-number>970001</build-number>
        <build-date>13-04-2023</build-date>
    </build-info>


<item>
            <title>[SERVER-12253] Parent process is not closing after fork</title>
                <link>https://jira.mongodb.org/browse/SERVER-12253</link>
                <project id="10000" key="SERVER">Core Server</project>
                    <description>&lt;p&gt;I&apos;m using following small shell script to launch MongoDB:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;#!/bin/sh&lt;br/&gt;
MONGO_DIR=&apos;/home/pawel/bin/mongo&apos;&lt;br/&gt;
$MONGO_DIR/bin/mongod --bind_ip 127.0.0.1 --logpath $MONGO_DIR/log/mongo.log --fork --dbpath $MONGO_DIR/db/ --directoryperdb&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;When I&apos;ll launch this, MongoDB process is starting but main process is not closing, i.e. I&apos;ve following in my console:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;$ /home/pawel/bin/mongo/start_mongo.sh &lt;br/&gt;
about to fork child process, waiting until server is ready for connections.&lt;br/&gt;
forked process: 10044&lt;br/&gt;
all output going to: /home/pawel/bin/mongo/log/mongo.log&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;When checking processes list, I see 3 instances of MongoDB running:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;$ ps ax | grep mongo&lt;br/&gt;
10041 pts/0    S+     0:00 /bin/sh /home/pawel/bin/mongo/start_mongo.sh&lt;br/&gt;
10042 pts/0    S+     0:00 /home/pawel/bin/mongo/bin/mongod --bind_ip 127.0.0.1 --logpath /home/pawel/bin/mongo/log/mongo.log --fork --dbpath /home/pawel/bin/mongo/db/ --directoryperdb&lt;br/&gt;
10043 ?        Ss     0:00 /home/pawel/bin/mongo/bin/mongod --bind_ip 127.0.0.1 --logpath /home/pawel/bin/mongo/log/mongo.log --fork --dbpath /home/pawel/bin/mongo/db/ --directoryperdb&lt;br/&gt;
10044 ?        Sl     0:02 /home/pawel/bin/mongo/bin/mongod --bind_ip 127.0.0.1 --logpath /home/pawel/bin/mongo/log/mongo.log --fork --dbpath /home/pawel/bin/mongo/db/ --directoryperdb&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;In log file I&apos;ve only this:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; MongoDB starting : pid=10044 port=27017 dbpath=/home/pawel/bin/mongo/db/ 64-bit host=metis&lt;br/&gt;
Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; db version v2.4.8&lt;br/&gt;
Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; git version: a350fc38922fbda2cec8d5dd842237b904eafc14&lt;br/&gt;
Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; build info: Linux ip-10-2-29-40 2.6.21.7-2.ec2.v1.2.fc8xen #1 SMP Fri Nov 20 17:48:28 EST 2009 x86_64 BOOST_LIB_VERSION=1_49&lt;br/&gt;
Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; allocator: tcmalloc&lt;br/&gt;
Sun Jan  5 11:23:02.114 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; options: &lt;/p&gt;
&lt;div class=&quot;error&quot;&gt;&lt;span class=&quot;error&quot;&gt;Unknown macro: { bind_ip}&lt;/span&gt; &lt;/div&gt;
&lt;p&gt;Sun Jan  5 11:23:02.322 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; journal dir=/home/pawel/bin/mongo/db/journal&lt;br/&gt;
Sun Jan  5 11:23:02.340 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; recover : no journal files present, no recovery needed&lt;br/&gt;
Sun Jan  5 11:23:03.332 &lt;span class=&quot;error&quot;&gt;&amp;#91;websvr&amp;#93;&lt;/span&gt; admin web console waiting for connections on port 28017&lt;br/&gt;
Sun Jan  5 11:23:03.333 &lt;span class=&quot;error&quot;&gt;&amp;#91;initandlisten&amp;#93;&lt;/span&gt; waiting for connections on port 27017&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;When I&apos;ll hit Ctrl+C in console, parent process is closing (PID=10042 from the list above) and rest of 2 are still running (PID: 10043, 10044) and I can use MongoDB.&lt;br/&gt;
When I&apos;m trying to send SIGTERM to first process (PID=10043) nothing happens, and when I&apos;ll send SIGTERM to PID=10044, (with &lt;em&gt;kill 10044&lt;/em&gt; shell command) both processes are closing and I&apos;ve following in log file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; got signal 15 (Terminated), will terminate after current cmd ends&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; now exiting&lt;br/&gt;
Sun Jan  5 11:37:05.346 dbexit: &lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: going to close listening sockets...&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; closing listening socket: 9&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; closing listening socket: 10&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; closing listening socket: 11&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; removing socket file: /tmp/mongodb-27017.sock&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: going to flush diaglog...&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: going to close sockets...&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: waiting for fs preallocator...&lt;br/&gt;
Sun Jan  5 11:37:05.346 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: lock for final commit...&lt;br/&gt;
Sun Jan  5 11:37:05.347 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: final commit...&lt;br/&gt;
Sun Jan  5 11:37:05.449 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: closing all files...&lt;br/&gt;
Sun Jan  5 11:37:05.450 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; closeAllFiles() finished&lt;br/&gt;
Sun Jan  5 11:37:05.450 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; journalCleanup...&lt;br/&gt;
Sun Jan  5 11:37:05.450 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; removeJournalFiles&lt;br/&gt;
Sun Jan  5 11:37:05.594 &lt;span class=&quot;error&quot;&gt;&amp;#91;signalProcessingThread&amp;#93;&lt;/span&gt; shutdown: removing fs lock...&lt;br/&gt;
Sun Jan  5 11:37:05.594 dbexit: really exiting now&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;And now when I&apos;ll start MongoDB server again, the same happens&lt;/p&gt;</description>
                <environment>Slackware64 current</environment>
        <key id="104554">SERVER-12253</key>
            <summary>Parent process is not closing after fork</summary>
                <type id="1" iconUrl="https://jira.mongodb.org/secure/viewavatar?size=xsmall&amp;avatarId=14703&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.mongodb.org/images/icons/priorities/major.svg">Major - P3</priority>
                        <status id="6" iconUrl="https://jira.mongodb.org/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="9">Done</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="pawelsmolinski">Pawe? Smoli?ski</reporter>
                        <labels>
                    </labels>
                <created>Sun, 5 Jan 2014 10:41:26 +0000</created>
                <updated>Wed, 10 Dec 2014 23:18:03 +0000</updated>
                            <resolved>Wed, 19 Mar 2014 02:50:17 +0000</resolved>
                                    <version>2.4.8</version>
                                                    <component>Shell</component>
                                        <votes>0</votes>
                                    <watches>7</watches>
                                                                                                                <comments>
                            <comment id="551695" author="joseph.lietz@here.com" created="Wed, 16 Apr 2014 15:12:13 +0000"  >&lt;p&gt;Follow-up to previous comment: it turns out that I might just be impatient; the parent process does exit on its own after, for me, about 40 seconds.&lt;/p&gt;</comment>
                            <comment id="551088" author="joseph.lietz@here.com" created="Wed, 16 Apr 2014 02:55:14 +0000"  >&lt;p&gt;I&apos;m experiencing this issue as well with 2.4.9. Some clues:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Can reproduce at will on linux. Behavior in OS X is normal.&lt;/li&gt;
	&lt;li&gt;The startup command I&apos;m using is:
&lt;blockquote&gt;
&lt;p&gt;mongod --fork --dbpath $SOME_PATH/data/db --logpath $SOME_PATH/log/mongod.log --pidfilepath $SOME_PATH/mongo.pid --config $SOME_PATH/config/mongodb.conf&lt;/p&gt;&lt;/blockquote&gt;&lt;/li&gt;
	&lt;li&gt;After that command refuses to return and doing ctrl-c, two processes remain (parent and child). &lt;tt&gt;mongod --shutdown&lt;/tt&gt; then correctly kills both processes.&lt;/li&gt;
	&lt;li&gt;&lt;b&gt;MOST INTERESTING&lt;/b&gt;: Running the startup command again (using the same &lt;tt&gt;$SOME_PATH&lt;/tt&gt;) results in normal behavior (parent process exits after fork).&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="518209" author="pawel@onepagecrm.com" created="Tue, 18 Mar 2014 09:56:13 +0000"  >&lt;p&gt;Hi,&lt;br/&gt;
some time ago by a mistake I&apos;ve deleted whole DB on my machine and when I&apos;ve &lt;br/&gt;
created new one, everything is working fine now.&lt;/p&gt;


&lt;p&gt;&amp;#8211; &lt;br/&gt;
Best regards,&lt;br/&gt;
Pawe&#322;.&lt;br/&gt;
&lt;b&gt;Customer Support (Tech)&lt;/b&gt;&lt;br/&gt;
OnePageCRM &quot;Simplify Sales&quot;&lt;br/&gt;
email: pawel@onepagecrm.com &amp;lt;&lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;mailto:pawel@onepagecrm.com&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;pawel@onepagecrm.com&lt;sup&gt;&lt;img class=&quot;rendericon&quot; src=&quot;https://jira.mongodb.org/images/icons/mail_small.gif&quot; height=&quot;12&quot; width=&quot;13&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/sup&gt;&lt;/a&gt;&lt;/span&gt;&amp;gt;&lt;br/&gt;
web: &lt;a href=&quot;http://www.onepagecrm.com&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.onepagecrm.com&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="518073" author="stennie" created="Tue, 18 Mar 2014 03:22:48 +0000"  >&lt;p&gt;Hi Pawel,&lt;/p&gt;

&lt;p&gt;Apologies on the delay in follow-up .. are you still experiencing this issue or were you able to find a solution?&lt;/p&gt;

&lt;p&gt;Regards,&lt;br/&gt;
Stephen&lt;/p&gt;</comment>
                            <comment id="480677" author="pawelsmolinski" created="Sat, 11 Jan 2014 17:12:58 +0000"  >&lt;p&gt;I&apos;ve launched MongoDB with GDB and after it launched, I&apos;ve sent SIGSEGV signal to parent process. In result GDB printed backtrace for this process, which should help with identification of the place where program stopped&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Sat Jan 11 18:08:17.565 Invalid access at address: 0x3e800004d3f from thread: &lt;/p&gt;

&lt;p&gt;Sat Jan 11 18:08:17.565 Got signal: 11 (Segmentation fault).&lt;/p&gt;

&lt;p&gt;Sat Jan 11 18:08:17.568 Backtrace:&lt;br/&gt;
0xde05e1 0x6d0559 0x6d0ae2 0x7ffff7bcb670 0x7ffff7bcb1dc 0x9eec01 0x6dd6b0 0x6df459 0x7ffff6df2d85 0x6cf1c9 &lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(_ZN5mongo15printStackTraceERSo+0x21) &lt;span class=&quot;error&quot;&gt;&amp;#91;0xde05e1&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(_ZN5mongo10abruptQuitEi+0x399) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x6d0559&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(_ZN5mongo24abruptQuitWithAddrSignalEiP7siginfoPv+0x262) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x6d0ae2&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /lib64/libpthread.so.0(+0xf670) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7ffff7bcb670&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /lib64/libpthread.so.0(waitpid+0x1c) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7ffff7bcb1dc&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(_ZN5mongo27initializeServerGlobalStateEb+0x461) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x9eec01&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod() &lt;span class=&quot;error&quot;&gt;&amp;#91;0x6dd6b0&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(main+0x9) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x6df459&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /lib64/libc.so.6(__libc_start_main+0xf5) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x7ffff6df2d85&amp;#93;&lt;/span&gt;&lt;br/&gt;
 /home/pawel/bin/mongo/bin/mongod(__gxx_personality_v0+0x499) &lt;span class=&quot;error&quot;&gt;&amp;#91;0x6cf1c9&amp;#93;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;</comment>
                            <comment id="480675" author="pawelsmolinski" created="Sat, 11 Jan 2014 16:55:33 +0000"  >&lt;p&gt;... and if it&apos;ll help, content of some files from /proc/&amp;lt;PARENT PROCESS PID&amp;gt;/ directory&lt;br/&gt;
File stack:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8105caca&amp;gt;&amp;#93;&lt;/span&gt; do_wait+0x1ea/0x240&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8105cf24&amp;gt;&amp;#93;&lt;/span&gt; SyS_wait4+0x64/0xe0&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff81b6f786&amp;gt;&amp;#93;&lt;/span&gt; system_call_fastpath+0x1a/0x1f&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffffffffffff&amp;gt;&amp;#93;&lt;/span&gt; 0xffffffffffffffff&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;File maps:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;00400000-014fc000 r-xp 00000000 08:02 3804598                            /home/pawel/bin/mongo/bin/mongod&lt;br/&gt;
016fc000-01774000 rw-p 010fc000 08:02 3804598                            /home/pawel/bin/mongo/bin/mongod&lt;br/&gt;
01774000-01b75000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1bc6c000-7f8e1d872000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1d872000-7f8e1da31000 r-xp 00000000 08:01 554946                     /lib64/libc-2.17.so&lt;br/&gt;
7f8e1da31000-7f8e1dc30000 ---p 001bf000 08:01 554946                     /lib64/libc-2.17.so&lt;br/&gt;
7f8e1dc30000-7f8e1dc34000 r--p 001be000 08:01 554946                     /lib64/libc-2.17.so&lt;br/&gt;
7f8e1dc34000-7f8e1dc36000 rw-p 001c2000 08:01 554946                     /lib64/libc-2.17.so&lt;br/&gt;
7f8e1dc36000-7f8e1dc3b000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1dc3b000-7f8e1dc50000 r-xp 00000000 08:01 264217                     /usr/lib64/libgcc_s.so.1&lt;br/&gt;
7f8e1dc50000-7f8e1de50000 ---p 00015000 08:01 264217                     /usr/lib64/libgcc_s.so.1&lt;br/&gt;
7f8e1de50000-7f8e1de51000 rw-p 00015000 08:01 264217                     /usr/lib64/libgcc_s.so.1&lt;br/&gt;
7f8e1de51000-7f8e1df52000 r-xp 00000000 08:01 554960                     /lib64/libm-2.17.so&lt;br/&gt;
7f8e1df52000-7f8e1e151000 ---p 00101000 08:01 554960                     /lib64/libm-2.17.so&lt;br/&gt;
7f8e1e151000-7f8e1e152000 r--p 00100000 08:01 554960                     /lib64/libm-2.17.so&lt;br/&gt;
7f8e1e152000-7f8e1e153000 rw-p 00101000 08:01 554960                     /lib64/libm-2.17.so&lt;br/&gt;
7f8e1e153000-7f8e1e237000 r-xp 00000000 08:01 281509                     /usr/lib64/libstdc++.so.6.0.18&lt;br/&gt;
7f8e1e237000-7f8e1e436000 ---p 000e4000 08:01 281509                     /usr/lib64/libstdc++.so.6.0.18&lt;br/&gt;
7f8e1e436000-7f8e1e43e000 r--p 000e3000 08:01 281509                     /usr/lib64/libstdc++.so.6.0.18&lt;br/&gt;
7f8e1e43e000-7f8e1e440000 rw-p 000eb000 08:01 281509                     /usr/lib64/libstdc++.so.6.0.18&lt;br/&gt;
7f8e1e440000-7f8e1e455000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1e455000-7f8e1e45c000 r-xp 00000000 08:01 555123                     /lib64/librt-2.17.so&lt;br/&gt;
7f8e1e45c000-7f8e1e65b000 ---p 00007000 08:01 555123                     /lib64/librt-2.17.so&lt;br/&gt;
7f8e1e65b000-7f8e1e65c000 r--p 00006000 08:01 555123                     /lib64/librt-2.17.so&lt;br/&gt;
7f8e1e65c000-7f8e1e65d000 rw-p 00007000 08:01 555123                     /lib64/librt-2.17.so&lt;br/&gt;
7f8e1e65d000-7f8e1e674000 r-xp 00000000 08:01 555095                     /lib64/libpthread-2.17.so&lt;br/&gt;
7f8e1e674000-7f8e1e874000 ---p 00017000 08:01 555095                     /lib64/libpthread-2.17.so&lt;br/&gt;
7f8e1e874000-7f8e1e875000 r--p 00017000 08:01 555095                     /lib64/libpthread-2.17.so&lt;br/&gt;
7f8e1e875000-7f8e1e876000 rw-p 00018000 08:01 555095                     /lib64/libpthread-2.17.so&lt;br/&gt;
7f8e1e876000-7f8e1e87a000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1e87a000-7f8e1e89d000 r-xp 00000000 08:01 556136                     /lib64/ld-2.17.so&lt;br/&gt;
7f8e1e974000-7f8e1ea5c000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1ea5c000-7f8e1ea9d000 rw-p 00000000 00:00 0 &lt;br/&gt;
7f8e1ea9d000-7f8e1ea9e000 r--p 00023000 08:01 556136                     /lib64/ld-2.17.so&lt;br/&gt;
7f8e1ea9e000-7f8e1eaa0000 rw-p 00024000 08:01 556136                     /lib64/ld-2.17.so&lt;br/&gt;
7fffeb38e000-7fffeb3af000 rw-p 00000000 00:00 0                          &lt;span class=&quot;error&quot;&gt;&amp;#91;stack&amp;#93;&lt;/span&gt;&lt;br/&gt;
7fffeb3ff000-7fffeb400000 r-xp 00000000 00:00 0                          &lt;span class=&quot;error&quot;&gt;&amp;#91;vdso&amp;#93;&lt;/span&gt;&lt;br/&gt;
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  &lt;span class=&quot;error&quot;&gt;&amp;#91;vsyscall&amp;#93;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;File limits:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;Limit                     Soft Limit           Hard Limit           Units     &lt;br/&gt;
Max cpu time              unlimited            unlimited            seconds   &lt;br/&gt;
Max file size             unlimited            unlimited            bytes     &lt;br/&gt;
Max data size             unlimited            unlimited            bytes     &lt;br/&gt;
Max stack size            8388608              unlimited            bytes     &lt;br/&gt;
Max core file size        0                    unlimited            bytes     &lt;br/&gt;
Max resident set          unlimited            unlimited            bytes     &lt;br/&gt;
Max processes             23978                23978                processes &lt;br/&gt;
Max open files            1024                 4096                 files     &lt;br/&gt;
Max locked memory         65536                65536                bytes     &lt;br/&gt;
Max address space         unlimited            unlimited            bytes     &lt;br/&gt;
Max file locks            unlimited            unlimited            locks     &lt;br/&gt;
Max pending signals       23978                23978                signals   &lt;br/&gt;
Max msgqueue size         819200               819200               bytes     &lt;br/&gt;
Max nice priority         0                    0                    &lt;br/&gt;
Max realtime priority     0                    0                    &lt;br/&gt;
Max realtime timeout      unlimited            unlimited            us     &lt;/p&gt;&lt;/blockquote&gt;</comment>
                            <comment id="480673" author="pawelsmolinski" created="Sat, 11 Jan 2014 16:50:49 +0000"  >&lt;p&gt;Shell environment variables and limits follow&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;pawel(17:46:14):~$ set&lt;br/&gt;
ANT_HOME=/usr/lib/ant&lt;br/&gt;
BASH=/bin/bash&lt;br/&gt;
BASHOPTS=cmdhist:expand_aliases:extquote:force_fignore:hostcomplete:interactive_comments:progcomp:promptvars:sourcepath&lt;br/&gt;
BASH_ALIASES=()&lt;br/&gt;
BASH_ARGC=()&lt;br/&gt;
BASH_ARGV=()&lt;br/&gt;
BASH_CMDS=()&lt;br/&gt;
BASH_LINENO=()&lt;br/&gt;
BASH_SOURCE=()&lt;br/&gt;
BASH_VERSINFO=(&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt;=&quot;4&quot; &lt;span class=&quot;error&quot;&gt;&amp;#91;1&amp;#93;&lt;/span&gt;=&quot;2&quot; &lt;span class=&quot;error&quot;&gt;&amp;#91;2&amp;#93;&lt;/span&gt;=&quot;45&quot; &lt;span class=&quot;error&quot;&gt;&amp;#91;3&amp;#93;&lt;/span&gt;=&quot;2&quot; &lt;span class=&quot;error&quot;&gt;&amp;#91;4&amp;#93;&lt;/span&gt;=&quot;release&quot; &lt;span class=&quot;error&quot;&gt;&amp;#91;5&amp;#93;&lt;/span&gt;=&quot;x86_64-slackware-linux-gnu&quot;)&lt;br/&gt;
BASH_VERSION=&apos;4.2.45(2)-release&apos;&lt;br/&gt;
BROWSER=/opt/firefox/firefox&lt;br/&gt;
COLORFGBG=&apos;15;0&apos;&lt;br/&gt;
COLUMNS=180&lt;br/&gt;
CPLUS_INCLUDE_PATH=/usr/lib64/qt/include&lt;br/&gt;
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-YKRI8r4UpG,guid=f526edf0e5e6d5f008d264f152c4195c&lt;br/&gt;
DESKTOP_SESSION=default&lt;br/&gt;
DIRSTACK=()&lt;br/&gt;
DISPLAY=:0&lt;br/&gt;
DM_CONTROL=/var/run/xdmctl&lt;br/&gt;
EUID=1000&lt;br/&gt;
GDK_USE_XFT=1&lt;br/&gt;
GIT_PAGER=&lt;br/&gt;
GROUPS=()&lt;br/&gt;
GS_LIB=/home/pawel/.fonts&lt;br/&gt;
GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/pawel/.gtkrc-2.0:/home/pawel/.kde/share/config/gtkrc-2.0&lt;br/&gt;
GTK_RC_FILES=/etc/gtk/gtkrc:/home/pawel/.gtkrc:/home/pawel/.kde/share/config/gtkrc&lt;br/&gt;
G_BROKEN_FILENAMES=1&lt;br/&gt;
HISTFILE=/home/pawel/.bash_history&lt;br/&gt;
HISTFILESIZE=500&lt;br/&gt;
HISTSIZE=500&lt;br/&gt;
HOME=/home/pawel&lt;br/&gt;
HOSTNAME=metis&lt;br/&gt;
HOSTTYPE=x86_64&lt;br/&gt;
IFS=$&apos; \t\n&apos;&lt;br/&gt;
INPUTRC=/etc/inputrc&lt;br/&gt;
JAVA_HOME=/opt/java&lt;br/&gt;
KDEDIRS=/usr                                                                                                                                                                        &lt;br/&gt;
KDE_FULL_SESSION=true                                                                                                                                                               &lt;br/&gt;
KDE_MULTIHEAD=false                                                                                                                                                                 &lt;br/&gt;
KDE_SESSION_UID=1000                                                                                                                                                                &lt;br/&gt;
KDE_SESSION_VERSION=4                                                                                                                                                               &lt;br/&gt;
KONSOLE_DBUS_SERVICE=:1.1283                                                                                                                                                        &lt;br/&gt;
KONSOLE_DBUS_SESSION=/Sessions/1                                                                                                                                                    &lt;br/&gt;
KONSOLE_DBUS_WINDOW=/Windows/1                                                                                                                                                      &lt;br/&gt;
KONSOLE_PROFILE_NAME=Pow&#322;oka                                                                                                                                                        &lt;br/&gt;
LANG=pl_PL                                                                                                                                                                          &lt;br/&gt;
LANGUAGE=&lt;br/&gt;
LC_ALL=pl_PL&lt;br/&gt;
LC_COLLATE=pl_PL&lt;br/&gt;
LESS=-M&lt;br/&gt;
LESSOPEN=&apos;|lesspipe.sh %s&apos;&lt;br/&gt;
LINES=50&lt;br/&gt;
LOGNAME=pawel&lt;br/&gt;
LS_COLORS=&lt;br/&gt;
LS_OPTIONS=&apos;-F -b -T 0 --color=auto&apos;&lt;br/&gt;
MACHTYPE=x86_64-slackware-linux-gnu&lt;br/&gt;
MAILCHECK=60&lt;br/&gt;
MANPATH=/usr/local/man:/usr/man&lt;br/&gt;
MINICOM=&apos;-c on&apos;&lt;br/&gt;
OPTERR=1&lt;br/&gt;
OPTIND=1&lt;br/&gt;
OSTYPE=linux-gnu&lt;br/&gt;
PATH=/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/lib/ant/bin:/opt/java/bin:/usr/lib64/kde4/libexec:/usr/lib64/qt/bin:.&lt;br/&gt;
PIPESTATUS=(&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt;=&quot;0&quot;)&lt;br/&gt;
PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/lib64/pkgconfig&lt;br/&gt;
PPID=18895&lt;br/&gt;
PROFILEHOME=&lt;br/&gt;
PS1=&apos;\u(\t):\W$ &apos;&lt;br/&gt;
PS2=&apos;&amp;gt; &apos;&lt;br/&gt;
PS4=&apos;+ &apos;&lt;br/&gt;
PWD=/home/pawel&lt;br/&gt;
QT4DIR=/usr/lib64/qt&lt;br/&gt;
QT_PLUGIN_PATH=/home/pawel/.kde/lib64/kde4/plugins/:/usr/lib64/kde4/plugins/&lt;br/&gt;
SESSION_MANAGER=local/metis:@/tmp/.ICE-unix/1036,unix/metis:/tmp/.ICE-unix/1036&lt;br/&gt;
SHELL=/bin/bash&lt;br/&gt;
SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor&lt;br/&gt;
SHELL_SESSION_ID=fb46bc0c17214000bf997d53e99ea1f7&lt;br/&gt;
SHLVL=2&lt;br/&gt;
T1LIB_CONFIG=/usr/share/t1lib/t1lib.config&lt;br/&gt;
TERM=xterm&lt;br/&gt;
UID=1000&lt;br/&gt;
USER=pawel&lt;br/&gt;
WINDOWID=56623131&lt;br/&gt;
WINDOWPATH=7&lt;br/&gt;
XCURSOR_THEME=ZipoTheme&lt;br/&gt;
XDG_CONFIG_DIRS=/etc/xdg:/etc/kde/xdg&lt;br/&gt;
XDG_CURRENT_DESKTOP=KDE&lt;br/&gt;
XDG_DATA_DIRS=/usr/share:/usr/share:/usr/local/share&lt;br/&gt;
XDG_SESSION_COOKIE=966ba2714e585a14d1ecc35c00000016-1388583258.981937-1915499397&lt;br/&gt;
XDM_MANAGED=method=classic&lt;br/&gt;
_=echo&lt;br/&gt;
__GL_YIELD=USLEEP&lt;/p&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;p&gt;$ ulimit -a&lt;br/&gt;
core file size          (blocks, -c) 0&lt;br/&gt;
data seg size           (kbytes, -d) unlimited&lt;br/&gt;
scheduling priority             (-e) 0&lt;br/&gt;
file size               (blocks, -f) unlimited&lt;br/&gt;
pending signals                 (-i) 23978&lt;br/&gt;
max locked memory       (kbytes, -l) 64&lt;br/&gt;
max memory size         (kbytes, -m) unlimited&lt;br/&gt;
open files                      (-n) 1024&lt;br/&gt;
pipe size            (512 bytes, -p) 8&lt;br/&gt;
POSIX message queues     (bytes, -q) 819200&lt;br/&gt;
real-time priority              (-r) 0&lt;br/&gt;
stack size              (kbytes, -s) 8192&lt;br/&gt;
cpu time               (seconds, -t) unlimited&lt;br/&gt;
max user processes              (-u) 23978&lt;br/&gt;
virtual memory          (kbytes, -v) unlimited&lt;br/&gt;
file locks                      (-x) unlimited&lt;/p&gt;&lt;/blockquote&gt;</comment>
                            <comment id="478753" author="eliot" created="Wed, 8 Jan 2014 05:12:29 +0000"  >&lt;p&gt;Can you send all shell environment setting and limits?&lt;br/&gt;
This is how most people start mongod, so nothing jumping out as to why its not working for you yet.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_10050" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname># Replies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                <customfield id="customfield_10055" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of 1st Reply</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 8 Jan 2014 05:12:29 +0000</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10052" key="com.atlassian.jira.toolkit:dayslastcommented">
                        <customfieldname>Days since reply</customfieldname>
                        <customfieldvalues>
                                        9 years, 44 weeks ago
    
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_18254" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Dependencies</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue><![CDATA[]]></customfieldvalue>


                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_15850" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_10057" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comment by Customer</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10056" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last commenter</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>ramon.fernandez@mongodb.com</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11151" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            9 years, 44 weeks ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_10000" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Old_Backport</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10000"><![CDATA[No]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Operating System</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10026"><![CDATA[ALL]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10051" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>eliot</customfieldvalue>
            <customfieldvalue>joseph.lietz@here.com</customfieldvalue>
            <customfieldvalue>pawel@onepagecrm.com</customfieldvalue>
            <customfieldvalue>pawelsmolinski</customfieldvalue>
            <customfieldvalue>stephen.steneker@mongodb.com</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_14254" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Product Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hrm4kf:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_12550" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2|hrwlhj:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10558" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>104215</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_23361" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Requested By</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10053" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time In Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_22870" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Triagers</customfieldname>
                        <customfieldvalues>
                                

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    <customfield id="customfield_14350" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>serverRank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hsp0qv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                    </customfields>
    </item>
</channel>
</rss>