Skip Navigation Links | |
Exit Print View | |
Managing Network File Systems in Oracle Solaris 11.1 Oracle Solaris 11.1 Information Library |
1. Managing Network File Systems (Overview)
2. Network File System Administration (Tasks)
How to Set Up Automatic File-System Sharing
How to Enable NFS Server Logging
How to Mount a File System at Boot Time
How to Mount a File System From the Command Line
How to Mount All File Systems from a Server
How to Use Client-Side Failover
How to Disable Mount Access for One Client
How to Mount an NFS File System Through a Firewall
How to Mount an NFS File System Using an NFS URL
Setting up a DNS Record for a FedFS Server
How to Display Information About File Systems Available for Mounting
How to Select Different Versions of NFS on a Server
How to Select Different Versions of NFS on a Client
How to Use the mount Command to Select Different Versions of NFS on a Client
Administering the Secure NFS System
How to Set Up a Secure NFS Environment With DH Authentication
How to Browse Using an NFS URL
How to Enable WebNFS Access Through a Firewall
Task Overview for Autofs Administration
Task Map for Autofs Administration
Using SMF Parameters to Configure Your Autofs Environment
How to Configure Your Autofs Environment Using SMF Parameters
Administrative Tasks Involving Maps
Avoiding Mount-Point Conflicts
Accessing Non-NFS File Systems
How to Access CD-ROM Applications With Autofs
How to Access PC-DOS Data Diskettes With Autofs
Setting Up a Common View of /home
How to Set Up /home With Multiple Home Directory File Systems
How to Consolidate Project-Related Files Under /ws
How to Set Up Different Architectures to Access a Shared Namespace
How to Support Incompatible Client Operating System Versions
How to Replicate Shared Files Across Several Servers
How to Apply Autofs Security Restrictions
How to Use a Public File Handle With Autofs
How to Use NFS URLs With Autofs
How to Completely Disable Autofs Browsability on a Single NFS Client
How to Disable Autofs Browsability for All Clients
How to Disable Autofs Browsability on a Selected File System
How to Create and Access an NFS Referral
How to Create an Namespace Database (NSDB)
How to Use a Secured Connection to the NSDB
How to Create a FedFS Referral
Strategies for NFS Troubleshooting
NFS Troubleshooting Procedures
How to Check Connectivity on an NFS Client
How to Check the NFS Server Remotely
How to Verify the NFS Service on the Server
Identifying Which Host Is Providing NFS File Service
How to Verify Options Used With the mount Command
Error Messages Generated by automount -v
This section describes some of the tasks that are necessary to do the following:
Start and stop the NFS server
Start and stop the automounter
Select a different version of NFS
Note - Starting in the Solaris 10 release, NFS version 4 is the default.
Table 2-3 Task Map for NFS Services
|
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
Type the following command.
# svcadm enable network/nfs/server
This command enables the NFS service.
Note - The NFS server starts automatically when you boot the system. Additionally, any time after the system has been booted, the NFS service daemons can be automatically enabled by sharing the NFS file system. See How to Set Up Automatic File-System Sharing.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
Type the following command.
# svcadm disable network/nfs/server
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
Type the following command:
# svcadm enable system/filesystem/autofs
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
Type the following command:
# svcadm disable system/filesystem/autofs
If you choose not to use NFS version 4, use this procedure.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
For example, if you want the server to provide only NFS version 3, set the values for both the server_versmax and server_versmin to 3 as shown below:
# sharectl set -p server_versmax=3 nfs # sharectl set -p server_versmin=3 nfs
Note - The NFS version that is set by default is NFS version 4.
If you want to disable server delegation, change the server_delegation property.
# sharectl set -p server_delegation=off nfs
Note - In NFS version 4, server delegation is enabled by default. For more information, see Delegation in NFS Version 4.
If you want to set a common domain for clients and servers, change the nfsmapid_domain property.
# sharectl set -p nfsmapid_domain=my.company.com nfs
Provide the common domain name
For more information, refer to nfsmapid Daemon.
Type the following command:
# svcs network/nfs/server
This command reports whether the NFS server service is online or disabled.
If you discovered from the previous step that the NFS service is offline, type the following command to enable the service.
# svcadm enable network/nfs/server
Note - If you need to configure your NFS service, refer to How to Set Up Automatic File-System Sharing.
See Also
The following procedure shows you how to control which version of NFS is used on the client.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
For example, if you want the file system to be mounted using the NFS version 3 protocol, set the values for both the client_versmax and client_versmin to 3 as shown below:
# sharectl set -p client_versmax=3 nfs # sharectl set -p client_versmin=3 nfs
Note - The NFS version that is set by default is NFS version 4.
Type the following command:
# mount server-name:/share-point /local-dir
Provide the name of the server.
Provide the path of the remote directory to be mounted.
Provide the path of the local mount point.
See Also
The following procedure shows you how to use the mount command to control which version of NFS is used on a client for a particular mount. If you prefer to modify the NFS version for all file systems mounted by the client, see How to Select Different Versions of NFS on a Client.
For more information, see How to Use Your Assigned Administrative Rights in Oracle Solaris 11.1 Administration: Security Services.
Type the following command:
# mount -o vers=value server-name:/share-point /local-dir
Provide the version number.
Provide the name of the server.
Provide the path of the remote directory to be mounted.
Provide the path of the local mount point.
Note - This command overrides the client settings in the SMF repository.
See Also