Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Cannot launch perl packer binary from inetd

by flexvault (Monsignor)
on Dec 11, 2012 at 19:28 UTC ( [id://1008382]=note: print w/replies, xml ) Need Help??


in reply to Cannot launch perl packer binary from inetd

Welcome fergal1,

This isn't really a Perl problem! When you launch a script from the command line in *nix, the environmental variables have been set up via your login. When you launch a script from 'inetd' you must ensure that required environment is set up for the script to work.

This would be the same problem with any language (C, C++, etc.). What you could do to find the problem is in your test script open a file and dump your %ENV with a foreach loop. Move that file to a backup name and then call the script from 'inetd' and then compare the two files (can use 'diff' under *nix). It could be different users, protection problem, etc.

Good Luck!

"Well done is better than well said." - Benjamin Franklin

  • Comment on Re: Cannot launch perl packer binary from inetd

Replies are listed 'Best First'.
Re^2: Cannot launch perl packer binary from inetd
by fergal1 (Initiate) on Dec 12, 2012 at 15:25 UTC

    Thanks flexvault I will investigate this.

Re^2: Cannot launch perl packer binary from inetd
by Anonymous Monk on Dec 13, 2012 at 16:43 UTC

    The Perl script lanuches and runs perfectly from inetd. However, the PAR packager binary version doesn't run. See below when I poked inetd, it launched the binary program (testportal). The response suggests that I am not calling the program correctly. Any ideas why would perl packer change the usage of my script and how come I can call it from the command line? Is this something to do with pp not supporting daemon mode as advised by Old Gray Bear or something else? Any more wisdom would be appreciated.

    # nc 192.168.1.110 8080 Usage: testportal [ -Alib.par ] [ -Idir ] [ -Mmodule ] [ src.par ] [ p +rogram.pl ] testportal [ -B|-b ] [-Ooutfile] src.par

        SOLUTION FOUND - When I added the -d option to my command line, the resultant binary may be launched by inetd. Perldoc pp does not go into much detail on this option. But contrib/docs/where_is_it.txt gave me the clue to find the answer. Thanks Anonymous Monk.

        POST-MORTEM - I suspect that my problem was caused due to Perl being installed on the target machine. When I build with dependencies the binary does not launch correctly (perhaps due to a library ambiguity?). When I rebuild without dependencies, the library is loaded and my program runs.

        Thanks for your help guys!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1008382]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (6)
As of 2024-04-23 18:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found