Sponsored Content
Operating Systems AIX List running services, Package name and status on AIX. Post 302933303 by -=XrAy=- on Thursday 29th of January 2015 09:25:22 AM
Old 01-29-2015
Hi,

there are no chkconfig for checking the status of all running services.

It depends which kind of software you use:
Open Source installed from the Linux Toolbox (RPM/self compiled) or
AIX Licensed Program Products (LLPs)

Services which installed via RPM or 'self compiled' normally reside under /etc/rc.d/init.d and can check in the similar manner you already do.

Example:
Code:
for SERVICE in `ls -1 /etc/rc.d/init.d/*`;do $SERVICE status;done

AIX Services can check with lssrc -a.
The corresponding LPP/Fileset you get with lslpp -w - it works like rpm -qf.

Other Services may start directly from the INIT-Deamon, so you could check the /etc/inittab file too.

Regards
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

List services running in UNIX

We have lost our Sys Admin and with the DST changes.. i need to make sure all services are re-started on a SUN server running SUNOS 5.9 How can i list what is running and make sure they are running after the DST patches are applied? (2 Replies)
Discussion started by: JanSP
2 Replies

2. Solaris

services status finding ...???

Could we find out the all services status in salaries 9 operating system....??? (2 Replies)
Discussion started by: udayn
2 Replies

3. UNIX for Dummies Questions & Answers

Running services, how to disable some?

Hello all happy people! :) Iam trying to figure out how to disable running services, and witch i can disable. Iam running ssh,apache,ftp and identd. Here is an output from nmap: 21/tcp open ftp Solaris ftpd 22/tcp open ssh SunSSH 1.1 (protocol 2.0) 23/tcp ... (2 Replies)
Discussion started by: empty
2 Replies

4. AIX

how to check status of various services and port?

How can i check which service is activated on my AIX Box? how one can check particular port is open or not (like ftp/telnet port)? I dont have admin rights (1 Reply)
Discussion started by: ashish4422
1 Replies

5. Shell Programming and Scripting

Colloring Status of process or package

Hi there all again, I am building a menu script for viewing packages and deamons and printers and all.. I know how to collor text to red or green. But I get my results from status and put it in a array. How can I change a result that is standing in a array to build collor around it. For... (6 Replies)
Discussion started by: draco
6 Replies

6. UNIX for Advanced & Expert Users

detecting the running services

I did search on the subject on services in linux and they do explain how to find what are the services that loaded when the linux boot. however I have not find how to detect what services run right now. I would like to now that and how to kill services. Thanks. (3 Replies)
Discussion started by: programAngel
3 Replies

7. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

8. HP-UX

List running services, corresponding package name and status.

Hi, I am trying to list down list of running services, corresponding package name and status on HP-UX box. The output will be a CSV in a fashion:- Service Name, Package Name, Status. While working on Linux centos, I used chkconfig to do the same. Below was the snippet:- for i in `chkconfig... (3 Replies)
Discussion started by: Happy83
3 Replies

9. HP-UX

How to fetch all running services on HP-UX?

Hi All, I have a requirement to get all the running services on few HP-UX boxes. In Linux systems I am able to do that successfully using: chkconfig --list. However I can't find anything equivalent in HP-UX. If anyone has any pointers on the same then please suggest. Adyan (4 Replies)
Discussion started by: Adyan Faruqi
4 Replies

10. Solaris

Boot Error - NIS services fails with Status 96

My system suddenly crash and when it rebooted there was an error: /dev/rdsk/c1t0d0s3 is logging svc.startd: svc:/network/nis/client:default: Method "/method/yp" failed with status 96. The system completes booting however when I log in a user account / directory is not longer... (1 Reply)
Discussion started by: NeedSolarisHelp
1 Replies
Package::Constants(3perl)				 Perl Programmers Reference Guide				 Package::Constants(3perl)

NAME
Package::Constants - List all constants declared in a package SYNOPSIS
use Package::Constants; ### list the names of all constants in a given package; @const = Package::Constants->list( __PACKAGE__ ); @const = Package::Constants->list( 'main' ); ### enable debugging output $Package::Constants::DEBUG = 1; DESCRIPTION
"Package::Constants" lists all the constants defined in a certain package. This can be useful for, among others, setting up an autogenerated "@EXPORT/@EXPORT_OK" for a Constants.pm file. CLASS METHODS
@const = Package::Constants->list( PACKAGE_NAME ); Lists the names of all the constants defined in the provided package. GLOBAL VARIABLES
$Package::Constants::DEBUG When set to true, prints out debug information to STDERR about the package it is inspecting. Helps to identify issues when the results are not as you expect. Defaults to false. BUG REPORTS
Please report bugs or other issues to <bug-package-constants@rt.cpan.org<gt>. AUTHOR
This module by Jos Boumans <kane@cpan.org>. COPYRIGHT
This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. perl v5.14.2 2010-12-30 Package::Constants(3perl)
All times are GMT -4. The time now is 03:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy