To start with Dockers: Installation of Docker On linux based system: ---------------------- Note: we are using Redhat 7.1 / centos 7.1 A) installing docker and its dependencies ================================ [root@localhost ~]# yum install docker docker-selinux -y Starting and enabling service [root@localhost ~]# systemctl restart docker [root@localhost ~]# systemctl enable docker [root@localhost ~]# systemctl status docker docker.service - Docker Application Container Engine Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled) Active: active (running) since Thu 2017-10-07 22:46:00 IST; 5s ago Docs: http://docs.docker.com Main PID: 11000 (docker) CGroup: /system.slice/docker.service └─11000 /usr/bin/docker daemon --se...
SSHFS is the file system which is generally used to mount directories remotely using secure shell protocol. Note: First of all make sure that you have installed ssh server on your system from where you want to mount filesystem. On server side : Step 1: Install the software [root@localhost]# yum install openssh-server -y Step 2: Start the service [root@localhost ~]# service sshd restart On client Side : Step 1 : Install the software for client side [root@localhost ~]# yum install fuse-sshfs # For redhat / centos For Ubuntu /Debian [root@localhost ~]# apt-get install sshfs Step 2: For mounting [root@localhost ~]# mkdir /mnt/new [root@localhost ~]#...
Comments
Post a Comment