Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. grindel

    Runs .pl fine but won't run .sh

    OK weird.... My script was running bash commands but was named script.sh I renamed it to script.bash and BAM it worked as expected. Some kind of built-in Apache security? <shrug>
  2. grindel

    Runs .pl fine but won't run .sh

    As the subject says - I can execute http://myserver/cgi-bin/script.pl just fine, but when I try to execute http://myserver/cgi-bin/sript.sh my browser just prompts me to either save or open the file. Browser issue? HTTPD issue? YOU be the judge :-) Cheers, Rick
  3. grindel

    mod_rewrite Q

    RewriteCond %{HTTP_HOST} ^(www\.)?foo\.com [NC] RewriteRule ^(.*)$ /webapps/my_webapp/$1 I want to take all requests to either foo.com or www.foo.com and redirect to /webapps/my_webapp/xxxxxxxx What am i missing in my rule? TIA.... -G
  4. grindel

    prefork or worker? which do I have??

    Hi All /usr/sbin/httpd -V says: Server compiled with.... -D APACHE_MPM_DIR="server/mpm/prefork" In my httpd.conf file I have 2 "Ifmodule" sections: <IfModule prefork.c> ..... ... and <IfModule worker.c> ... ... I'm thinking that no matter what, this server is running in prefork mode - is...
  5. grindel

    Version of tomcat connector??

    Hi All I'm using nsapi_redirector to direct requests coming to my SunONE Webserver over to a Tomcat appserver. This redirector is rather old, as it's been in our environment for a couple of years. How can I determine what version it actually is? It was compiled by a resource who has since...
  6. grindel

    Restrict access to a web service via IP Address?

    As the title says, I'm looking at ways to restrict access to a web service (WAS 5.1.1.3 on Solaris). I'm looking at two options: 1) username/password authentication 2) IP address restriction For case 1, I have Global Security enabled already (to restrict access to the adminconsole. Can I use...
  7. grindel

    ksh not reading .profile?

    Thanx for the info - I'll go and check out the AT&T version. In my passwd file, I changed my shell from /bin/bash to /usr/local/bin/ksh. The binary is called ksh not pdksh. I think it's just a setting somewhere in my KDE environment, but danged if I can find it. Not going to spend a WHOLE...
  8. grindel

    ksh not reading .profile?

    I have a SUSE 9.2 installation running KDE. I've been using ksh for many years now, and am kind of averse to changing to any of the shells offered (bash, ksh etc.) So, I downloaded pdksh and compiled it without too much problem. Changed my shell to ksh. Unfortunately, when I start a terminal...
  9. grindel

    Crypto Accelerators?

    Hi All Anyone have any experience using the Sun Crypto Accelerator cards? They have 2 flavors - a daughterboard or a PCI card. Which is recommended? I can't seem to find any opinions or reviews anywhere, so I thought I'd toss it out to the community. TIA Rick
  10. grindel

    Can't unzip recommended cluster package...

    Looks to me like you have a permissions problem when trying to unzip the archive: checkdir error: cannot create 9_Recommended unable to process 9_Recommended/11314606/SUNWapchS/reloc/usr/s "cannot create" usually implies not enough permissions. Rick
  11. grindel

    'nother sendmail question

    Stuck here - I want all my mail to go to a relay host. I set the "DS" macro to smtp.domain.com. Yet, when I send mail, the first thing that happens is sendmail tries to open a connection to iris1.directnic.com to look up MX records. In my mind, as soon as I hit "send" then sendmail should...
  12. grindel

    diff /usr/bin/ps /usr/ucb/ps

    I'm confused - as the subject suggests, if I do a "diff /usr/bin/ps /usr/ucb/ps" I get no differences at all. The files are the same size, the checksums are the same. But, they are different programs! Dude, WTF????
  13. grindel

    unix ps command question

    OK - not sure exactly what you want to do, but here's the solution for a COMMAND that has a path greater than 80 chars: /usr/ucb/ps -auxww My COMMAND is a java process, with the CLASSPATH and everything, so it's quite long. This ps command shows the whole thing.....
  14. grindel

    unix ps command question

    I have the same problem - some of my commands are more than 80 chars in length, so the display gets truncated. I'm looking into the /usr/ucb/ps thing, but I'm not there yet.
  15. grindel

    How to beat the 80 char limit in &quot;ps -ef&quot;

    Hi All When issuing a "ps -ef" you'll get a full listing of processes on the system, but there is an 80 character limit when displaying the command that is actually running. Has anyone found a way around this, or perhaps an alternative "ps" command that I can build? TIA Rick
  16. grindel

    Changing Payments-&gt;WCS comm from port 443

    Hi All I'd like to change communications between Payments and WCS from the default port 443 to something else, say 445. I've changed the port in the WCSRealm screen of configuration manager, I've altered my plugin-cfg.xml and I've made sure that my webserver is now listening on port 445. I try...
  17. grindel

    Where is the DB2 registry on AIX?

    Never mind - I finally found the info on the IBM site. It's in /var/db2 Thanks Rick
  18. grindel

    Where is the DB2 registry on AIX?

    I had someone de-install DB2 version 8 using "smitty" - bad idea! Now when I try to re-install, I get an error "DB2 registry profiles still exist - refer to your DB2 documentation for instructions on removing DB2 registry profiles". I've been hammering on the documentation for hours now and...
  19. grindel

    What does this command actually do?

    Trying to figger what this actually does, but not having much luck. So, I'll toss it out to you experts: perl -i~ -nle 'print unless /<(built-in|command line)>/' makefile x2p/makefile TIA Rick
  20. grindel

    Specifying gcc for Makefile.PL

    Is there any way to specify which compiler to use when performing a "perl Makefile.PL" - by default our Perl is using cc (which we don't have). We can just replace "cc" with "gcc" but then all the CFLAGS are wrong. Thanks, Rick

Part and Inventory Search

Back
Top