cancel
Showing results for 
Search instead for 
Did you mean: 

Sap Basis In Linux To Mount trans dir

Former Member
0 Kudos

Hi i have a development and a production system i would like to know how to we mount trans directory in a Linus suse environment using NFS in development system which is a domain controller to bring this systems in a landscape

Edited by: kaleem1 on Jan 6, 2012 11:01 PM

Accepted Solutions (1)

Accepted Solutions (1)

former_member189725
Active Contributor
0 Kudos

On the development system , do the following as user root

  1. vi /etc/exports

add the line

/usr/sap/trans *(rw,sync)

save the file .

Then restart the nfs service as follows:

  1. /etc/init.d/nfs restart

On the production do the following as user root

  1. mount -t nfs <IP of dev system>:/usr/sap/trans /usr/sap/trans

You can see the trans directory mounted on production from dev.

Former Member
0 Kudos

I tried that but i received a message bellow

/etc/init.d/nfs restart

Shutting down NFS client services:umount: /var/lib/nfs/rpc_pipefs: device is busy.

(In some cases useful info about processes that use

the device is found by lsof(8) or fuser(1))

failed

Starting NFS client services: sm-notify idmapd done

former_member189725
Active Contributor
0 Kudos

Try out the next command to mount the filesystem.

nelis
Active Contributor
0 Kudos

Then restart the nfs service as follows:

  1. /etc/init.d/nfs restart

That is for the NFS client and imports. For the NFS server and exports you would use /etc/init.d/nfsserver

Nelis

Former Member
0 Kudos

it says permission denied

former_member189725
Active Contributor
0 Kudos

Are you logged in the dev system as user root?

Please check. If not , login as root.

You need to run the last command I mentioned in the production system as user root as well.

Former Member
0 Kudos

Hi,

It require no_root_squash option to be set in /etc/exports

/usr/sap/trans *(rw,no_root_squash,sync)

Do not forget to restart NFS service on Development server.

Regards.

Rajesh Narkhede

Former Member
0 Kudos

how to check in prod if it is mounted or not

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

You should try to refer some Linux/Suse Linux sites or documentation.

But better you engage a unix/linux expert/team.

Thanks