unix certification


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers unix certification
Prev   Next
# 1  
Old 02-27-2006
unix certification

hi,
Can you you please tell me which will be the best Unix certification to get.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX certification

Hi there, I have 7+ IT experience worked in various support project in unix, pl/sql and C. I would like to take certification in unix (but I worked in shell scripting not in admin). I surfed net for certification but all are suggesting for admin certification like redhat, scsa..... I want to... (0 Replies)
Discussion started by: stew
0 Replies

2. Shell Programming and Scripting

UNIX Certification

Hi, I am willing to do UNIX certification other than Administration. Could any one suggest me which unix developers certification will be better to do get good employment opportunities. Thanks in advance.:b::b: (2 Replies)
Discussion started by: jhon1257
2 Replies

3. UNIX for Advanced & Expert Users

Certification on Unix

Hi all, I want to do a certification on unix, i dont have any idea about it. Can any one help me in where i can get the information on "UNIX CERTIFICATION" Thanks in advance, (1 Reply)
Discussion started by: vij_krr
1 Replies

4. Shell Programming and Scripting

UNIX Certification

Hello Everybody, Is there any unix certification , where i can be a unix certified. (1 Reply)
Discussion started by: pritish.sas
1 Replies

5. HP-UX

Unix Certification

Which certification I can go for?? (1 Reply)
Discussion started by: bharat.techie
1 Replies

6. UNIX and Linux Applications

Please help me for UNIX certification

Hi, Last 2 years i am working in unix environment .I am interested to do some certification on UNIX.Could you please suggest me regarding this.. Thanks in adcance p kumar (1 Reply)
Discussion started by: sradha
1 Replies

7. UNIX for Advanced & Expert Users

certification in Unix ?

Hi all General question ...please help ... Can anybody tell me how to get certified in UNIX ? Is/are there any certificaion paper(s) for UNIX OR any organization helps outsiders to get cerified in Unix. I know about Linux certification ..red hat and all.... But is there an specific Unix... (2 Replies)
Discussion started by: varungupta
2 Replies

8. What is on Your Mind?

UNIX Certification

I am taking the UNIX Essentials/UNIX Core class on DVD. Two certifications are offered with it. What would be the next logical step in UNIX training after that? Would I need an instructor-led class? My company is offering $2500 towards Open Systems training and I would like to make the best... (1 Reply)
Discussion started by: ednan171
1 Replies

9. UNIX for Dummies Questions & Answers

Unix Certification

I am seeking to move from Mainframe Storage Management to Open Systems, possibly as an AIX administrator. Does anyone know of a good Unix certification program that can get my foot in the door? (3 Replies)
Discussion started by: ednan171
3 Replies

10. HP-UX

Unix Certification

Hi, Can anyone please let me know about Unix Certifications available? Regards, Puspendu (4 Replies)
Discussion started by: puspendu
4 Replies
Login or Register to Ask a Question
xpamethod(7)							SAORD Documentation						      xpamethod(7)

NAME
XPAMethod - XPA Communication Methods SYNOPSIS
XPA supports both inet and unix (local) socket communication. DESCRIPTION
XPA uses sockets for communication between processes. It supports three methods of socket communication: inet, localhost, and unix. In gen- eral, the same method should be employed for all XPA processes in a session and the global environment variable XPA_METHOD should be used to set up the desired method. By default, the preferred method is "inet", which is appropriate for most users. You can set up a different method by typing something like: setenv XPA_METHOD local # unix csh XPA_METHOD=local; export XPA_METHOD # unix sh, bash, windows/cygwin set XPA_METHOD=localhost # dos/windows The options for XPA_METHOD are: inet, unix (or local), and localhost. On Unix machines, this environment setup command can be placed in your shell init file (.cshrc, .profile, .bashrc, etc.) On Windows platforms, it can be placed in your AUTOEXEC.BAT file (I think!). By default, inet sockets are used by XPA. These are the standard Internet sockets that are used by programs such as Netscape, ftp. etc. Inet sockets utilize the IP address of the given machine and a (usually random) port number to communicate between processes on the same machine or between different machines on the Internet. (Note that XPA has an Access Control mechanism to prevent unauthorized access of XPA access points by other computers on the Net). For users connected to the Internet, this usually is the appropriate communication method. For more information about setting up XPA communication between machines, see Communication Between Machines. In you are using XPA on a machine without an Internet connection, then inet sockets are not appropriate. In fact, an XPA process often will hang for many seconds while waiting for a response from the Domain Name Service (DNS) when using inet sockets. Instead of inet sockets, users on Unix platforms can also use unix sockets (also known as local sockets). These sockets are based on the local file system and do not make use of the DNS. They generally are considered to be faster than inet sockets, but they are not implemented under Windows. Use local sockets as a first resort if you are on a Unix machine that is not connected to the Internet. Users not connected to the Internet also can use localhost sockets. These are also inet-type sockets but the IP address used for the local machine is the localhost address, 0x7F000001, instead of the real IP of the machine. Depending on how sockets are set up for a given plat- form, communication with the DNS usually is not required in this case (though of course, XPA cannot interact with other machines). The localhost method will generally work on both Unix and Windows platforms, but whether the DNS is required or not is subject to individual configurations. A final warning/reminder: if your XPA-enabled server hangs at startup time and your XPA_METHOD is inet, the problem probably is related to an incorrect Internet configuration. This can be confirmed by using the unix method or (usually) the localhost method. You can use these alternate methods if other hosts do not need access to the XPA server. SEE ALSO
See xpa(7) for a list of XPA help pages version 2.1.14 June 7, 2012 xpamethod(7)