Getting a script to find another script via lookup service


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Getting a script to find another script via lookup service
# 1  
Old 12-21-2006
Getting a script to find another script via lookup service

Hi, I'm trying to write a basic script which will measure throughput at a node on a network, and pass the results on to a manager script (running on another node on the same network). I presume that I need to use some sort of naming service, so that the manager can publish its location. From what I can find on google, ypserv/bind might be what I need, but I'm really not sure where to start. All the tutorials I've come across are about maintaining user accounts. If anyone could just point me in the right direction, I be very grateful.
Thanks in advance
# 2  
Old 12-21-2006
If the manager script is always on the same node, why not just use /etc/hosts?
# 3  
Old 12-21-2006
Yeah, I could do it like that. My thinking was that it would be better style of design not to use hard-coded values, but I suppose that using a lookup service would introduce uneccessary network traffic, so I think I'll take your advice. Cheers
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Shell script newbie- how to generate service log from shell script

Hi, I am totally a newbie to any programming languages and I just started an entry level job in an IT company. One of my recent tasks is to create a script that is able to show the log file of linux service (i.e. ntpd service) lets say, if I run my script ./test.sh, the output should be... (3 Replies)
Discussion started by: xiaogeji
3 Replies

2. Shell Programming and Scripting

Help with Shell Script: User Lookup

Hi everyone, Let me start by stating this question is for homework help (not "help, my boss needs this ASAP") I have spent the last few days re-visiting this script, and cannot figure out where I am going wrong (something simple I'm sure). I am to build a script that searches for a user... (1 Reply)
Discussion started by: jjc032681
1 Replies

3. Shell Programming and Scripting

IP Address LookUp Bash Script

I am new to bash scripting. I want write a script that reads from the first argument file and run nslookup, then prints out each nslookup. Something like below: File name = ip 8.8.8.8 8.8.4.4 Bash shell script: nslookup.sh #!/bin/bash for i in $1 do nslookup $i done I... (7 Replies)
Discussion started by: boldnbeautiful
7 Replies

4. Shell Programming and Scripting

Service script

Hi Folks, I need to find out and trigger if the service is running to OK and not running to NOTOK. I use the below script but, its not the precise output. Anything missed out in the script: if chkconfig --list | grep -i sendmail then echo " The sendmail service is not running :... (10 Replies)
Discussion started by: gsiva
10 Replies

5. Shell Programming and Scripting

Help on lookup script

Hi All, I've had a look around the forum but cannot find any answers for what I want to do. I have 2 files : FILE 1 =============== ter049107 ter049048 2013-04-09 08:15:16 ter049056 ter049083 ter049112 2013-04-09 10:35:10 2013-04-09 10:29:47 2013-04-09 07:44:05 FILE 2 - note... (4 Replies)
Discussion started by: prashantv
4 Replies

6. Shell Programming and Scripting

Script help needed(lookup 2 text files)

Hi, iam new to unix scripting need a help. The scenario is i have 2 text files. a.txt has colA colB colC colD JKU1270A JKU1042A 9 1 JKU1270A JKU1042B 9 1 JKU1270A JKU1042C 9 1 JKU1270B JKU1107B 9 1 JKU1270B JKU1107C 9 1... (1 Reply)
Discussion started by: tech_frk
1 Replies

7. Shell Programming and Scripting

lookup script

dear all.. need your help.. i have searching but still didn't find what i need. i have 2 file, i want to lookup one to many, the key is $1 : main.txt code.txt output.txt thanks.. br, herman (2 Replies)
Discussion started by: buncit8
2 Replies

8. Shell Programming and Scripting

variable lookup problem in shell script

Hi I have one properties file containing as $INSTALL_BASEPATH/mssages/commonmessages_default.properties $INSTALL_BASEPATH/resource/configurationBundle.properties and $INSTALL_BASEPATH is set in .bash_profile but from shell script when I read this file and use in copy statement then it... (7 Replies)
Discussion started by: mnmonu
7 Replies

9. Shell Programming and Scripting

whois lookup from script intermittently not working

Hello, I wrote a basic script to query a whois server using the whois system command to retrieve information about IP's. I have file containing the ip addresses which I feed to the whois command via a while loop. This seems to work sometimes. Most of the time, the whois command seems not to... (0 Replies)
Discussion started by: aliberson
0 Replies

10. Shell Programming and Scripting

lookup script

hello I am a student taking an intro to UNIX class. I have an assignment I am having trouble completing. The assignment is as follows. i have a file called .addr_book that has various names and phone numbers in it. I need to write a script called lookup that will run like this I... (2 Replies)
Discussion started by: tampaJim
2 Replies
Login or Register to Ask a Question