Script for NFS mount point


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script for NFS mount point
# 1  
Old 09-18-2013
Linux Script for NFS mount point

Hi ,

i have create the bash script for nfs but in this script asking for mount point only once it is it prompting for second time.

example: do you wants to create any other mount point [yes/no]?
note(if i give yes it should ask me to add the mount point else it should proceed with next step) it should ask each and every time if i give "yes" and add the mount point in it...

myscript:
Code:
echo " enter the mount point name"
read e
echo "$e *(rw,sync,no_root_squash)" >>/etc/exports
"Note:here it should ask again if any mount point needs to be added or not?
if yes it should start from again.."

service nfs restart
exportfs -r
exportfs -v
chkconfig nfs on


Last edited by vbe; 09-18-2013 at 01:08 PM.. Reason: code tags...
# 2  
Old 09-18-2013
Put a while loop around your mount point extension part:
Code:
AGAIN=YES
  while [ "$AGAIN" = "YES" ]
   do read e
      echo $e
      read -p "Again? " AGAIN
   done

Watch out: No error checking etc included yet...
# 3  
Old 09-18-2013
This one is faster to operate
Code:
while :
do
 echo " enter the mount point name (empty to quit)"
 read e
 [ -z "$e" ] && break
 echo "$e *(rw,sync,no_root_squash)" >>/etc/exports
done

# 4  
Old 09-19-2013
Thanks it working, but while mounting the share path in client machine if i have 2 share path in server how do i mount that 2 share path in client.

i have highlited some points in my script please help me how to resolve that...
Code:
while :
do
echo " enter the mount point name (empty to quit)"
read e
[ -z "$e" ] && break
echo "$e *(rw,sync,no_root_squash)" >>/etc/exports
done
service nfs restart
exportfs -r
exportfs -v
chkconfig nfs on
------------(Note: This is client server ip address)--------------------------
echo "enter the destserverip"
read a
-----------------------------------------------
#(Note:here i wants to enter source server ip address and mount point problem here is if i provide 2 share path 
how do i add that here)
----------------------------------------------------------------
echo "enter src serverip and mount point"
read b c
----------------------------------------------------------------------
(note this point us i want to create the mount point in client server if i have 2 share path how do i create the directoryor )
----------------------------------------------------------------------
 
echo "1. Do you wants to create the mount point[yes/no]?"
read n
yes=$(echo $n | tr -s '[:upper:]' '[:lower:]')
if [[ "$n" = "yes" ]]; then
-----------------------------------------------------------------------
(Note: if mount point is already created in client server how do i mention that 2 mount point details here)
-----------------------------------------------------------------------
echo "enter the dir name to create mount point"
read f
ssh -p 22 -l root $a mkdir $f
echo " enter the root password"
ssh -p 22 -l root $a mount -t nfs $b:$c $f
else
echo "enter the destmount point ensure the mount point is created"
read d
#ssh -p 22 -l root $a mkdir $f
echo " enter the root password"
ssh -p 22 -l root $a mount -t nfs $b:$c $d
fi


Last edited by vbe; 09-19-2013 at 11:31 AM.. Reason: code tags again....
# 5  
Old 09-23-2013
A bit more safe and compact; I left your one comment that I don't understand.
Code:
while :
do
  echo " enter the mount point name (empty to quit)"
  read e
  [ -z "$e" ] && break
  echo "$e *(rw,sync,no_root_squash)" >>/etc/exports
done
service nfs restart
exportfs -r
exportfs -v
chkconfig nfs on
------------(Note: This is client server ip address)--------------------------
echo "enter the destserverip"
read a
-----------------------------------------------
#(Note:here i want to enter source server ip address and mount point problem here is if i provide 2 share path 
how do i add that here)
----------------------------------------------------------------
echo "enter src serverip and mount point"
read b c
echo "enter the destmount point (created when not present)"
read d
# echo "enter the root password"
ssh -n -q -p 22 -l root "$a" "# multi-line string starts here
# -p: create if needed
mkdir -p $d
mount -t nfs ${b}:${c} $d
# multi-line string ends here"

# 6  
Old 09-23-2013
Thanks, it works only in single mount point but i wants to mount multiple mount point to destination client server... how do i do that?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies

2. Solaris

Sol 10 - Strange NFS behaviour - adminnfs prefix to mount point

Something has changed..... /etc/vfstab entry:- host1:/backup/RMAN - /RMAN nfs - no rw,hard,rsize=32768,wsize=32768,llockBut when I mount it, and run df -k | grep RMANResults are:- host1:/backup/RMAN 54971960832 26752241664 28219719168 49% ... (1 Reply)
Discussion started by: psychocandy
1 Replies

3. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies

4. Red Hat

Regarding NFS mount point

Dear All, We have two different mount points in Linux NFS one is 15 TB and another one is 15 TB. Can we club both of the two mount points and club in to a single volume in Linux. As we need to restore Database in that single volume. Kindly help us on this. Regards , rj (10 Replies)
Discussion started by: jegaraman
10 Replies

5. Red Hat

NFS mount point

Hi, Can you tell me something about NFS mount point ? Regards, Maddy (3 Replies)
Discussion started by: Maddy123
3 Replies

6. Solaris

No write permission on NFS mount point

hi all i have mounted one nfs mount point but i has no write permission on it. when i am going to make a directory it is giving an error # mkdir 1 mkdir: Failed to make directory "1"; Permission denied i shared using command # share -F nfs -o rw -d "backup" /backup mounted using... (3 Replies)
Discussion started by: nikhil kasar
3 Replies

7. Red Hat

NFS mount point problem

Hi Forum I am trying to mount /NFS as nfs mountpoint on two servers ( A & B ). After mounting the nfs filesystem, both of them behave normally for around 10 mins and after that the NFS file handle become stale and the mountpoints dont respond. While executing df -kh, the output hang out and the... (15 Replies)
Discussion started by: rajdasuwal
15 Replies

8. AIX

NFS mount point monitoring script

Hi, I'm looking to create a NFS mount point monitoring shell script not sure if im going the right way about it so could do with some help. What i was thinking of doing was using the below command but am unsure how to handle the output. So if the filesyetem is active it will return "1" but if... (4 Replies)
Discussion started by: elmesy
4 Replies

9. Linux

one nfs mount point for many logical volumes

hi i am wondering if it is possible to use one nfs mount point for several logical volumes. i have a top level directory /imaging with data1 - data50 below it. each dataX directory is a logical volume configured through LVM. if i mount them separately on the client (i.e. 50 lines in fstab... (1 Reply)
Discussion started by: user23
1 Replies

10. UNIX for Dummies Questions & Answers

How to change the file modification time of a file on nfs mount point

Hi I am accessing a file on nfs mounted device, after completing using of the file, i am tring to restore the access time and modification times of the file. So i got the previous modified time of the file using stat() function and trying to set the date and time for the file, To set these... (6 Replies)
Discussion started by: deepthi.s
6 Replies
Login or Register to Ask a Question