HiRDB Dataextractor Version 8 Description, User's Guide and Operator's Guide

[Contents][Index][Back][Next]

Appendix D. Functional Differences with Linux

This appendix explains points that differ from the normal usage procedures when the OS being used is Linux.

Organization of this section
(1) Differences in available facilities
(2) Environment variables
(3) Notes
(4) Setting an environment

(1) Differences in available facilities

(2) Environment variables

(3) Notes

(4) Setting an environment

This item describes a setup file for using HiRDB Dataextractor that has different settings from the normal settings.

If you use RedHat 7 or later, use the following inetd configuration file:

/etc/xinetd.d/xxxx

xxxx: Create the file using the service name registered in the /etc/services file.
(a) Contents

This file sets up the startup of HiRDB Dataextractor.

(b) Examples
 

Example 1: Definition for starting HiRDB Dataextractor

 
# HiRDB Dataextractor
service hxt000
{
  disable       = no
  socket_type   = stream
  wait          = no
  user          = root
  server        = /opt/HIRDBXT/bin/pxtcntl
  server_args   = /opt/HIRDBXT/conf/xtenv0
}
 

Example 2: Definition for starting HiRDB Dataextractor with environment variables specified

 
# HiRDB Dataextractor
service hxt000
{
  disable       = no
  socket_type   = stream
  wait          = no
  user          = root
  server        = /usr/bin/env
  server_args   = XTLOGNAME=XTLOG /opt/HIRDBXT/bin/pxtcntl /opt/HIRDBXT/conf/xtenv0
}
 

Note: If you have added or modified files, make sure that you restart xinetd with the following command:

 
/etc/rc.d/init.d/xinetd restart