Sponsored Content
Top Forums Shell Programming and Scripting How to display files of server2 in server1? Post 302789601 by linuxart on Thursday 4th of April 2013 01:15:41 AM
Old 04-04-2013
on server2:

1. Install nfs-utils package #yum install nfs*
2.the /etc/exports file will be available
3.#vi /etc/exports
enter following to export the directory.
/etc/data/ server1(rw,sync,no_root_squash)

Note: you can use the IP address of server1 instead of hostname.
save file
4.restart nfs service and portmap service.
/etc/init.d/nfs restart
/etc/init.d/portmap restart

on Server1:
5.use following command on server1 to verify if the nfs mount point is working.
#showmount -e server2
This will show the /etc/data directory.

6. create a directory on server1 and mount the server2 directory as below.

Ex. on server1 create a directory /mnt/server2

#mkdir /mnt/server2

7. mount the server2 directory on server1
server1#mount -t nfs server2:/etc/data /mnt/server2

now you can list the files in directory /mnt/server2 which are actually exist on server2.

you can permanently mount the mount point using below.

in /etc/fstab add following

server2:/etc/data /mnt/server2 nfs defaults 0 0
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How can i display the files only?

Hi! How can i display only the ordinary files of a current directory? I don't want to show any directory or hidden file information. Kindly share your thought. Thanks in advance for your reply. Regards. (3 Replies)
Discussion started by: satyakide
3 Replies

2. Shell Programming and Scripting

how to display only hidden files

how can i display only and only hidden file in the current directory. (7 Replies)
Discussion started by: useless79
7 Replies

3. Shell Programming and Scripting

Ftp from server1 and upload to server3 from server2

Hi , i have three server server1 -> Unix OS ,ftp enable IP ->10.8.219.190 server 2 -> Unix OS ,ftp enable NIC 1 IP ->10.8.219.191 ,NIC2 ->192.168.0.5 server3 -> windows OS ,ftp enable NIC1 ->192.168.0.6. hence server 1 and server 3 can not communicate ,but server 2 can... (1 Reply)
Discussion started by: suchintkotia
1 Replies

4. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

5. Shell Programming and Scripting

how to append file contents at server1 to another file in server2

hi is there any way to append the file contents at server1 to another file in server2 by using scp. right now am transferring files to the server2 and using cat command for appending... (2 Replies)
Discussion started by: aemunathan
2 Replies

6. Virtualization and Cloud Computing

Sun Cluster3.2 on Vmware Server2.0

I'm trying to configure sun cluster 3.2 on vmware server 2.0 on windows xp host with solaris 10x86 guests VM3 and VM4 and i 'm running scinstall from VM4 .. it fails with following error Initializing cluster name to "laptop" ... done Initializing authentication options ... done Initializing... (0 Replies)
Discussion started by: fugitive
0 Replies

7. UNIX for Dummies Questions & Answers

write a program in c in unix that display the files(includ sub-direc and files within) in a sorted

the sorting is based on name of file, file size modification time stamps o f file it should dislay the output in the following format "." and ".." enteries should be ignored please give some idea how to do it (1 Reply)
Discussion started by: pappu kumar jha
1 Replies

8. UNIX for Dummies Questions & Answers

Connect server2 from server1 to compare files

Hi ALL, Requirement:Connect server2 from server1 and get the list of files generate on currentdate . Basically i need to check the files in server1 and server2 on currrent date is equal on each 1 hr frequency. Can anyone help me on this. Thanks in advance Hari (2 Replies)
Discussion started by: psthariharan
2 Replies

9. Shell Programming and Scripting

Display files within a range

My script reads all the log files in a directory, the user would enter a range and the script would only display the files within those range. Here's my code: #!/bin/bash LOG_FILES=("Sandbox/logs/*") for file in ${LOG_FILES}; do echo $file; done ------------- for i in $(seq $1 $2); do... (1 Reply)
Discussion started by: Loc
1 Replies

10. UNIX for Beginners Questions & Answers

File Management: Removing of files from Server2 IF the same file is removed from Server1.

