MongoDB upgrade from 3.2 to 3.4, the manual way
This is a quick tutorial on upgrading your existing mongod binary from \mongod 3.2 to mongod 3.4. 1. verifying the version I am currently running [xxxx ~]$ mongod --version db version v3.2.10 git version: 79d9b3ab5ce20f51c272b4411202710a082d0317 OpenSSL version: OpenSSL 1.0.1e-fips 11 Feb 2013 allocator: tcmalloc modules: none build environment: distmod: rhel70 distarch: x86_64 target_arch: x86_64 2. stop the mongod on the server and issue kill of the processes [ xxxx ~]# ps -ef | grep mongod root 4870 25188 0 14:17 pts/0 00:00:00 grep --color=auto mongod root 14222 1 0 Apr25 ? 08:55:52 mongod --port 30000 --dbpath /data/mongodb/arb --logpath /data/mongodb/arblog/arb.log --replSet avlrepdev --fork root 14247 1 0 Apr25 ? 08:51:16 mongod --port 30001 --dbpath /data/mongodb/arb1 --logpath /data/mongodb/arblog/arb1.log --replSet avlrepdev --fork [ xxxx ~]# kill 14222 [xxxx ~]# kill 14247 [xxxx ~]# ps -ef | grep mongod root...