Experts !!! Please advise


 
Thread Tools Search this Thread
Operating Systems Solaris Experts !!! Please advise
# 1  
Old 11-15-2010
Computer Experts !!! Please advise

Hi,

I work on sun Solaris. Am hosting few web services on my server which are accessed over the internet. Now to check whether the web service is responding or not, i first have to log in to the web service URL. If it doesn't respond there, i come back to my server box and restart the service process.

What am looking here is a way by which i can directly check at the server whether the process is responding or not. Like a script or cron job. I can see the process is running or not by using multiple commands and eventually its PID but how do i check whether the process is responding or is it hung.

Regards
Rahul miau
# 2  
Old 11-15-2010
The only real way to test a service is to test that service.

Even if you app is designed to respond to something other than your web service, that could still work when your web service is hung.

It'd be better if you found out why your service is failing.
# 3  
Old 11-15-2010
Using Solaris D-trace. This tool for debugging is ideal for resolving problems like bottleneck and if you want to know what is going on in the system Dtrace is ideal for that job
# 4  
Old 11-16-2010
Quote:
Originally Posted by solaris_user
Using Solaris D-trace. This tool for debugging is ideal for resolving problems like bottleneck and if you want to know what is going on in the system Dtrace is ideal for that job
And how would one tell an idle service that's not doing anything because no one's using it at the moment from a hung service that's not doing anything because it's broken?

You get right back to having to run the service itself to see if it works.

It's really hard to test a given functionality by implementing some other functionality that doesn't exercise the actual thing you're trying to test.

It's a lot easier to test if you car's brakes work by stomping on the brake pedal than it is to design and implement some system to measure acceleration and forces in a bunch of different places and then try to infer if your brakes are working from the data you collect. And if your brakes do keep failing, you put your effort into identifying the failure and fixing them.
# 5  
Old 11-16-2010
Code:
man truss

(ok you will get less details than with Dtrace, but maybe you can start with that)
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To all the awk experts out there!

Hello All, I recently encountered this difficulty in processing a File. Input File has millions of records with fields like below ID1,ID2,DATE,FLAG,VAL 123,432,0604,1,-0.5 123,432,0604,22,0.5 123,433,0604,1,-0.54 123,433,0604,22,6.77 123,543,0605,22,0.94 To put this simply, I will have... (8 Replies)
Discussion started by: PikK45
8 Replies

2. IP Networking

Experts - Need suggestion

I'm searching to learn linux coding for a month but no clear about the where to start . Right now i'm in networking but not much interested in this maintenance jobs . I'm looking to create my own product in wireless network and also having idea about gadget that can be useful for students . But i... (1 Reply)
Discussion started by: Cholasivam
1 Replies

3. Shell Programming and Scripting

awk experts please help

I have a log file of 60 MB with 20k records which contains data like below. this contains some data so removed 2891358271000020, 2012-12-02 23:16:17 , 2012-12-02 23:16:17 , 378015123, 2012-12-02 23:16:19 , 2012-12-02 23:16:19 , (15 Replies)
Discussion started by: mirwasim
15 Replies

4. UNIX for Advanced & Expert Users

Experts!! please help me

Hi experts, Please help me on the below: how to write a shell script to search and delete files on windows server. -script runs on unix box -it should search for specific files on windows server and delete them periodically. (1 Reply)
Discussion started by: chpradeepch
1 Replies

5. UNIX for Advanced & Expert Users

for experts

Hi i'm working with mpi programs every thing ok but i need after i compile the mpi to calc the area of the rectangle for example (not my program) accept two arguments from the command line: mpirun -n 4 myprog 24 100 here 24 and 100 two arguments i'll pass them to the program how can... (1 Reply)
Discussion started by: Scotch
1 Replies

6. UNIX for Dummies Questions & Answers

Perl Experts - Need your help

Hi All, I need to take a dump of a table and load into excel and send as an attachment and for this am using a Perl script. I know the usual way of doing this by writing all the fields next to 'select' query and similarly writing into an excel as shown below ... (3 Replies)
Discussion started by: karthickrn
3 Replies

7. UNIX for Dummies Questions & Answers

Perl Experts - Need your help

Hi All, I am using ingres in perl select count(*) rec from user_tables where table_name = 'abc'; I want to use the alias variable 'rec' and check the value if >0 insert values else create table. How can I do this without using hash variables in perl. Kindly help me in this regard. Much... (1 Reply)
Discussion started by: karthickrn
1 Replies

8. Programming

Experts !!! I Need HELP immediately..!

HI, I am getting the error : ErrCode:-2 Message:Application Initialisation function Err Params:Could not Load SO/DLL Nothing specific is coming, just the above error. Can anyone tell me how to debug this error. Thanks. (3 Replies)
Discussion started by: amol_helwatkar
3 Replies
Login or Register to Ask a Question