Skip to main content

Posts

Showing posts with the label File-Sharing

RSYNC

RSYNC  is one of the most popular File Copying/Synchronizing service among Linux people. Its synchronizing while copping and consume Less network resources for its operations. CAUTION!!!! Miss use may cause original data overwrite or deletion. As an example, here in iPhonik ( iPhonik was formed as a company in the business of developing an Unified Communication Solution product and related services. ) we use rsync to take realtime backups and duplicate them on the redundant servers. Call recording which stores in the real-time server will be synchronized/ copied to the redundant server (We are using NFS as the file sharing mechanism share-directory-between-two-server-nfs  ).   How to USE Most of the time your Linux distributions comes with the installed rsync service but if you don’t have installed rsync on your Linux distribution, Debian distributions apt-get install rsync   RedHat distributions yum install rsync Now if you wish t...

Share-A-Directory-between-two-server-NFS

Share-A-Directory-between-two-server-NFS Please grant the relevant permission on the shell scripts ./client_Export.sh Takes three argument as follows 1. server ip address to be exported 2. client directory which should be exported to the particular server 3. options aka permission for the expoted folder rw: This option allows the client server to both read and write within the shared directory sync: Sync confirms requests to the shared directory only once the changes have been committed. no_subtree_check: This option prevents the subtree checking. When a shared directory is the subdirectory of a larger filesystem, nfs performs scans of every directory above it, in order to verify its permissions and details. Disabling the subtree check may increase the reliability of NFS, but reduce security. no_root_squash: This phrase allows root to connect to the designated directory E...