Hi Folks, I have a requirement of file management on different servers. Source Server is SERVER-A. Two servers will fetch files from SERVER-A: SERVER1 and SERVER2. 4th SERVER is SERVER-B, It will fetch files from SERVER1. If SERVER1 goes DOWN, SERVER-B will fetch pending files from... (2 Replies)
Discussion started by: Raza Ali
2 Replies
YPBIND(8)						    BSD System Manager's Manual 						 YPBIND(8)

NAME
ypbind -- NIS domain binding daemon SYNOPSIS
ypbind [-ypset] [-ypsetme] [-s] [-m] [-S domainname,server1,server2,...] DESCRIPTION
The ypbind utility is the process that maintains NIS binding information. At startup, it searches for an NIS server responsible for serving the system's default domain (as set by the domainname(1) command) using network broadcasts. Once it receives a reply, it will store the address of the server and other information in a special file located in /var/yp/binding. The NIS routines in the standard C library can then use this file when processing NIS requests. There may be several such files since it is possible for an NIS client to be bound to more than one domain. After a binding has been established, ypbind will send DOMAIN_NONACK requests to the NIS server at one minute intervals. If it fails to receive a reply to one of these requests, ypbind assumes that the server is no longer running and resumes its network broadcasts until another binding is established. The ypbind utility will also log warning messages using the syslog(3) facility each time it detects that a server has stopped responding, as well as when it has bound to a new server. The following options are available: -ypset It is possible to force ypbind to bind to a particular NIS server host for a given domain by using the ypset(8) command. However, ypbind refuses YPBINDPROC_SETDOM requests by default since it has no way of knowing exactly who is sending them. Using the -ypset flag causes ypbind to accept YPBINDPROC_SETDOM requests from any host. This option should only be used for diagnostic purposes and only for limited periods since allowing arbitrary users to reset the binding of an NIS client poses a severe security risk. -ypsetme This is similar to the -ypset flag, except that it only permits YPBINDPROC_SETDOM requests to be processed if they originated from the local host. -s Cause ypbind to run in secure mode: it will refuse to bind to any NIS server that is not running as root (i.e., that is not using privileged TCP ports). -S domainname,server1,server2,server3,... Allow the system administrator to lock ypbind to a particular domain and group of NIS servers. Up to ten servers can be specified. There must not be any spaces between the commas in the domain/server specification. This option is used to ensure that the system binds only to one domain and only to one of the specified servers, which is useful for systems that are both NIS servers and NIS clients: it provides a way to restrict what machines the system can bind to without the need for specifying the -ypset or -ypsetme options, which are often considered to be security holes. The specified servers must have valid entries in the local /etc/hosts file. IP addresses may be specified in place of hostnames. If ypbind cannot make sense out of the arguments, it will ignore the -S flag and continue running normally. Note that ypbind will consider the domainname specified with the -S flag to be the system default domain. -m Cause ypbind to use a 'many-cast' rather than a broadcast for choosing a server from the restricted mode server list. In many-cast mode, ypbind will transmit directly to the YPPROC_DOMAIN_NONACK procedure of the servers specified in the restricted list and bind to the server that responds the fastest. This mode of operation is useful for NIS clients on remote subnets where no local NIS servers are available. The -m flag can only be used in conjunction with the -S flag above (if used without the -S flag, it has no effect). NOTES
The ypbind utility will not make continuous attempts to keep secondary domains bound. If a server for a secondary domain fails to respond to a ping, ypbind will broadcast for a new server only once before giving up. If a client program attempts to reference the unbound domain, ypbind will try broadcasting again. By contrast, ypbind will automatically maintain a binding for the default domain whether client programs reference it ot not. FILES
/var/yp/binding/[domainname].[version] the files used to hold binding information for each NIS domain /etc/rc.conf system configuration file where the system default domain and ypbind startup options are specified SEE ALSO
domainname(1), syslog(3), yp(8), ypserv(8), ypset(8) AUTHORS
Theo de Raadt <deraadt@fsa.ca> BSD
April 9, 1995 BSD
All times are GMT -4. The time now is 07:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy