Search Results

Search: Posts Made By: troym72
Forum: AIX 05-24-2011
10,830
Posted By troym72
Excessive interrupt disablement time
Has anyone seen this error before? On the IBM website they suggest updating to AIX 6.1.0.0 TL2, but we are already at that level. Any help or suggestions are appreciated! Thanks!

/>errpt -a...
Forum: AIX 08-03-2010
9,505
Posted By troym72
Thank you.
Thank you.
Forum: AIX 08-02-2010
9,505
Posted By troym72
Well, the server is not REALLY memory bound...
Well, the server is not REALLY memory bound according to the output of the top command below. My application just does so much I/O that 8gb of the 24gb are allocated to I/O Buffers by the OS. Are...
Forum: AIX 06-21-2010
9,505
Posted By troym72
Should I be worried about my AIX Cluster?
I have a 2-node Power 7 - 16cpu - 32gb RAM - AIX 6L cluster. The production node has 10 physical cpus (40 cores) and 24gb of RAM.

The cluster has been live for 6 weeks and I'm seeing some things...
Forum: AIX 05-19-2010
119,842
Posted By troym72
How to find what process is using a port in AIX 5L and above.
There have been a lot of threads about how to find processes that are using a specific port on an AIX server. After long hours of research and reading countless "you can't do that" responses, I...
Forum: Programming 04-12-2010
2,795
Posted By troym72
Top v3.7 and v3.8beta1 will not compile on Power7/AIX6.1 server.
Please help!

We are upgrading our server to a new Power7/AIX6.1 from Power5/AIX5.3. I have some programs that rely on output of the TOP command to do various things, however, I keep getting an...
Forum: AIX 01-26-2010
10,548
Posted By troym72
The application is an interfacing application...
The application is an interfacing application (Healthvision Cloverleaf) that receives Helathcare HL7 transactions via TCP/IP from various applications and routes them to the appropriate destination...
Forum: AIX 01-25-2010
10,548
Posted By troym72
AIX 6.1 Power6 - Sys CPU utilization twice that of User
Hello,

We just purchased two new 4-way (one active one failover) 5Ghz Power6 Servers (failover) with 64GB RAM (32GB per node) runing AIX 6.1 with two LPARs per node connected to our SAN with two...
Forum: AIX 01-18-2010
27,903
Posted By troym72
AIX 6.1 Error - "A file, file system or message queue is no longer available."
Getting a strange error with a log file below. This is just a normal text log file that is written to by an application on the server. The applicaiton is down, however, I cannot read, remove or touch...
Forum: AIX 11-24-2009
9,413
Posted By troym72
AIX 5.3 - Discrepancies between "top" and "vmstat"
Can someone explain the differences I'm seeing below in TOP and VMSTAT commands on my AIX 5.3 server?

Thanks!

CPUs: 4; load averages: 0.86, 0.97, 0.97 18:09:26
926 processes: 4...
3,508
Posted By troym72
What options you have depend greatly on what...
What options you have depend greatly on what version of UNIX you have and which shell you are using.

In order to move deleted files to a faux recycle bin, you're going to need to store more than...
8,106
Posted By troym72
Its not a cron entry. I'm running the script...
Its not a cron entry. I'm running the script from the command line. The same script creates the files and executes the FTP.

#!/usr/bin/ksh


# # # # # # # # # # # # # # # # # # # # # # # # #...
8,106
Posted By troym72
Problem with embedded FTP command in Ksh - System Cannot find the specified path.
I have the following FTP embedded in a Ksh script on AIX 5.3


ftp -n <<WHATEVER
open 10.101.26.218
user hcistats *******
ascii
put $thupdatefile
put $thcollectfile
quit
WHATEVER
...
3,464
Posted By troym72
Had to download Date::Parse and Time::Zone from...
Had to download Date::Parse and Time::Zone from CPAN and then the perl worked like a charm. Thx all!

Anyone have a suggestion on where I can bulk download all the most popular Modules for Perl?
3,464
Posted By troym72
When trying to use the Perl code: BEGIN...
When trying to use the Perl code:

BEGIN failed--compilation aborted.
Can't locate Date/Parse.pm in @INC (@INC contains: /qdxtest/qdx5.4/integrator/lib/perl5/5.6.0/aix...
3,464
Posted By troym72
:( />date -d "Nov 9 11:35:28 2009"...
:(

/>date -d "Nov 9 11:35:28 2009" +%Y%m%d%H%M
date: illegal option -- d
Usage: date [-u] [+Field Descriptors]

:(
6,595
Posted By troym72
For anyone interested I found a freeware Java HL7...
For anyone interested I found a freeware Java HL7 tcp mllp sender/receiver at HL7 Comm (http://nule.org/download/hl7comm.jnlp)
3,464
Posted By troym72
How to convert "Nov 9 11:35:28 2009" to "200911091135"
Using AIX 5.3 and /user/bin/ksh.

Anyone have a quick way to convert the string date

Nov 9 11:35:28 2009 to 200911091135

I know I could create a table of months and find the month...
3,141
Posted By troym72
So simple, yet so illusive. Thanks.
So simple, yet so illusive. Thanks.
3,141
Posted By troym72
How to preserve NL in Ksh variables?
I'm trying to set a variable to the output of a command.

This is what the comand output to the display looks like:

/>hciconndump -v TOsiu
Dump of connection(s): TOsiu...
11,155
Posted By troym72
I was following the example in this...
I was following the example in this (https://www.unix.com/shell-programming-scripting/70284-calculate-server-uptime-99-98-using-ksh-script.html) post. It looked like there was a space after the $ and...
11,155
Posted By troym72
Why won't my Ksh do math with (( ))?
Hello,

I'm usring Ksh on AIX 5.3. For some reason my K-Shell gives me an error when I try to use the math operators (( )).

Can anyone tell me what's going on and how to fix it?

Thanks so...
7,908
Posted By troym72
I renamed the script and there doesn't appear to...
I renamed the script and there doesn't appear to be any other script by this name in my path.

/>KillBadMonitorDaemons.sh
Searching for rogue Monitor Daemon processes... Checking site: tds...
7,908
Posted By troym72
Ksh script function, how to "EXIT 2" without killing the current process?
Hi,

Using AIX 5.3 and Ksh.

/>ls -al /usr/bin/ksh
-r-xr-xr-x 5 bin bin 237420 Apr 10 2007 /usr/bin/ksh
/>


I recently started working for a new employer. I have written UNIX K-Shell...
12,847
Posted By troym72
The perl statement you are using requires a "g"...
The perl statement you are using requires a "g" at the end ... like so:

perl -pi -e 's/printf "\n#/printf "/g' filename

Also, remember that "\n" means New-Line in UNIX. So, you may have to...
Showing results 1 to 25 of 28

 
All times are GMT -4. The time now is 11:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy