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 strongm 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: *

  • Users: cryptoadm
  • Order by date
  1. cryptoadm

    Domains

    Thanks for the informaton. If I got a static IP can I have the DNS and 2 web servers all point to the same static IP and have the DNS and web servers be external on the 192.168.x network? Also, since one domain is example.com and the other domain is mydomain.com can they share the same DNS...
  2. cryptoadm

    Domains

    Can I have a DNS server with a domain of system.internal; have a website on a server with a name of example.com; another website on a seperate server with a name of mysite.com. The DNS and web servers will be on a private network 192.168.10 and will have external internet access. The web...
  3. cryptoadm

    Calling function in script

    My script has a number of separate functions and each function needs to be ran from another script. I don't want to put each function into another standalone script which would give me something like eight scripts. example code: #!/usr/bin/perl sub x { print "hello\n"; } sub z { print...
  4. cryptoadm

    OpenSolaris Virtual Network

    I'm using OpenSolaris as the host operating system with Crossbow bits. Dynamic IP. The router is a non-global zone with dhcp on the external nic. The firewall is pfSense in VirtualBox. The web, mail, and dns servers are running FreeBSD in VirtualBoxes. internet -------> virtual router...
  5. cryptoadm

    Solaris10 Non Global zone

    The resource management guide contains all the information you need. http://dlc.sun.com/pdf/817-1592/817-1592.pdf
  6. cryptoadm

    combine multiple VGs

    You can using cplv.
  7. cryptoadm

    Multiple matches and replacements

    Thank you
  8. cryptoadm

    Multiple matches and replacements

    How would you do a match and replace for multiples in a variable? Example: PATH=$PATH:/home/userx:/usr/X11:.:/usr/sbin:..:/usr::/var:. I need to remove any . and .. and :: in the path and also if any of those 3 characters are at the end of the line they need to be removed. My code works to...
  9. cryptoadm

    Reverse proxy in front of apache

    This probably isn't the right forum and I posted in the linksys forum, however, if anyone can shed any light... My website can be viewed internally but not externally. The setup is as follows: cable modem -> linksys router -> ipf firewall -> nginx reverse proxy -> apache web server ISP...
  10. cryptoadm

    Linksys in front of ipf firewall

    My website can be viewed internally but not externally. The setup is as follows: cable modem -> linksys router -> ipf firewall -> nginx reverse proxy -> apache web server ISP assigned address (62.x.x.x) is on WAN of linksys with LAN of 192.168.1.1 The firewall external is 192.168.1.101 and...
  11. cryptoadm

    Linksys in front of ipf firewall

    My website can be viewed internally but not externally. The setup is as follows: cable modem -> linksys router -> ipf firewall -> nginx reverse proxy -> apache web server ISP assigned address (62.x.x.x) is on WAN of linksys with LAN of 192.168.1.1 The firewall external is 192.168.1.101 and...
  12. cryptoadm

    Equivalent of ksh basename $0

    Thanks both!!
  13. cryptoadm

    Equivalent of ksh basename $0

    In Perl what is the equivalent of basename $0 For example: # cat test.sh #!/bin/ksh prog=`basename $0` echo $prog returns: test.sh
  14. cryptoadm

    Facing performance issue on IBM AIX 5.3

    4245691 paging space I/Os blocked with no psbuf You need to find why it's paging. I would assume 5G for a database is enough and the web server if it's purley httpd and not an app server. What kind of disk are you using? All internal or do you have external SAN like EMC or IBM? You need to...
  15. cryptoadm

    Facing performance issue on IBM AIX 5.3

    Run 'vmo -a' and 'ioo -a' too.
  16. cryptoadm

    Facing performance issue on IBM AIX 5.3

    I'd rather see 'vmstat -v' and 'vmstat -s' than svmon output. Also need a 'pstat -A | grep aios | wc -l' to see how many aio servers are running. Also check smitty aio to see how many aio servers are setup as well as priority and max requests.
  17. cryptoadm

    Perl inline edit

    That works almost like I need except it is removing the # on all lines but I want it to remove the # in front of the lines that match my disk group only. Is there a way to do that? Thanks.
  18. cryptoadm

    Perl inline edit

    open (FS, "/etc/vfstab") or die "Can't open /etc/vfstab: $!\n"; while ($line=<FS>) { ($devmnt, $devfsck, $mntpt, $fstype, $fsckpass, $mntboot, $mntopt) = split(/\s+/,$line,7); if ($devmnt =~ /datadg/) { $chardev = substr($devmnt, 0...
  19. cryptoadm

    Printing columns

    Thank you.
  20. cryptoadm

    Printing columns

    I changed $alldg_device = $f[1]; $alldg_type = $f[2]; $alldg_disk = $f[3]; $alldg_group = $f[4]; $alldg_status = $f[5]; to $alldg_device = $f[0]; $alldg_type = $f[1]; $alldg_disk = $f[2]; $alldg_group = $f[3]...

Part and Inventory Search

Back
Top