Services File


 
Thread Tools Search this Thread
Operating Systems Linux Services File
# 1  
Old 05-18-2009
Services File

Hi all,

I am fairly new to Unix/Linux, have been working on installattion for Tivoli Directory Services.The installation has a conflict with ports which is a known issue with the Directory Service. As per IBM the properties files can be changed to manually, for the Webadmin(Websphere) protal to run.

The conflict is happening due the following entry which exists in the services file i.e.
WC_defaulthost=12100
WC_adminhost=12104
WC_defaulthost_secure=12101
WC_adminhost_secure=12105
BOOTSTRAP_ADDRESS=12102
SOAP_CONNECTOR_ADDRESS=12103

I have made changes to the prop file as follows

WC_defaulthost=12200
WC_adminhost=12204
WC_defaulthost_secure=12201
WC_adminhost_secure=12205
BOOTSTRAP_ADDRESS=12202
SOAP_CONNECTOR_ADDRESS=12203

But the serevr does not start neither has the entry got uploaded into the services file for Linux to go and lookup. Would I need to issue a command
/etc/init.d/network restart for the services to re-start and have the new entries or do i need to go and delete the ealier entries ie 12100 from the services file and then restart network.

regards
abbey
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

2. Red Hat

Restart of services if port no is changed in /etc/services in RHEL

I had a doubt if any services need to be restarted if port no in /etc/services in an RHEL setup is changed. For eg, the port no of 443 for SSL may need to be changed. I hope my query is clear whether any services need to be restarted if port no in /etc/services is changed. Please revert with... (10 Replies)
Discussion started by: RHCE
10 Replies

3. AIX

Help with /etc/services

Hi In my AIX 5.3 box I already have the below entry: #cat /etc/services | grep -i 3602 infiniswitchcl 3602/tcp # InfiniSwitch Mgr Client infiniswitchcl 3602/udp # InfiniSwitch Mgr Client Now I got an requirement to add the below entry in the same port... (6 Replies)
Discussion started by: samsungsamsung
6 Replies

4. Solaris

etc/services

Need help from the unix admins out there. I am trying to telnet from a windoze machine to a sun machine. It won't let me connect. I looked at etc/services and I found the port that telnet was listening on. But, how can I tell if its actually up and available? is there a unix command I can issue?... (15 Replies)
Discussion started by: Harleyrci
15 Replies

5. UNIX for Dummies Questions & Answers

How to remove services from nsswitch file?

According to security manual only DNS, files, or LDAP should be allowed in nsswitch file however it seems like i have many other services configured in nsswitch files. below are the content from nsswitch file. What services can be removed considering the system stability. passwd: files... (6 Replies)
Discussion started by: pinga123
6 Replies

6. UNIX and Linux Applications

Unix Services File

Hi all, I am fairly new to Unix/Linux, have been working on installattion for Tivoli Directory Services.The installation has a conflict with ports which is a known issue with the Directory Service. As per IBM the properties files can be changed to manually, for the Webadmin(Websphere) protal... (1 Reply)
Discussion started by: abdulhaindade
1 Replies

7. SuSE

Run Level Services file

Hello, I recently updated a test system from Suse 8 to 9.3. Now our runlevel services program doesn't work, but works fine on our other 9.3 boxes. We have a file in /etc/init.d/rc3.d called S99fooprog(not actual name ofcourse). It just has a command to start a program daemon up. Anyways... (3 Replies)
Discussion started by: benefactr
3 Replies

8. HP-UX

HP-UX services

Hi, We are running HP-UX 11.11 in trusted mode. We have a audit scheduled next week and I have been given the resp. to check all the network servies and other user maintenance things. Is there any HP document which states which services can be easily disabled and how. Like ftp, finger etc.... (1 Reply)
Discussion started by: isingh786
1 Replies

9. UNIX for Dummies Questions & Answers

services

I have an application service running on an AIX server Client application is able to connect to the server machine. Strange thing is when i do "netstat -a | grep servicename" I get no output but when i do "ps -ef | grep service name", I am able to see the service running I... (1 Reply)
Discussion started by: bryan
1 Replies

