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!

Search results for query: *

  1. iowaprogrammer

    link to wuredist.cab not found 404 - MBSA

    We having been using the following link http://update.microsoft.com/redist/wuredist.cab to download the the latest file for use with MBSA to determine what patches are needed for our windows 7 machines. I was able to get it last month (July 2012). But this month I ram recieving the Server error...
  2. iowaprogrammer

    Perl system command using grep that return not found error

    When I run this code on a linux machine I have no problems; but when done on a Solaris 10 machine I receive the following message back. Message: sh: [A-F0-9]: not found Usage: grep -hblcnsviw pattern file . . . Code: #!/usr/bin/perl my $CHECK = 'mailq|grep ^[A-F0-9]|cut -c 42-80|sort |uniq...
  3. iowaprogrammer

    Solaris bash script using grep giving error

    Trying to run the following one liner in a bash script to check our mailq for big users. But I receive the error below when trying to run from a script instead of command line. Command line it works great. Anybody have a solution or alternative? #!/usr/bin/bash mailq|grep ^[A-F0-9]|cut -c...
  4. iowaprogrammer

    Solaris bash script using grep giving error

    Trying to run the following one liner in a bash script to check our mailq for big users. But I receive the error below when trying to run from a script instead of command line. Command line it works great. Anybody have a solution or alternative? #!/usr/bin/bash mailq|grep ^[A-F0-9]|cut -c...
  5. iowaprogrammer

    Drops < > brackets when displaying returned output

    Running a fairly simple script but not sure how to get the script to display the missing data encapsulated between the < > brackets. I would like to have the page display the results as returned. Expected results Apr 18 23:20:25 isp.com postfix/local[4431]: [ID 197553 mail.info] BAD854989F...
  6. iowaprogrammer

    split() on /

    I am trying to read a string and have it split into pieces using the split() function. I am using the "/" as the separator to split on, but not sure how to write the split to use the "/". Input is going to be directory listings like below /usr/home/<userid>/Trash /usr/home/<userid>/Sent...
  7. iowaprogrammer

    Spliting line with varying entries

    I am trying to write a program to extract user info from a database and write them into a file. The content of the field in the database I am calling can have one or more entries and are separated by a '|'. See sample data below... user@domain|user2@domain|user3@domain friend@domain...
  8. iowaprogrammer

    NFS server - after making changes to /etc/default/nfs What is needed t

    I am running an NFS server in a production enviroment on a x4450 and am in the process of making the following changes to /etc/default/nfs. # increased LOCKD_SERVERS to 128 from default 20 # increased NFS_SERVER to 256 from default 16 # increased LOCKD_LISTEN_BACKLOG to 128 from default 32...
  9. iowaprogrammer

    usermod command saying insufficient space

    when I try to do a usermod -d /usr/tester/<userid> -m <userid> I recieve error saying that UX: usermod: ERROR: There is not sufficient space to move. I can do a simple usermod -d /usr/tester/<userid> <userid> and it works fine. Just having a problem when doing the -m to copy the directory now...
  10. iowaprogrammer

    How to list current NFSD_SERVER threads used

    Is their a command to get the Number of max. NFS Servers (threads) currently running in a solaris 10 system. Trying to tune this option and am not sure how to tell how many are being used? Currently have this set to the default of 16 and am looking to increase it to 32. Regards
  11. iowaprogrammer

    Can not copy NFS share to NFS share

    Looking for help with a an NFS issue I have two shares one with a zfs filesystem the other with a UFS filesystem shared via NFS. I use the shares as home directories for my users The ZFS has the following in dfstab running on a solaris 10 machine share -F nfs -o anon=0,log /mypool/home The...
  12. iowaprogrammer

    Solaris 10 &amp; NFS

    I am running a NFS server on solaris 10 Server: /etc/dfs/dfstab share -F nfs -o rw,root=172.16.50.1:172.16.50.2 /shared THe folder permissions are set to drwxrwxrwx root root /shared On the client (solaris 10) side I am mounting with the following command... mount -F nfs...
  13. iowaprogrammer

    Can't add Quorum server

    I am running a two node cluster on solaris 10. I am now trying to add my quorum server also running on solaris 10. When trying to do so I receive an error "Could not contact quorum server with hostname" from the quorum server I am able to ping both cluster nodes and from nodes I am able to ping...
  14. iowaprogrammer

    sun cluster

    I am doing a proof of concept using two sunblade 100's. I have the machines running solaris 10 and sun cluster 3_2. I have made the necessary connections for the heartbeat and server using three nic's. Doing an scstat shows them as being online. Made an empty resource group name MAIL_RS and I...
  15. iowaprogrammer

    Postfix mail server setups for reduntancy, how do others do it

    Request: ----------------- Would like to have a mail server system that is able to automatically fail over on to a secondary server with out losing any of our users emails? Not sure of the right method and am interested in hearing how other people/groups/companies have implemented this type...
  16. iowaprogrammer

    Device not fstype

    Hello, I am running a mail server for which I needed to clear a meta mirror setup and intended on mount the /dev/dsk at a mountpoint. The mirror setup looked like the following.. d7 -m d27 1 d27 1 1 c4t2d0s7 I did a metaclear on d7 and then did metaclear on d27 I then tried to mount using...
  17. iowaprogrammer

    Discovering the name of array to mount

    I have two solaris machines. Machine 'A' is currently using the array and actively online. On machine 'A' the array is mounted as /dev/dsk/c2t5d0s7 /usr/tester ufs rw,intr,largefiles,logging,onerror=panic,suid,dev=8000a7 1220891218 /dev/md/dsk/d7 /usr/home ufs...
  18. iowaprogrammer

    Question regarding a variable in code

    I am not real sure how to word my question, so bare with me. Trying to find information or get pointed to an article that explains what the difference between $debug and $debug. are? What the dot on the end of the variable does, if anything? $mac=lc($mac); $debug.=$mac; $debug.=`./script.expect...
  19. iowaprogrammer

    Multiple Servlet/cgi Call When displaying PDF

    When loading a pdf file into my browser via servlet or cgi there is three get calls to the server. Is there any work arounds or fixes for this problem. I am using IE5.5 sp1.

Part and Inventory Search

Back
Top