Top
Interstage Big DataParallel Processing ServerV1.0.1 User's Guide
FUJITSU Software

6.2.2 DFS Setup

The DFS setup sequence is as follows:

  1. Create the Mount Point and Configure fstab Settings

  2. Mounting


6.2.2.1 Creating the Mount Point and Configuring fstab Settings

Create the mount point and add the DFS entry to /etc/fstab.

Creating the mount point

Create the mount point for mounting the disk partitions on the storage system used as the DFS.

Make the mount point the same as that specified at the master server.

Example

Create the mount point "pdfs" under "/mnt".

# mkdir /mnt/pdfs <Enter>

fstab settings

Add the DFS entry to /etc/fstab.

The parameters specified in the fields for the added entry are as follows:

Example

This example shows the mount point "/mnt/pdfs" and the logical file system name "pdfs1" defined at "/etc/fstab".

LABEL=/                 /                       ext3    defaults        1 1
LABEL=/home             /home                   ext3    defaults        1 2
LABEL=/boot             /boot                   ext3    defaults        1 2
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
LABEL=SWAP-sda3         swap                    swap    defaults        0 0

pdfs1                   /mnt/pdfs               pdfs    _netdev         0 0

6.2.2.2 Mounting

Distribute the DFS configuration information file generated on the master server to the slave server to mount the DFS file system.

  1. Copy the DFS configuration information file generated in "6.1.3.11 Generating the DFS File System Configuration Information" for the master server to /etc/pdfs.

    # scp -p root@master1:dfsConfigurationFileDirectory/client.conf.pdfs1 /etc/pdfs <Enter>
  2. Mount the DFS file system.

    Example

    Mount the DFS file system at the slave server.

    # mount pdfs1 <Enter>

Note

  • The DFS configuration information file must be distributed to the slave server before the DFS file system is mounted.

  • Ensure that the DFS mount sequence is: master servers, slave servers, development servers and collaboration servers. If the slave servers, development servers or collaboration servers are mounted first, then mount will fail, because the master server (MDS) does not exist.

See

Refer to the "mount.pdfs" under "Appendix A Command Reference" in the "Primesoft Distributed File System for Hadoop V1 User's Guide" for details of mounting.