10. UNIX for Advanced & Expert Users

services

Hi, Is it possible to remove/disconnect a socket connection having a status of LISTEN, from command prompt..?? Thanks in Advance.. (1 Reply)
Discussion started by: shibz
1 Replies
Login or Register to Ask a Question
CosFileTransfer_FileTransferSession(3erl)		     Erlang Module Definition			 CosFileTransfer_FileTransferSession(3erl)

NAME
CosFileTransfer_FileTransferSession - This module implements the OMG CosFileTransfer::FileTransferSession interface. DESCRIPTION
To get access to the record definitions for the structures use: -include_lib("cosFileTransfer/include/*.hrl"). EXPORTS
'_get_protocols_supported'(FTS) -> Return Types FTS = #objref Return = [#'CosFileTransfer_ProtocolSupport'{protocol_name=Type, addresses=[Address]}] Type = Address = string() This read only attribute returns the protocols supported by the target object. set_directory(FTS, Directory) -> Return Types FTS = Directory = #objref Return = ok | {'EXCEPTION, E} Invoking this operation will change the current working directory of the target object's associated file system. If fail to do so the appropriate exception is raised. create_file(FTS, FileNameList) -> Return Types FTS = #objref FileNameList = [string()] Return = File | {'EXCEPTION, E} File = #objref This operation creates a File Object representing a file which may or may not exist. For this operation to be independent of the working directory the supplied FileNameList must represent the absolute name. create_directory(FTS, FileNameList) -> Return Types FTS = #objref FileNameList = [string()] Return = Directory | {'EXCEPTION, E} Directory = #objref This operation creates a new directory in the target objects associated file systems domain. If fail to do so an exception is raised but, if successful, a Directory object representing the new directory is returned. get_file(FTS, FileNameList) -> Return Types FTS = #objref FileNameList = [string()] Return = FileWrapper | {'EXCEPTION, E} FileWrapper = #'CosFileTransfer_FileWrapper'{the_file = File file_type = Type} File = #objref Type = nfile | ndirectory This operation, creates a FileWrapper which represents a file or directory, and should be independent of the working Directory, i.e., a full path name must be supplied. Furthermore, the file or directory represented by the FileNameList must exist. delete(FTS, File) -> Return Types FTS = File = #objref Return = ok | {'EXCEPTION', E} This operation removes the file or directory, represented by the File object, from the target objects associated file system. If it is a non-empty directory or non-existing file or directory an exception is raised. transfer(FTS, SourceFile, DestinationFile) -> Return Types FTS = SourceFile = DestinationFile = #objref Return = ok | {'EXCEPTION', E} If the target object's and the DestinationFile's associated FileTransferSession's support the same protocol(s) this operation will copy the file represented by the SourceFile from the target object's file system to a file in the destination FileTransferSession's file system. The file is represented by the DestinationFile object and may not exist. This operation must be invoked on the File- TransferSession associated with the SourceFile object. append(FTS, SourceFile, DestinationFile) -> Return Types FTS = SourceFile = DestinationFile = #objref Return = ok | {'EXCEPTION', E} This operation behaves almost like the transfer/3 operation. The difference is that the DestinationFile must exist since the Source- File will be appended to the DestinationFile . Currently, it is not possible to use this operation when the target object represents FTP. insert(FTS, SourceFile, DestinationFile, Offset) -> Return Types FTS = SourceFile = DestinationFile = #objref Offset = long() Return = ok | {'EXCEPTION', E} This operation behaves almost like the append/3 operation. The difference is that the SourceFile will be inserted into the Destina- tionFile Offset bytes from the start of the file. Currently, it is not possible to use this operation when the target object represents FTP. logout(FTS) -> ok Types FTS = #objref This operation terminates the target object and closes the connection to the file system it represents. Ericsson AB cosFileTransfer 1.1.10 CosFileTransfer_FileTransferSession(3erl)