Install latest Nodejs and NPM on CentOS 7
Install latest Nodejs and NPM on CentOS 7 Read More »
A note to install Redis to new machine that running CentOS 7 Basic settings for Redis
Few Steps to install Redis in Centos 7 Read More »
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
mount: wrong fs type, bad option, bad superblock on CentOS 7 Read More »
I’m going to resize 100G SSD to 150GB SSD in Public Cloud First I check the current mounted disk [code lang="shell"] [root@db1 ~]# 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 »
[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
How to Install MongoDB 3.2 on CentOS 7 Read More »