Sponsored Content
Special Forums UNIX and Linux Applications Infrastructure Monitoring Monitoring software on IBM AIX Post 302978001 by zaxxon on Monday 25th of July 2016 07:55:00 AM
Old 07-25-2016
Sorry, I don't know any. Most monitoring solutions run on Linux like Nagios, Icinga, Groundwork, etc. or on Windows. IBMPower resources are may be too expensive just for a monitoring server.

Maybe you get lucky compiling/installing one with the GNU packages you can get here:

AIX Open Source Packages | Main / AIX Open Source Packages

There is also gcc and much much more.

Update:
There is even a completely compiled Nagios 4.1 package collection.

Last edited by zaxxon; 07-25-2016 at 09:00 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Monitoring Software??

Hi everybody, I am currently setting up a web site for customers to place orders. Having placed the order the file will be downloaded onto the Unix server (SCO UNIX v 5.0.4). At this point I need to be able to monitor the system for the file being resident and if it is then perform an action on... (2 Replies)
Discussion started by: cookiejar
2 Replies

2. News, Links, Events and Announcements

IBM Releases 500 Software Patents

If you haven't heard about this elsewhere, here is one link to the story. But here is a pdf file from IBM's website listing the patents. (5 Replies)
Discussion started by: Perderabo
5 Replies

3. Solaris

monitoring software

i am looking for a really good monitoring solftware for solaris . i need it to be installed on a server and accessed from a client application on windows , with some nice GUI interfaces . thanks (6 Replies)
Discussion started by: ppass
6 Replies

4. UNIX for Dummies Questions & Answers

network monitoring software

hi can i know if there is any GUI interface software to help in monitoring the network of the servers i have? something like a web pages or a stock pages when a processes is down, a red colour is flashes. best if it is free ;) (1 Reply)
Discussion started by: legato
1 Replies

5. AIX

how to find old software on IBM

Hi All, im trying to find some older versions of software due to a problem that i'm having after upgrading. namely. devices.sdd.43.rte ibm2105.rte version 32.6.100.18 devices.fcp.disk.ibm2105.rte version 32.6.100.18 devices.scsi.disk.ibm2105.rte version 32.6.100.18 Anyone any ideas... (0 Replies)
Discussion started by: djdavies
0 Replies

6. UNIX for Advanced & Expert Users

MOnitoring Software for Unix servers

Guys, I need a monitoring software for my Unix servers. Over the last couple of years, the number has increased to well over 40 servers. All have different applications running on them and it is impossible to go to everyone of them and do checks. I was using Spotlight on Unix. I was... (1 Reply)
Discussion started by: jair
1 Replies

7. AIX

IBM AIX on IBM Eseries & x series server

Hi, I want to know whether IBM AIX can be installed on the IBM e series and x series server hardware? Thanks & Regards Arun (2 Replies)
Discussion started by: Arun.Kakarla
2 Replies

8. AIX

ASK SNMPD configuration software monitoring

Hi, How to create new SNMP at aix configuration? Can your share in this the step by step.. regards, (1 Reply)
Discussion started by: williamen
1 Replies

9. Infrastructure Monitoring

Whats the best new monitoring software

Hi All We have a new site going live. with 80 switches , 10 servers We have used nagios ,icinga,mrtg and others what do users think is the best new software worth a look? thanks Richard (1 Reply)
Discussion started by: rdunne
1 Replies

10. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies
Parse::CPAN::Packages(3pm)				User Contributed Perl Documentation				Parse::CPAN::Packages(3pm)

