Apache issue in Content Server 6.40 installation

Hi,
We are installing content server 6.40 in HP Unix 11i v3. We have downloaded Apache 2.0.65. As per SAP Note 664384 we tried to install Apache but failed in step 'configure' apache. We got error ''configure not found"  . We already stuck with this. Please suggest a solution so that we can go forward. Waiting for valuable comments.
Regards,
Cinu

Hello Deepak,
Thank you for the help. We have problem in compiling and creating binaries. We found GCC compiler is missing in our system. When I check installed compiler by given command
swlist -l product | grep -i compiler
  COMPLIBS              B.11.31        Compiler Support Libraries
  PHCO_42454            1.0            Linker/Compiler/Unwind ENG Manpage Patch
  PHCO_42463            1.0            linker/compiler/unwind Japanese manpage patch
  PHSS_38155            1.0            bundled PA C compiler on IPF
Shall I go with installl GCC compiler?

Similar Messages

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • MaxDB Connection Issue for Content Server

    Hi All,
    We have installed Content Server 6.40 on Windows 203 server.
    We are able to visit the Url http://host:port/ContentServer/ContentServer.dll?serverInfo
    But while creatng a repository i am facing issues..its throwing error that
    "HTTP error: 500 (Internal Server Error)  "CreateTab ContentStorage, connect error SQLConnect failed, [Microsoft][ODBC Driver Manager] Data s"
    Checked these two notes 698915, 301352 and ru the comman to register MaxDB drivers and got that message that the drivers registered successfulyy.
    But still i am not able to create repository uing CSADMIN.
    Also ,when tryng to connect to MaxDB using superdba or contro user ,its throwing error "-2 ERR_USRFAIL authorization failed "
    Even the control user i amnot able to login.I am giving the password which i gave during installation.
    Database is SDB
    Pls suggest.
    Regards
    Ajay

    Hello Ajay,
    1. I recommend you to create the SAP ticket, if you failed to connect to MaxDB
    using superdba or control user with known to you passwords.
    2. Could you post the password, which you used during the installation.
    In the past the issue was with using passwords more as 9 symbols with Unicode MAXDB.
    If you was using, for example, "test123456" password => try to connect to the database
    with u201Ctest12345u201D password < first 9 symbols of the password you used during the installation >.
    Thank you and best regards, Natalia Khlopina

  • Content Server Upgrade Error & Installer Error

    I'm upgrading Content Server to version 6.0 from version 5.0.3, but during the process the Workflow service was removed and not restored. I tried to run the installation program again to install the workflow server, but it keeps giving me this error message:
    "Fatal Application ErrorThis application has unexpectedly quitInovaction of this Java application has caused an InvocationTargetException. This application will now exit (LAX)."
    In the details of the error, it says it's a java.lang.StackOverflowError with the installer. So I uninstalled Content Sever to start all over, but I keep getting the same error message when the installer launches. I thought the installer may have become corrupt so I downloaded a new one and I get the same message.
    Any suggestions would be appreciated.Thanks.

    vfwrite cannot write : No space left on device
    This suggest that you runned out of space... but if its not the case then it might be a bug.
    No an expert in the subject... but you can try to patch the 7.6 to see if it fix the problem before you consider upgrading to 7.7
    That's my 2 cents
    Regards
    Juan

  • Content Server 6.0  Installation problem on Solaris

    When I installed Content_Server_6.0_SP1_solaris_oracle on Solaris 10 ,I get the following error in log file.
    dbg Bundled JRE is not binary compatible with host OS/Arch or it is corrupt. Testing bundled JRE failed.
    How can I resolve it
    please help me.
    Regards
    Sandeep

    If I installed any installer for sparc Machine on x86.is there any problem.My Solaris machine is x86.
    thanx.
    Regards
    Sandeep.

  • Trouble with Content Server connection

    I am having an issue with content server on Unix.  I'm finished with content server install and need to connect my ABAP system to it via CSADMIN. But when I first enter CSAdmin, I give it my host and port. What is the unix http script name for the default install???  Only the Windows name - ContentServer.dll - is populated? What is the web address to get to the content server?
    http://<host>:<port>/???????
    Do I need to do something with OAC0 and SICF first, before going to CSADMIN.  The guide does not mention anything?
    Thanks for your replies!
    Jeff

    Hi. I dont know obout CS on UNIX, on windows  CS uses port 1090 and HTTP script ContentServer/ContentServer.dll
    The web page is
    http://server:1090/ContentServer/ContentServer.dll?serverInfo.
    It's on Windows....
    Also read this Note 586895. -->
          New access paths and compatibility with Windows systems
                  The "/ContentServer/ContentServer. dll" and "/Cache/CSProxyCache.dll" paths have since been established as fixed default values for the Content Server/Cache Servers for Windows.
                  The module access in the Apache Web server is not restricted to actual paths for program files. Using <location> tags, you can determine any (sub)paths that are to be used to access a module. These tags are entered in the "httpd.conf" file within the relevant module configurations. You can also define the clients allowed to access this "location" within a <location> tag with an Allow/Deny clause.
                  To be able to continue using the Windows paths proposed in the SAP system, these Windows paths are installed as compatibility tags.
                  In addition to this, you can use the new, essentially shorter paths "/sapcs" and /sapcsc" to access the SAP Content Server and the SAP Cache Server.
                  The "Modifications to httpd. conf" attachment to the installation manual contains a list of all of the access paths delivered.
    Regards.. Award if helpful.
    Edited by: Sergo Beradze on Mar 11, 2008 4:37 PM

  • Content server - unable to open file

    Hi,
    For Linux based Content server 6.4 installation we are experiencing the errror as unable to open, display  the saved DMS original fiiles.
    The CS server URL test, RSCMST tests are all green.
    The DMS authorizations are correct. We are able to save DMS files on content server. Only while in display mode CV03N it is showing error as unable to open file. We have checked DMS settings which are ok.
    Request you to let us know where to trace the error.
    Thanks.
    Anirudh,

    Hi,
    The error is
    Component New Microsoft Office Word Document 111.doc error text - No Such flie or directory
    Repository Z_DMS_X cannot be addressed from the front end.
    The CS is installed on Apache server, the users are on windows.  The AdminSecurity is set to 0.
    BR,
    Anirudh,

  • Store document into Content Server

    Dear All;
    l have the following requirement for Content Server;
    - Generate the PR/PO form via print program.                         
    -Approver's signature will be display accordingly by the approval level.               EG:  1st level approver 'A' have been approved. Signature of approver 'A' will be display on the generated PR/PO form.                                        - Convert the generated form into PDF format.                         -To attach the supporting document via Generic Object Services (GOS).               -To store the PDF form & attached documents into Archived Link content server with URL address returned.     
    -An notification mail will send to respective approver based on release strategy configuration.     
    Basically it is Workflow integrate with Content Server.  There are few thing for me to do here:
    1. Store the PO/PR document into Content Server
    2. Run the workflow and view the attachement and add new attachement to Content Server from the Workflow process.
    3. Return the URL address to the user for the document that saved into Content Server
    l'm trying to do the first requirement now.
    The user will create the PR in tcode ME52N and PO in tcode ME22N, they can create the attachement and view the attachement, and the attachement are stored in the ECC6 database.
    l have installed the Content Server 6.40 with Filesystem (not the MaxDB) cause user do not want to buy the MaxDB license.
    The Content server 6.4 installation is completed, l can configure the CSDMIN in ECC6,
    In OAC0, l have created the Content Repository=ZA,
    Document Area = ARCHIVELINK
    Storage type = 04 HTTP Content server
    Version=0046
    Http Server = 10.120.0.10
    Port Number = 1090
    HTTP Script= ContentServer/ContentServer.dll
    Transfer drctry =
    10.100.0.10\cm\exdir   /# \cm\exdir is a directory in Content Server. #/
    the physical directory created in the Content Server as
    10.120.0.10\cm\za
    In OAC2, l have created a new Document type=ZCS, the document class=PDF
    In OAC3, l have created the following:
    Object Type= BUS2012, Document Type= ZCS, Link=X, Cont.Rep.ID=ZA, Link=TOA01, Rentention=99
    Object Type= BUS2105, Document Type= ZCS, Link=X, Cont.Rep.ID=ZA, Link=TOA01, Rentention=99
    (Honestly, l'm not quite sure the BUS2012 will work, it created by functional team, which l'm sure it actually represent the business object for PO and PR)
    With these, l think the linkage between business object and logical archive is established, but when l saved the attachement in ME22N and ME52N, the document still save into ECC6 Database, not the Content Server, because in the /cm/za directory in the Content server still empty.
    Anyone please advise any documentation/steps do store the document in Content Server from PO/PR and with returned URL to the users.
    Please help..
    Many thanks
    Jordan

    Dear all;
    Thanks for the information, l manage to store document actually.
    l used the OAAD to test to stored, once it is working, then l can use the option 'Store business document" ME23N and ME52N transaction code.
    One question here l would like to check:
    The WorkFlow team said that the Generic Object Service (GOS) - "Create Attachement" option in ME23N can actually store the document to Content Server instead of store into R3 Database.  He claimed some Basis have done it before, can anyone clarify if it is true?
    In OAC0, l have ZB Content Repository, set the "Storage Type = 04 HTTP Content Server" in order to save the document to Content Server.  The Document Area=Archive Link.
    With these setting l can only use the "Store Business Document" option to store the document to Content Server, not the "Create Attachement".
    l try to change the Document Area with different option like DMS, BDS etc but l can't get the Content Rep ID for ZB in OAC3 to link the Object Type?
    Anyone can help?
    Many thanks.
    Jordan Tan

  • DMS Document Storage in External Content Server

    Dear All,
    We are working on a DMS scenario, where we need to store the document in an external content server, and not in SAP DB. We are evaluating the solutions around the content server, and we see that SAP provides a HTTP Interface to SAP Content Server, and this interface can be configured through OAC0 and OACT, and managed through CSADMIN. Now, a set of questions:
    1. If we intend to use SAP Content Server, do we need to purchase additional license for it? Our understanding is that the software is delivered with SAP Installation DVD, and as such no licensing charges are required.
    2. If we DO NOT intend to use SAP Content Server, and rather use an external content server (Possibly utilizing the File System at the OS level as a repository), how will the configuration of OAC0 and OACT look like in such a case? We definitely can not use HTTP Content Server as storage type, How will the entries be organized in this case?
    Has anyone worked on a scenario like this? It will be really nice if you can share your experience and expertise in this regard.
    Awaiting replies.
    Thanks and Sincere Regards,
    Sid

    Hi Ravindra,
    Thanks for the clarification. Do I understand correctly that, for a external content server (without an installation of SAP Content Server) also, we need to specify the storage type as HTTP Content Server ? But in such a case, how will the work processes be handled? As I understand, SAP Content Server engine will handle the incoming/outgoing requests through a Web Server. So, don't we need a similar arrangement for an external content server also? In that case, will the connection parameters be for a HTTP Content Server or for RFC Archive, where we can specify a RFC Destination of type G and connect through it?
    Thanks and Regards,
    Sid

  • DMS Content server / Master guide

    Hi Friends,
    I try to search info on details for DMS Content server. I found only content server. Is there any differnce for DMS Content server.
    I want to understand the sizing / planning  / DB usage for DMS purpose.
    Can I get any where DMS Master Guide for finding all above details.
    We are using the SAP data base only for storing the documents. I will be selecting KPro for doc. types.
    Does we need to create Content table. How to do that ?
    I know very little in basis activities. If u can give the details I will discuss with ABAP & Basis persons to sort out.
    Regards,
    Sai Krishna

    Hi,
    Thanx for the info.
    We are using the SAP data base only for storing the documents. I will be selecting KPro for doc. types. In this case I don't require any content server.
    I have gone thru the PDF of SAP Content Server for Windows Installation Guide and noted down the following info:
    1. caluclation methodology and compression for each type of document (say doc / PDF etc). and noted
    2. Increase in data over perticular period
    3. on an average how many users accessing documents at a perticular time.
    I have done the following settings Maintain Storage System in OAC0.
    Content Rep. : DMS_C1
    Document area- DMS Document management system
    Storage type - 03 SAP system data base
    Rep. Sub type - Normal
    Version no : 0045
    Contents table: DMS_CONT1_CD1
    Physical Basic Path - E:\usr\sap\IDS\SYS\global\
    Shall I know what is the use of Physical path. What should be given correctly. More over I am trying to create ne wone it is greyed out (display mode)
    ThenI assigned Storage system to Storage Category in OACT in the following way :
    Document Area : DMS
    Content Rep. : DMS_C1
    DMS_CONT1_CD1 Table already created. When I see the table
    PH_CLASS ; SDOKPHCL (SDOK: Physical information object classe)
    Is it all required from bais side or server side.  All places I found  info regd. HTTP Content Server only. For that reason I want to confirm.
    Or else pls. let me know where can I get the required info.
    Regards,
    Sai Krishna

  • In Content Server video not play

    Hi All,
    In my one of the project they have Content Server but they have one issue in Content Server
    Generation 2
    version 5.3x
    When we open Contenet server page ther we not able to see silverlight video (message-you can not paly this video) but from anyPlayer we can see this video
    We install new silverlight version also but problem was same.
    Please Suggesation for this.
    Regards
    Yogesh

    hello all
    i am facing problem in data carrier creation actually i am creating data carrier type PC and i want set as default for all desktop
    after  DEFINE DATA CARRIER TYPE SERVER, FRONT END and Select PC and IDENTIFY FRONT END COMPUTER its shows
    No entries found that match selection criteria
    Message no. SV004
    Diagnosis
    No entries were found when importing data from the data base.
    Procedure
    If you have specified selection conditions, start the transaction again with conditions that are less restricted.
    You can make new entries independently of this. To do this, select the function New entries in menu Edit.
    help me

  • BI Content Server

    Have BI 11.1.1.6 installed in a Win 2008 R2 64-bit environment. Trying to make BI server a windows service. That part is successful, however bicontent server fails to start. It is the only service that fails, but if started through the start bi service in the start menu, they all start fine. My log basically says <BEA-101216> <Servlet: "ContentService" failed to preload on startup in web application: "bicontent" java.lang.NullPointerException

    Set BI_ORACLE_HOME in your Windows BI Script:
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    The script I used is here:
    Re: Issue - BI content server(11.1.1.1) not starting in obiee 11g:
    Edited by: J.A.M on Mar 31, 2012 8:50 AM

  • SAP Content server installation using apache web server under HP-UX 11i

    Hello,
    I installed a SAP Content Server 6.4 in HP-UX 11.11 with MaxDB 7.6.
    Although Installation is finished completely I got an syxtext error when apache web server is started after completing installation as below;
    kbwpdc 106: /home/dmscs/bin>./apachectl start
    Syntax error on line 233 of /home/dmscs/conf/httpd.conf:
    Cannot load /home/dmscs/modules/mod_sapcs2.so into server: Invalid
    argument
    I think apache web server doesn't know mod_sapcs2.so although it exists in the directory(/home/dmscs/module).
    - Working sequence
    1) Environment variables setup to compile with 64bit.
    2) "configure" generation with option relevant to SAP content server
    3) "make" generation
    4) "make install" generation
    5) Install SAP Content server 6.40
    6) Install MaxDB 7.6
    7) Edit httpd.conf for loading mod_sapcs2.so module and changing Listen port.
    8) Start apache web server.
    Do I need to configure to solve this syntext error? missing any step?
    Please let me know to solution if you had experienced with the same problem.
    I will wait for your response.
    Thanks,
    Mark Yoo.

    Hi Mark,
    Can i check with you how do you set your environment to compile in 64bit ? My file mod_sapcs.o apear in the libexec directory instead of mod_sapcs.so. That why my apache cannot start. It prompted Cannot load module /home/sapcs/libexec/mod_sapc.o
    Regards
    Kim

  • Issue after installa SAP Content Server

    Dear friends,
    I have installed a SAP Contenet Server and Cache server on a windows 2003 server with maxdb, SAP NW 7.0 SR3
    Installation using sapinst finished sucessfully, I checked the url link to test see the status of content server and this owrks fine:
    http://hostname:1090/ContentServer/ContentServer.dll?serverInfo
    But in the url link of cache server shows page not found:
    http://hostname:1095/Cache/CSProxyCache.dll?serverInfo
    I restarted SAp content server an cache server and issue persist, any idea to solve this issue?
    Thanks friends!!!

    Hi Kalyan,
    First thanks for your answers.
    1) Folders exist
    2) I can´t find the port 1095 is used in "services" file but I changed  the port to 1094 in the IIS and it didn't work.
    3)cache website is up, also I restarted the IIS  and websites.
    Issue persiste only for cache sever this message appears:
    The page cannot be displayed
    The page you are looking for is currently unavailable. The Web site might be experiencing technical difficulties, or you may need to adjust your browser settings.
    For content server show status runing.
    Please your help, thanks.
    Edited by: Friend on Jan 13, 2009 4:30 PM

  • SAP Content server hp unix apache issue

    Once we completed the DMS installation on HP Unix ( HP 11.23) we found
    that the apache server is not running and gaved the following error
    while trying to start that.
    $ apachectl -v
    Server version: Apache/2.0.52
    Server built: Mar 26 2011 15:20:39
    $ apachectl start
    Syntax error on line 233 of /home/sapcsc/conf/httpd.conf:
    Cannot load /home/sapcsc/modules/mod_sapcsc2.so into server: Invalid
    argument
    We followed the note 664384 and exported the following enviorement
    variable in the system. We logged into the system with user sapcs and
    executed these commands.
    export LDFLAGS="+DD64 +DSitanium2"
    export CFLAGS="+DD64 +DSitanium2"
    After that we again configured the apache with following command.
    configure u2013prefix=/usr/users/sapcsc --enable-mods-shared=most u2013with-
    mpm=prefork
    Now, when we are trying to compile the apache by executing the make
    command we are getting following error.
    ld: Mismatched Data ABI. Expected EF_IA_64_ABI64 but found None in file
    xmltok.lo
    Fatal error
    Please advice are we missing any steps .
    Regards

    Hi Markus , 
                         Few things I noticed
    1. The apache was installed as per the three steps mentioned in the guide and note 664384 , however we did not exported the environment variable for 64 bit. when we tried to run the apache after the DMS installation it gave this error .
    $ apachectl start
    Syntax error on line 233 of /home/sapcsc/conf/httpd.conf:
    Cannot load /home/sapcsc/modules/mod_sapcsc2.so into server: Invalid
    argument
    2. Now when we tried to install it using the 64 bit after exporting the environment variable it gave Mismatched Data ABI error , now even when we have unset the enviorement variable it is not getting installed and giving same Mismatched Data ABI error.
    Here is the required information.
    $ file mod_sapcsc2.so
    mod_sapcsc2.so: ELF-64 shared object file - IA64
    $ chatr mod_sapcsc2.so
    mod_sapcsc2.so:
             64-bit ELF shared library
             shared library dynamic path search:
                 LD_LIBRARY_PATH    enabled  first
                 SHLIB_PATH         enabled  second
                 embedded path      enabled  third  /opt/aCC/lib:/usr/lib/hpux64:/opt/langtools/lib/hpux64
             shared library list:
                 libCsup.so.1
                 libm.so.1
                 libcl.so.1
                 libpthread.so.1
                 libdl.so.1
                 libnsl.so.1
             shared library mapped private disabled
             shared vtable support disabled
             explicit unloading enabled
             linkage table protection disabled
             segments:
                 index type     address      flags size
                     6 text 4000000000000000 z---c-    D (default)
                     7 data 6000000000000000 -m    D (default)
             kernel assisted branch prediction enabled
             lazy swap allocation for dynamic segments disabled
             nulptr dereferences trap disabled
             address space model: default
             caliper dynamic instrumentation disabled
    GPILDMS:/>>cc -V
    (Bundled) cc: HP C/aC++ B3910B A.06.12 [Oct 11 2006]
    GPILDMS:/>>aCC -V
    ksh: aCC:  not found
    Regards
    Edited by: Singh Dharm on Mar 30, 2011 8:29 AM

Maybe you are looking for