- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: What software is installed on my server?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 03:42 AM
06-28-2001 03:42 AM
What software is installed on my server?
Is there anyway of finding out what's on the server other than manually trawling through every directory? Thanks for your help in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 04:05 AM
06-28-2001 04:05 AM
Re: What software is installed on my server?
Whatever was installed with swinstall can be found,
what was installed manually can only manually be tracked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 04:22 AM
06-28-2001 04:22 AM
Re: What software is installed on my server?
If you want to know, which Oracle software is installed,
use the Oracle Universal Installer ( 8.1.6 and higher ) or the installer ( up to 8.0.n ).
Any other software usually creates a subdirectory in /opt
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 04:27 AM
06-28-2001 04:27 AM
Re: What software is installed on my server?
Mostly all 3rd party software goes in to /opt check directory listing there.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 04:54 AM
06-28-2001 04:54 AM
Re: What software is installed on my server?
Would it be possible to write a script that could identify binary type files, or is this a bit pointless as not all software will be in this format?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 05:30 AM
06-28-2001 05:30 AM
Re: What software is installed on my server?
Hi
Unfortunately there is no inbuilt tool available in HP to list installed S/Ws. All HP patch bundles and products U can list by using swlist command with defferent options. See man page of swlist. Most of the other softwares are installed in /opt. U can do a directory listing and trace out.
Best of luck
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 05:42 AM
06-28-2001 05:42 AM
Re: What software is installed on my server?
If you want to ascertain the kinds of files you have in a particular directory, you could use the 'file' command:
# cd
# for X in *
> do
> file $X
> done
You will see a listing of the filename followed by the file type as defined in /etc/magic.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 06:39 AM
06-28-2001 06:39 AM
Re: What software is installed on my server?
A guess,
Normally the different software appplications may have their own user id, take a look at you password file to identify such application users and their home directories,
also it is possible that some applications are running daemons, check processes other than ownd by root, then trace it out in file systems.
Good luck.
Prashant.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2001 07:45 PM
06-28-2001 07:45 PM
Re: What software is installed on my server?
generated by a find command like:
find / -type f -perm +111
Major applications like Databases and Server daemons
will likely have a userid created for it. Other software
like perl. vnc, emacs, and such may be installed in /opt
or /usr/local. However, they may also be found in
/bin or /usr/bin. Stuff in home directories should not
be installed software.