How to write Perl Script to Get MQ Queue Depth?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to write Perl Script to Get MQ Queue Depth?
# 8  
Old 01-14-2015
If the files are present under /usr/lib/Perl5 Perl will use them, however if you haven't permissions to adjust the host's Perl libraries you can set your own with the PERL5LIB environment setting.

Note if you're using Bash ~/.bash_profile should export the setting.

Obviously adding the setting to your profile is insufficient in the current shell and the setting should be exported locally.

If you're running the command from an environment like cron where the profile is not read first you should call the script within a shell script such as
Code:
#!/bin/bash
export PERL5LIB=$PERL5LIB:/home/user1/Perl5/lib
/usr/bin/perl /path/to/mq.prg Queue1 Server1

# 9  
Old 01-19-2015
Hi,

Thanks for all your help so far. I indeed have a bash shell and I ran the above command directly from bash shell that you mentioned after placing the PM files in /home/user1/Perl5/lib. However, it gave the Following error

Code:
 
export PERL5LIB=$PERL5LIB:/home/user1/Perl5/lib /usr/bin/perl /tmp/mq.prg Queue1 Server1
bash: export: `/usr/bin/perl': not a valid identifier
bash: export: `/tmp/mq.prg': not a valid identifier
bash: export: `Queue1': not a valid identifier

# 10  
Old 01-19-2015
Sorry, my fault, you should not have spaces in the library path string, just ":" separators.
# 11  
Old 01-19-2015
I set all the paths. Now im getting following error.

bash-3.2$ perl mq.prg Queue1 Server1
Undefined subroutine &main::MQCONN called at mq.prg line 24.
# 12  
Old 01-22-2015
Hi skirmish,

I've found the full install tarball,
http://www.cpan.org/modules/by-autho...es-1.34.tar.gz
This requires the mq sewrver be installed in order to create the Perl API. Check out the README.

Sorry for the delay in getting back.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

MQ Queue depth.

Hi All, We have SuoOs and Linux servers. May i know how do we find the queue depth of IBM MQ from server. (2 Replies)
Discussion started by: Girish19
2 Replies

2. Shell Programming and Scripting

Perl script to create/write into spreadsheet

Hi, I need help in debug following script. can somebody help....!!! #!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcel; # Create a new workbook called simple.xls and add a worksheet. my $workbook = Spreadsheet::WriteExcel->new('simple.xls'); my $worksheet =... (1 Reply)
Discussion started by: chettyravi
1 Replies

3. Shell Programming and Scripting

Need a UNIX/perl script to read and write the data

Hi, I have on Designdocument in that information is stored with in tabular format.I need Perl/unix script to read and write the data using perl script? Regards, Ravi (4 Replies)
Discussion started by: toravi.pentaho
4 Replies

4. Shell Programming and Scripting

Need a perl script to read and write the data

Hi, I have on Designdocument in that information is stored with in tabular format.I need Perlscript to read and write the datausing perl script? Regards, Ravi (0 Replies)
Discussion started by: toravi.pentaho
0 Replies

5. Shell Programming and Scripting

How to write a update query in perl script?

can any one suggest me on how to write a update query in perl script for Oracle database and also tell me abt how we can write a code for sending mails with report as attachment to appropriate persons? (1 Reply)
Discussion started by: Ramesh V Kumar
1 Replies

6. Shell Programming and Scripting

perl script to check read/write/execute permission for 'others'

I want to check access rights permissions not for 'user', not for 'group', but for 'others'. I want to do it by system command in which i want to use 'ls -l' and 'awk' command. I have written the following program : #!/usr/bin/local/perl #include <stdlib.h> system ("ls -l | awk... (1 Reply)
Discussion started by: shubhamsachdeva
1 Replies

7. Shell Programming and Scripting

perl script to find, write, repeat...

I am a novice writing perl scripts so I'd appreciate any help you guys can offer. I have a list of 100 words in a file (words.txt) and I need to find them in a second file (data.txt). Whenever one of these words is found I need to write that line to a third file (out.txt) and then continue... (1 Reply)
Discussion started by: tgamble
1 Replies

8. UNIX for Dummies Questions & Answers

Should I write a PERL Script or Shell Script?

Hello, I have done some BASIC shell scripting/PERL scripting before so I am familiar with the languages. I am not really sure which one would lend itself better to the application I have to write. I am required to scan the message logs for possible break in attempts. If I use shell scripting... (2 Replies)
Discussion started by: mojoman
2 Replies

9. Shell Programming and Scripting

Need help to write a Perl script

Hello friends, I am having a awk script which does my goal , but I want to learn perl , after learning the basics in perl now I am trying to convert my nawk script to perl . Please help me to do some task in perl that I ve already did in nawk. Like I am facing some problem in... (10 Replies)
Discussion started by: user_prady
10 Replies

10. Shell Programming and Scripting

mq queue depth

hi how to find the queue depth of MQ Queue using unix please its very urgent (0 Replies)
Discussion started by: Satyak
0 Replies
Login or Register to Ask a Question