Man access accross systems


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Man access accross systems
# 1  
Old 08-02-2002
Man access accross systems

HI,
Working with apps that run accross 8 AIX 4.3's
Lets call them A, B,C D-H.

Unfortunatly only one of them has the man pages installed, (A).
My Q, is there any way that an authorized user can login into either B, C or D-H, type man at command prompt and get connected to A to view its man pages.

Thnx
buRst
# 2  
Old 08-03-2002
say you have the man pages on host A. From host A, share or export the man pages across the network.

on the other systems, use the mount command to mount the man pages from host A to a mount point on the client. For example, in Solaris, on host A we would do the following:
# share /usr/share/man

then on the clients we would do the following:
# mount hostA:/usr/share/man /mount/point

this is assuming, of course, you have the appropriate IP address and hostname in your hosts files on all of the systems involved.

hope this helps. try the man page on "mount".

V/R
Michael
# 3  
Old 08-04-2002
For AIX i Know...If an apache server is running on the machine
where the man pages are installed ..You can configure the

path /usr/share/man/info/C/a_doc_lib/aixcmds/cmds[1-5] directories in the Apache..

On the other nodes(Client) simply export the following variables

DOCUMENT_SERVER_MACHINE_NAME=<IP of man pages>
DOCUMENT_SERVER_PORT=<port no of APACHE>

Then if you type "man ls" at the client machine

it first searches these two variables and gets the required man page

Good Luck

Ganti
# 4  
Old 08-04-2002
Small correction to my previous reply

you have to configure only

Virtual Physical
/doc_link /usr/share/man/info

Then clinet machine seraches the following path

for man ls

http://${DOCUMENT_SERVER_MACHINE_NAME}:${DOCUMENT_SERVER_PORT}/doc_link/en_US/a_doc_lib/cmds/aixcmds1/ls.htm

cheers
Ganti
# 5  
Old 08-05-2002
ThanK You... both for your valuable input.
buRst
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Calculate percentage of a value accross m

I have 100 csv files like: file_city_1 file_city_2 file_city_3 file_city_4 City name is variable, there is 25 cities, each city has 4 region. Each of the 4 region contain some statistics like: parameter1 : number1 parameter1 : number2 ..... parameter50 : number50 ... (7 Replies)
Discussion started by: Meacham12
7 Replies

2. UNIX for Dummies Questions & Answers

run script accross machines using ssh

Hi all I have to run certain set of commands on two machines, the two machines see the same home, it's mounted from the same place. The problem is that i have to ssh to a certain machine "which is slow unfortunately" that has the license to run a tool and i want to return to the original machine... (3 Replies)
Discussion started by: amr elhosiny
3 Replies

3. Solaris

Solaris patch access policy in Fujitsu systems

Hi, I would need help to understand Solaris patching policy in Fujitsu systems. PRIMEPOWER and SPARC Enterprise/Solaris Patches Which is the difference between "Public patches and patch clusters" and "All Patches"? Do I need a maitenance contract with Fujtisu to download "Public patches... (0 Replies)
Discussion started by: mariocq
0 Replies

4. Shell Programming and Scripting

Summation of Columns accross multiple files

I have around 1000 files in a directory (file1.txt, file2.txt, ... file1000.txt), each file is 2 columns, the first colums are same for all of them, second one is different. file1.txt 1 10 2 20 3 30 4 40 5 50 file2.txt 1 100 2 400 3 500 4 600 5 900 what I need is , I want... (3 Replies)
Discussion started by: scriptie
3 Replies

5. Shell Programming and Scripting

Running Sql scripts accross db2

Hi, I would be really thankful, if anyone could help me out with this,since i am very new to this shell scripting. I have 6 sql scripts that i am trying to run in unix across db2. i want the scripts to be executed as follows, script_1 should be executed first. Then... (4 Replies)
Discussion started by: jnimz
4 Replies

6. Shell Programming and Scripting

How to search accross other documents?

Could do with some help on where to get started really. If anyone could help me it would be greatly appreciated. I have been working on this for a while now and I don't really know where to start. I am looking into creating a script that will process website hit files and output statistical... (1 Reply)
Discussion started by: amatuer_lee_3
1 Replies

7. Solaris

Archive data accross solaris server

Can anyone tell me how to safely archive data across the network instead of tape in Solaris. Thanks Remi (1 Reply)
Discussion started by: Remi
1 Replies

8. Solaris

is RPC portable accross Unix and windows

Hi All, I am working on Unix(SunOS 5.8) and windows machine.My server lies on Unix machine and clinet on windows. Could you please tell me If I have created abc.x file for unix machine and have written a routine require for remote call, How do I proceed to get client code of RPC for windows... (0 Replies)
Discussion started by: navin_1234
0 Replies

9. UNIX for Dummies Questions & Answers

sharing drives accross mutiple os's

I currently have a freebsd system running that I have a couple 24/7 deamons running on. This system is system is linked via a router to a windows machine, and soon to be another machine(havent decided what os yet). What I want to do is allow my unix machine to see specific foulders on my windows... (1 Reply)
Discussion started by: droolin
1 Replies

10. UNIX for Advanced & Expert Users

ufsrestore accross the network

I am trying to do a ufsrestore accross the network and can't quite seem to get the syntax of the command correct. The manual says its possible to do this althought the man pages seem to only refer to a dump file when mentioing the network. I have the appropriate entrles in the .rhosts file and the... (5 Replies)
Discussion started by: Henrik
5 Replies
Login or Register to Ask a Question