How to find what version of Iplanet Web Server is running on System

Hi,
I am trying to find a command which i can run to find out what version of Iplanet Web Server am i running on my Solaris System.
Example: if i ran command it should return something like: Iplanet Enterprise Web Server 4.1 SP8
WIll appreciate any feedback
Thanks

You can go to server_root/bin/https/bin and run "./ns-httpd -v" command:
# ./ns-httpd -v
Sun Netscape Alliance
iPlanet-WebServer-Enterprise/4.1SP8
For the current 6.x versions, you can use the start script of the instance like follows:
# ./start -version
Sun Microsystems, Inc.
Sun ONE Web Server 6.1SP1 B12/19/2003 22:19
Please note that 4.1 version is no longer supported. You
should plan to upgrade to a supported version like 6.1.
Thanks
Manish

Similar Messages

  • Remote way to find what version of windows a device is running

    I am looking for a way to find what version of Windows a workstation is running remotely.  These workstations are on the same network, but not a part of the domain.  This means I have no credentials to access them.  Is there a way to to do
    this?

    It doesn't matter.  Without credentials you cannot access the OS and the machines will not expose their identity if they are not enabled to do so.  I suspect the manufacturers have done their job abnd have locked down the machines.  This is 
    probably why they are not listed in DNS.  Any connections are hard wired into the servicing systems. 
    This is normal for medical machines.  We do not want people who are not qualified to have any access at all.  If someone asked you to do this then they are probably having a little joke on you.  HIPAA and other regulations require that al
    devices that might have any patient identifying data be locked down.
    The servicing systems will have to information you want although many devices are "upload only" which means they can connect to and upload data and images to another system but they cannot be connected to or remotely managed.
    As I posted above.  You will have to contact the owners of the machines to find out if they are managed.
    There are RPC probing tools that can read back OS data but it is likely that these machines are firewalled against that.  Try to telnet to port 445 to see if it responds. If it does one of the third party tools can probe it for more information.
    This has pretty good discovery software.  If GFI can't do it it can't be done.
    http://www.gfi.com/products-and-solutions/network-security-solutions/gfi-languard
    ¯\_(ツ)_/¯

  • How to find the version of iplanet?

    Hi,
    Does anyone know how I can get version/patch level of all iplanet software installed on Solaris. I am trying to write a script will collects this information from all our boxes. We are running Solaris 2.6
    Thanks,
    Andrew

    Hi Andrew,
    You can check the version(including service pack) of iWS either from GUI <b> OR </b> from error log(/server-root/instance-name/logs/) file.
    The below is an a sample script which helps to find out what and all version of iWS has been installed in you HDD(Hard Disk).
    #A script to search a which version of iWS as been running in this machine
    for i in `find / -name "errors" -o -name "errors.*"`
    do
    if [ -f $i ]
    then
    (grep -h "iPlanet-WebServer-Enterprise" $i |head -1 || exit)
    fi
    done;
    I hope this helps.
    Regards,
    Dakshin.
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support.

  • How to make servlets reloadable in iplanet web server in solaris??

    hi all,
    does anyone know how to make servlets reloadable in iplanet ??? Thanks for help

    Hi there,
    I think your question is about "Dynamic Class Reloading", also named as Hot deployment. and the following lines may be helpful.
    iAS 6.0 SP3 and later version supports new hot deployment features through dynamic class
    reloading of EJBs.By default, dynamic servlet, EJB and registered JSP reloading is disabled in iPlanet Application Server.
    To enable dynamic reloading of servlets, EJBs and registered JSPs, perform the following steps:
    1.Start iPlanet Registry Editor, kregedit, and modify the Disable value under the Versioning key:
    SOFTWARE/iPlanet/Application Server/6.0/CCS0/SYSTEM_JAVA/Versioning
    2.Set the Disable value to 0 (By default, the Disable value is set to 1)
    3.Restart iPlanet Application Server to enable the change
    To hot deploy your application, simply compile and replace the file in the appropriate directory or, use iasdeploy to redeploy
    applications.
    I recommand you to check out the iAS's release notes (http://docs.iplanet.com/docs/manuals/ias/60/sp3/rn_sp3.html#20766) for more infomation.
    Good luck
    Shen Jie
    Developer Technical Support
    Sun Microsystems
    http://sun.com/developers/support

  • IPlanet Web Server 6.0 SP1 bug new details

    I have found more details regarding the iPlanet Web Server 6.0 SP1 web.xml
    parsing errors:
    It appears that in web.xml now the sequence of declaration of the elements
    plays role!!!!
    If I put <servlet-mapping> tag in the beginning, after that I cannot declare
    any other <servlet> tag in
    web.xml, but if I change the sequence, that is put the <servlet> tags and
    than only one <servlet-mapping> tag
    at the end than the parser works fine and the server runs.
    This is more than strange behavior, because the declaration of the elements
    should not be dependent on their sequence of declaration!!!.
    Sincerely,
    Petros Bezirganyan
    3601 Magic Dr. Shallow Creek, apt. 406
    SAN ANTONIO, TX 78229
    Phone: (210) 340-4401
    E-Mail: [email protected]
    ----------------------------------------------------------------

    Dear All,
    I want to finalize this problem.
    This behavior is actually quite normal and follows from DTD declared at
    http://java.sun.com/j2ee/dtds/web-app_2_2.dtd
    That is the element <servlet> is listed prior to the element
    <servlet-mapping>, so as we
    know from DTD syntax, when elements are separated by commas in declaration,
    their order is
    essential.
    So basically what happened, in iPlanet Web Server 6.0 SP1 the DTD
    (http://java.sun.com/j2ee/dtds/web-app_2_2.dtd) has changed, so that is why
    the old web.xml files, where the order of elements was different, became
    invalid according to the new DTD, this is all the problem.
    Thank you.
    Petros
    "Petros Bezirganyan" <[email protected]> wrote in message
    news:9nt7vn$[email protected]..
    I could find out that web.xml parsing (SAX) error occurs only if
    <servlet-mapping> tag precedes any <servlet>
    tag in Web deployment descriptor of iPlanet Web Server 6.0 SP1.
    That is if I group all <servlet> tags in the beginning and then at the
    bottom I group all the <servlet-mapping> tags,
    the SAX parser works fine and the server starts.
    In my previous messages I stated that we can have only one<servlet-mapping>
    tag, this is not true, the problem was in a position of the tag's
    declaration.
    Sincerely,
    Petros Bezirganyan
    3601 Magic Dr. Shallow Creek, apt. 406
    SAN ANTONIO, TX 78229
    Phone: (210) 340-4401
    E-Mail: [email protected]

  • Version of Apache web server

    Hi,
    What version of Apache web server comes bundled with Oracle iAS 9.0.3 version ?
    Thanks,
    Tom

    If your running on a Unix box you can execute the following from Apache/bin to find out : httpd -v

  • Query on Support of IPLANET WEB SERVER

    Hi
    Kindly note that as in Download section I am not able to see the IPLANET WEB SERVER in WEB SERVER CATEGORY. As when i click on Sun One web Server in some of the location it shows that "formerly iplanet web server" As I have one doubt regarding that whether Now the support & Newer version for IPLANET WEB SERVER has been dropped from Sun ? If I want to download Iplane web server 6.0 from where I can get it ?

    At first it is iPlanet web server, then Sun ONE web server. Now it is called Sun Java System Web Server. 7.0 is the current version.
    Check this web page for support related questions:
    http://www.sun.com/software/products/web_srvr/lifecycle.xml
    Download the last known release of Sun ONE web server 6.0 from:
    http://www.sun.com/download/products.xml?id=43a84f89

  • How to find out version of patch for iPlanet Web Server 6.1 on Win2000

    I have a iPlanet Web Server 6.1 SP1 running on Windows 2000. Can I find out what patches has been installed for my iPlanet Web Server?
    Thanks in advance for any information.

    n/m, read version, not patches.
    Edited by: David.Eriksson on Jun 30, 2008 8:12 AM

  • HT1338 Can anyone tell me how to find what OS I'm using on the Mac? Tiger or Leopard? Also, how do I update from 10.6.8 to the latest version?

    Can anyone tell me how to find what OS I'm using on the Mac?
    Tiger or Leopard?
    Also, how do I update from 10.6.8 to the latest version?

    Go to the Apple menu and select "About This Mac". You will get a window similar to this one -
    You current OS X version number will be shown as I've marked.
    OS X 10.4.x is Tiger, 10.5.x is Leopard, 10.6.x is Snow Leopard, 10.7.x is Lion, and 10.8.x is Mountain Lion.
    Whether or not you can go to the latest OS X version depends upon your hardware -
    You will need to purchase the retail set for the OS X version you want; there is no pint in getting and installing any intermediate versions. Once the retail version has been installed, you can update it to the latest release for that version via download updater.

  • How do I find what version of Java I have on my iMac?

    How do I find what version of Java I have on my iMac (OSX 10.9.1)?

    If you installed the Oracle Java runtime, there's a preference pane named Java in System Preferences.

  • How do I find what version of firmware is running on my iPhone 4?

    How do I find what version of firmware is running on my iPhone 4?

    Is the actual firmware shown next to Version?
    I can see a Modem Firmware but not the phones actual firmware! Unless of course Version is the veer ware version!

  • How can I check what version of Java Web Start is installed on the client ?

    hi,
    Can anyone tell me how can I check what version of java web start is installed on the client and display a message if the client has not the good version ?
    I mean:
    I'd like all people running my application use java 5 and if someone using java 1.4 try to run the application get a nice screen telling him to download the latest version of Java Web Start.
    Is this possible ?
    Thanks in advance.

    Of course, I put this on my jnlp file,
    <resources>
        <j2se version="1.5+"/>
        <jar href="..... "/>
    </resources> But even with that, it doesn't display a nice message but a kind of exception instead.
    Thanks in advance.

  • HT1553 how do i find what version of Mac OS X Snow Leopard I have?

    how do i find what version of Mac OS X Snow Leopard I have?

    Choose About this Mac from the Apple menu.
    (79776)

  • How do i know what version of os my mac is running

    How do I find out what version of OS my mac is running on, new to apple, don't judge me....

  • How to Find what are tables and "Table Name" in particular "Data File"

    hi Team,
    I have one database that database 300 gb size , this database having 6 ndf files ,
    here How to Find  what are the tables and  "Table Name"  in particular "Data File"[.ndf]

    Hi,
    In addition to Prashanth’s suggestion, you can also use the following Transact-SQL statements to get more detailed information including  all objects and indexes per Filegroup / Partition and allocated data size of databases.
    The script can work with Microsoft SQL Server 2005 and higher version in all Editions. For more details, please review this article:
    List all Objects and Indexes per Filegroup / Partition.
    -- List all Objects and Indexes
    -- per Filegroup / Partition and Allocation Type
    -- including the allocated data size
    SELECT DS.name AS DataSpaceName
    ,AU.type_desc AS AllocationDesc
    ,AU.total_pages / 128 AS TotalSizeMB
    ,AU.used_pages / 128 AS UsedSizeMB
    ,AU.data_pages / 128 AS DataSizeMB
    ,SCH.name AS SchemaName
    ,OBJ.type_desc AS ObjectType
    ,OBJ.name AS ObjectName
    ,IDX.type_desc AS IndexType
    ,IDX.name AS IndexName
    FROM sys.data_spaces AS DS
    INNER JOIN sys.allocation_units AS AU
    ON DS.data_space_id = AU.data_space_id
    INNER JOIN sys.partitions AS PA
    ON (AU.type IN (1, 3)
    AND AU.container_id = PA.hobt_id)
    OR
    (AU.type = 2
    AND AU.container_id = PA.partition_id)
    INNER JOIN sys.objects AS OBJ
    ON PA.object_id = OBJ.object_id
    INNER JOIN sys.schemas AS SCH
    ON OBJ.schema_id = SCH.schema_id
    LEFT JOIN sys.indexes AS IDX
    ON PA.object_id = IDX.object_id
    AND PA.index_id = IDX.index_id
    WHERE OBJ.type_desc='USER_TABLE'-- add this WHERE clause to display the information of user tables
    ORDER BY DS.name
    ,SCH.name
    ,OBJ.name
    ,IDX.name
    Thanks,
    Lydia Zhang

Maybe you are looking for