Need Help with Perl Scripting Issue.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need Help with Perl Scripting Issue.
# 8  
Old 12-11-2008
So what happends when you call the script? Anything? Anything written to the error log?

Do you have ScriptAlias setup for the directory the perl script is in? Generally I put perl/cgi scripts in cgi-bin directory.
# 9  
Old 12-11-2008
Here is the command:

replaceSmiliepen(SMP, "/usr/local/bin/sshpass -p test ssh test.com /usr/contrib/bin/serverinfor -b |") || die "Failed: $!\n";

BySmiliepen(SMP, "/usr/local/bin/sshpass -p test ssh test.com -l root /usr/contrib/bin/serverinfor -b |") || die "Failed: $!\n";
# 10  
Old 12-11-2008
Question

Does it start-up?
Do you see that initial "Print" mesaage?
# 11  
Old 12-11-2008
No nothing is written into the error log and that is why am so confused. Here is the output of the access log:
10.10.10.10 - - [11/Dec/2008:19:26:37 +0000] "GET /icons/page-background.png HTTP/1.1" 304 - "http://10.10..10.1/cgi-bin/test2.pl" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; .NET CLR 3.0.04506.648)"
# 12  
Old 12-11-2008
Yes I do the see inital print Message on the browser and then its Blank page
# 13  
Old 12-11-2008
if you add -w does it give you more errors?

Code:
#!/usr/bin/perl -w 
.
.

# 14  
Old 12-11-2008
No, since its not generating any error......I restarted httpd and here is the output of the error log, after I ran the URL.......

tail -f /etc/httpd/logs/error_log
[[Thu Dec 11 19:34:37 2008] [notice] caught SIGTERM, shutting down
[Thu Dec 11 19:34:37 2008] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/suexec)
[Thu Dec 11 19:34:38 2008] [notice] Digest: generating secret for digest authentication ...
[Thu Dec 11 19:34:38 2008] [notice] Digest: done
[Thu Dec 11 19:34:38 2008] [notice] mod_python: Creating 4 session mutexes based on 256 max processes and 0 max threads.
[Thu Dec 11 19:34:38 2008] [notice] Apache/2.2.3 (Red Hat) configured -- resuming normal operations
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Scripting issue

I am having a problem. which I have described below>> I have to run a script with the format : <File_name><Start_date><End_date> abcd.sh 19-JAN-2015 01-May-2014 problem is I need to compare these two dates and throw an error as start date must be less than or equal to end date. But... (13 Replies)
Discussion started by: Chandan_Bose
13 Replies

2. Homework & Coursework Questions

Perl Scripting issue - homework

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Here is the problem: Lesson 13 OBJ1: OST Class online. Write a script called obj13-1.pl and a library... (2 Replies)
Discussion started by: valhalla
2 Replies

3. Web Development

Perl scripting or shell scripting?

i am going to study any one of the scripting languages mentioned above(shell 0r perl scripting) . Which is having more scope for a fresher? (1 Reply)
Discussion started by: Anna Hussie
1 Replies

4. What is on Your Mind?

Shell Scripting vs Perl scripting

Gents, I have been working in a Solaris/Unix environment for about 9 months. I took some linux classses online before getting the job. But, I am not very good at scripting. I want to learn how to script. Do you think that I should start with Shell scripting or Perl? I wanted to continue with... (2 Replies)
Discussion started by: Pouchie1
2 Replies

5. Shell Programming and Scripting

Scripting Issue

needing this script to shut down 1 IceS and start up another, close the 2nd one after 12 seconds and then reboot. here is what i have so far #!/bin/bash ShutDown() { echo "Shutdown in progress." wall <<ENDOFWALL CI Shutdown has been intiated!!!! Shutdown will occur in 30 seconds...... (1 Reply)
Discussion started by: Zaine
1 Replies

6. What is on Your Mind?

Shell scripting vs Perl scripting

Hi all, I would like to start developping some good scripting skills. Do you think it would be best to start with shell scripting or Perl? I already got a fundation, really basics, in perl. but I am wondering what would be best to be good at first. Can you please help me determine which one to... (14 Replies)
Discussion started by: Pouchie1
14 Replies

7. Shell Programming and Scripting

Scripting Issue

I am having an issue with a script that I created today, my first attempt at this, and was wondering if anyone can give me insight to what changes need to be made. Below is a copy of the script that I have written. WEe are trying to monitor whether or not a services is running. I do have a cron... (1 Reply)
Discussion started by: lsudubee
1 Replies

8. Shell Programming and Scripting

Call Shell scripting from Perl Scripting.

Hi How to call a shell scripting through a Perl scripting? Actually I need some value from Shell scripting and passes in the Perl scripting. So how can i do this? (2 Replies)
Discussion started by: anupdas
2 Replies

9. Shell Programming and Scripting

Scripting issue

Hello, I have an ASCII file (many files of the same format, but different dates and numbers) in the format like below: 2008.01.02,08:00,1.46520,1.46520,1.46410,1.46440,70 2008.01.02,08:05,1.46450,1.46560,1.46440,1.46540,79 2008.01.02,08:10,1.46530,1.46540,1.46490,1.46500,46... (8 Replies)
Discussion started by: chief2000
8 Replies

10. Shell Programming and Scripting

IP-Scripting Issue

Hi Guys, I am quite new to Shell Scripting... I need ur help.. This is very urgent. The thing is like, I need to match a IP address (ex 192.168.200.56) i.e, xxx.xxx.xxx.xx inside a KSH script,but if we enter in different format other than the specified format (ex jjj.ksj., 1.0...), it should... (3 Replies)
Discussion started by: mraghunandanan
3 Replies
Login or Register to Ask a Question