NAME
Parse::CPAN::Packages - Parse 02packages.details.txt.gz SYNOPSIS
use Parse::CPAN::Packages; # must have downloaded my $p = Parse::CPAN::Packages->new("02packages.details.txt.gz"); # either a filename as above or pass in the contents of the file # (uncompressed) my $p = Parse::CPAN::Packages->new($packages_details_contents); my $m = $p->package("Acme::Colour"); # $m is a Parse::CPAN::Packages::Package object print $m->package, " "; # Acme::Colour print $m->version, " "; # 1.00 my $d = $m->distribution(); # $d is a Parse::CPAN::Packages::Distribution object print $d->prefix, " "; # L/LB/LBROCARD/Acme-Colour-1.00.tar.gz print $d->dist, " "; # Acme-Colour print $d->version, " "; # 1.00 print $d->maturity, " "; # released print $d->filename, " "; # Acme-Colour-1.00.tar.gz print $d->cpanid, " "; # LBROCARD print $d->distvname, " "; # Acme-Colour-1.00 # all the package objects my @packages = $p->packages; # all the distribution objects my @distributions = $p->distributions; # the latest distribution $d = $p->latest_distribution("Acme-Colour"); is($d->prefix, "L/LB/LBROCARD/Acme-Colour-1.00.tar.gz"); is($d->version, "1.00"); # all the latest distributions my @distributions = $p->latest_distributions; DESCRIPTION
The Comprehensive Perl Archive Network (CPAN) is a very useful collection of Perl code. It has several indices of the files that it hosts, including a file named "02packages.details.txt.gz" in the "modules" directory. This file contains lots of useful information and this module provides a simple interface to the data contained within. In a future release Parse::CPAN::Packages::Package and Parse::CPAN::Packages::Distribution might have more information. Methods new Creates a new instance from a details file. The constructor can be passed either the path to the "02packages.details.txt.gz" file, a path to an ungzipped version of this file, or a scalar containing the entire uncompressed contents of the file. Note that this module does not concern itself with downloading this file. You should do this yourself. For example: use LWP::Simple qw(get); my $data = get("http://www.cpan.org/modules/02packages.details.txt.gz"); my $p = Parse::CPAN::Packages->new($data); If you have a configured CPAN, then there's usually already a cached file available: use CPAN; $CPAN::Be_Silent = 1; CPAN::HandleConfig->load; my $file = $CPAN::Config->{keep_source_where} . "/modules/02packages.details.txt.gz"; my $p = Parse::CPAN::Packages->new($file); package($packagename) Returns a "Parse::CPAN::Packages::Package" that represents the named package. my $p = Parse::CPAN::Packages->new($gzfilename); my $package = $p->package("Acme::Colour"); packages() Returns a list of Parse::CPAN::Packages::Package objects representing all the packages that were extracted from the file. package_count() Returns the number of packages stored. distribution($filename) Returns a Parse::CPAN::Packages::Distribution object that represents the filename passed: my $p = Parse::CPAN::Packages->new($gzfilename); my $dist = $p->distribution('L/LB/LBROCARD/Acme-Colour-1.00.tar.gz'); distributions() Returns a list of Parse::CPAN::Packages::Distribution objects representing all the known distributions. distribution_count() Returns the number of distributions stored. latest_distribution($distname) Returns the "Parse::CPAN::Packages::Distribution" object that represents the latest distribution for the named disribution passed, that is to say it returns the distribution that has the highest version number (as determined by version.pm or number comparison if that fails): my $p = Parse::CPAN::Packages->new($gzfilename); my $dist = $p->distribution('Acme-Color'); latest_distrbutions() Returns a list of Parse::CPAN::Packages::Distribution objects representing all the latest distributions. latest_distribution_count() Returns the number of distributions stored. Preamble Methods These methods return the information from the preamble at the start of the file. They return undef if for any reason no matching preamble line was found. file() url() description() columns() intended_for() written_by() line_count() last_updated() Addtional Methods These are additional methods that you may find useful. parse($filename) Parses the filename. Works in a similar fashion to the the constructor (i.e. you can pass it a filename for a compressed/1uncompressed file, a uncompressed scalar containing the file. You can also pass nothing to indicate to load the compressed file from the current working directory.) Note that each time this function is run the packages and distribtions found will be "added" to the current list of packages. add_quick($package_name, $package_version, $prefix) Quick way of adding a new package and distribution. add_package($package_obj) Adds a package. Note that you'll probably want to add the corrisponding distribution for that package too (it's not done automatically.) add_distribution($distribution_obj) Adds a distribution. Note that you'll probably want to add the corresponding packages for that distribution too (it's not done automatically.) distribution_from_prefix($prefix) Returns a distribution given a prefix. latest_distributions Returns all the latest distributions: my @distributions = $p->latest_distributions; AUTHOR
Leon Brocard <acme@astray.com> COPYRIGHT
Copyright (C) 2004-9, Leon Brocard LICENSE
This module is free software; you can redistribute it or modify it under the same terms as Perl itself. BUGS
This module leaks memory as packages hold distributions and distributions hold packages. No attempt has been made to fix this as it's not anticpated that this will be used in long running programs that will dispose of the objects once created. The old interface for "new" where if you passed no arguments it would look for a "02packages.details.txt.gz" in your current directory is no longer supported. TODO
delete_* methods. merge_into method. Documentation for other modules. SEE ALSO
CPAN::DistInfoname, Parse::CPAN::Packages::Writer. perl v5.12.4 2011-09-12 Parse::CPAN::Packages(3pm)
All times are GMT -4. The time now is 09:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy