Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dpm-rfiod(8) [debian man page]

DPM-RFIOD(8)						    Rfio Administrator Commands 					      DPM-RFIOD(8)

NAME
dpm-rfiod- Remote file access daemon SYNOPSIS
dpm-rfiod [ -d ] [ -f filename ] [ -l ] [ -p port ] [ -s ] [ -t ] [ -4 | -6 ] [ -L log_level ] DESCRIPTION
dpm-rfiod start the daemon handling remote file access requests. This command is usually executed at system startup time (/etc/rc.local). dpm-rfiod uses for the streaming mode (v3) one control port and one data port. The range of data ports to be used by dpm-rfiod can be set with the environment variable RFIO_PORT_RANGE. OPTIONS
-d Turn on printing of debug messages. Default output device is stderr. -f filename Output filename for error, logging and debugging messages. Normal error messages are sent to syslog unless otherwise specified. Two filenames are special : "stderr", which will send messages to standard error and "syslog" which will send to syslog. -l Turn on printing of log messages. Default output device is in /var/log/rfio/log. -p port Specify a network port for the service to listen on. If this option is not given the value RFIO_PORT defined in rfio_constants.h is used. -s Turn on Standalone mode. This option should always be set when dpm-rfiod is not started by inetd. -t Turn on single threaded mode. Useful for debugging as no processes are created. -4 only try to listen on IPv4 addresses -6 only try to listen on IPv6 addresses -L log_level Specify the logging level. Default 6 (LOG_INFO). EXAMPLE
/usr/sbin/dpm-rfiod -sl SEE ALSO
syslog(8), tcp(4) AUTHOR
LCG Grid Deployment Team LCG
$Date: 2010-08-30 08:39:36 +0200 (Mon, 30 Aug 2010) $ DPM-RFIOD(8)

Check Out this Related Man Page

DPM-ADDFS(1)						    DPM Administrator Commands						      DPM-ADDFS(1)

NAME
dpm-addfs - add a filesystem to a disk pool SYNOPSIS
dpm-addfs --poolname pool_name --server fs_server --fs fs_name [ --st status ] [ --weight weight ] [ --help ] DESCRIPTION
dpm-addfs adds a filesystem to a disk pool. This command requires ADMIN privilege. OPTIONS
pool_name specifies the disk pool name previously defined using dpm-addpool. server specifies the host name of the disk server where this filesystem is mounted. fs specifies the mount point of the dedicated filesystem. status Initial status of this filesystem. It can be set to 0 or DISABLED or RDONLY. This can be either alphanumeric or the corresponding numeric value. weight specifies the weight of the filesystem. This is used during the filesystem selection. The value must be positive. It is recommended to use a value lower than 10. Default is 1. EXAMPLE
dpm-addfs --poolname Volatile --server sehost --fs /data EXIT STATUS
This program returns 0 if the operation was successful or >0 if the operation failed. SEE ALSO
dpm(1), dpm_addfs(3), dpm-addpool(1) LCG
$Date$ DPM-ADDFS(1)
Man Page

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

syslog query

Hi all I am currently experiencing periodic system hangs on my servers (Dell 1850's) I was wondering if it is a big deal to send kernel panic messages (eg cpu panics, oops messages etc) to a log opposed to the console. I thought it was just a config change to syslog.conf but my associate... (2 Replies)
Discussion started by: silvaman
2 Replies

2. UNIX for Advanced & Expert Users

Forwarding syslog msgs to remote server non standard port

Hello Forumers! Has anyone successfully implemented forwarding of syslog messages to a remote server which is listening on a port other than udp514? Thanks! (3 Replies)
Discussion started by: bluescreen
3 Replies

3. Shell Programming and Scripting

Sed command

I have a file a.txt which contains the date and time. 22/Aug/2010:02:03:00 21/Aug/2010:00:00:00 21/Aug/2010:00:02:00 22/Aug/2010:00:00:00 22/Aug/2010:01:00:00 22/Aug/2010:02:00:01 22/Aug/2010:03:00:00 How to get the lines greater than or equal to 21\/Aug\/2010:06:00:00 and less than or... (8 Replies)
Discussion started by: sandy1028
8 Replies

4. Shell Programming and Scripting

stout, stderr to syslog via function with if statement

I have a function called sysLogger in a bash script that I am using to redirect stdout and stderr to syslog. Part of the script contains an option to turn on debugging otherwise I want debugging output to go to /dev/null. I am struggling to understand how to make this work using the function... (10 Replies)
Discussion started by: jelloir
10 Replies

5. AIX

Grep last 5 mins from log file in AIX

I want to grep only last 5 mins of a log file in bash I have a syslog which contains the following Mon Jul 11 20:47:42 Mon Jul 11 20:47:52 The following works in Unix but not in AIX . Please can you let me know as to what would be the AIX equivalent Code: for (( i = 5; i >=0;... (1 Reply)
Discussion started by: necro98
1 Replies