centos 7
Few Steps to install Redis in Centos 7
A note to install Redis to new machine that running CentOS 7 Basic settings for Redis
mount: wrong fs type, bad option, bad superblock on CentOS 7
When you are mounting your nfs in CentOS, and this error appeared Reason for error You do not have NFS util in your machine Solution
How to resize OVH Public Cloud disk in CentOS 7 linux
I’m going to resize 100G SSD to 150GB SSD in Public Cloud First I check the current mounted disk [code lang=”shell”] [[email protected] ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/vda1 40G 2.4G 36G 7% / devtmpfs 3.8G 0 3.8G 0% /dev tmpfs 3.9G 0 3.9G 0% /dev/shm tmpfs 3.9G 17M 3.8G 1% …
How to resize OVH Public Cloud disk in CentOS 7 linux Read More »
How to Install MongoDB 3.2 on CentOS 7
[code lang=”shell”] vim /etc/yum.repos.d/mongodb.repo [/code] Paste this to the file and save using :wq [code lang=”shell”] [MongoDB] name=MongoDB Repository baseurl=http://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.2/x86_64/ gpgcheck=0 enabled=1 [/code] Download and install mongodb using yum [code lang=”shell”] yum install mongodb-org -y [/code] Start mongod and configure auto start while system boot [code lang=”shell”] /etc/init.d/mongod restart chkconfig mongod on [/code] Check all …