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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rbri

  1. rbri

    Copying Wrong Data

    Hello Everyone, I am having a very odd thing happening I can't recall I have ever had this happen. I need to copy data from one Linux server to another from several different mount points. (i.e /0c, /0d, /0e). I wanted to set up a bash script to copy a fresh copy each day and run the script off...
  2. rbri

    List the connection strings for a website

    I wrote a vbscript to list all the websites on our web server I was asked to add the connection string information to my output. I have been searching now for 2 days and can't find anything does anyone know where that information is stored. In the IIS Manager under the icon labled "connection...
  3. rbri

    Perl and OpenOffice::OODoc

    Hello I need some help. I requested to give my manager a list of all Linux users that have sudo access in our environment. I generated a text file for him containing 2 columns one column with the group name and the other column with the user in that group I set up a cron to run the script a...
  4. rbri

    Enumerate AD

    It's working thank you both for your help. Thanks again. Randy
  5. rbri

    Enumerate AD

    Thank you Chris for your help. I am not sure where to put the "if" statement I tried putting it around all the code in the "foreach" loop but I get the same results without the "if" statement as I originally got. I then tried to put the "if" statement around the "printf" statement but then I get...
  6. rbri

    Enumerate AD

    Hello Everyone I wrote a Perl script to gather NIS and Active directory info. The issue I am having is the only way I have been able to enumerate AD is with this snippet. The $sNisInfo contains the "userID:GrpName:UserRealName:" from NIS. $result = $ldap->search( base...
  7. rbri

    Replace with SED

    I tried your suggestion and used a different character than a "/" the script seems to be working now thank you for your help.
  8. rbri

    Replace with SED

    Hello Everyone I am try to write a script that will change all the passwords in the passwd file to the same password. I have the script doing everything it needs until I encounter a password that has a "/" in it the SED substitution command fails because it gets to many slashes. I can get a...
  9. rbri

    Installing DBI and DBD::mysql Perl Modules

    Hello I checked and I am running the same cc bundled compiler as you are I am running a different version of Perl maybe that is causing my issue. My perl version is v5.10.1 (*) built for IA64.ARCHREV_0 . Thanks Randy
  10. rbri

    Installing DBI and DBD::mysql Perl Modules

    Hello Well I tried the "cc" compiler I get a whole new set of error's. I am not sure if my problem is the Itanium platform or the "cc_bundle" compiler" Here are the error's I get when I use the "cc" compiler. cc -c -Ae -D_HPUX_SOURCE -Wl,+vnocompatwarnings -I/usr/local/include...
  11. rbri

    Installing DBI and DBD::mysql Perl Modules

    Yes, I confirmed that I am running the "gcc" compliler. Before I started the DBI/DBD install I changed the link under "/usr/bin/cc -> /usr/ccs/bin/cc" to "/usr/bin/cc -> /opt/hp-gcc-4.4.0/bin/gcc" I did it that way because I noticed that the Makefile.PL creates the Makefile calling "cc" not...
  12. rbri

    Installing DBI and DBD::mysql Perl Modules

    Hello Everyone I hope this is in the correct forum. I have a Itanium machine running HP-UX 11.23 that I am trying to load the DBI and the DBD::mysql modules on I keep getting what seems to be syntax error's when I run the "make" command trying to install the DBI module. Here is the error I get...
  13. rbri

    Searching Active Directory

    Hello tsuji I tried both of your suggestions and neither of them worked suggestion (1) returns an error that no person was found by that name that is my error message but, it goes there if the search was unsucessful, and sugesstion (2) returns the same result as my code where the value is...
  14. rbri

    Searching Active Directory

    That is correct I get data from all the other values requested the destinationIndicator is the only one that comes back empty.
  15. rbri

    Searching Active Directory

    For some reason it never gets inside the loop it must think all the values are null. Here is what I was testing. if not isnull(objRecordSet.fields ("destinationIndicator").value) then MsgBox "Inside loop" end if Thanks

Part and Inventory Search

Back
Top