ibmi-brunch-learn

Announcement

Collapse
No announcement yet.

Can't start HTTP admin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Can't start HTTP admin

    The HTTP server will start, but not the admin.

    I get an error like the following:
    PHP Code:
                                         Message . . . . :  -CALL PGM(QHTTPSVR/QZHBMAINPARM('-S' 'ADMIN'                 
                                           '-AdmDftPort' '2001' '-AdmDftSecPort' '2010' '-uiMin' '3' '-uiMax' '5'          
                                           '-cEAMap' '*CCSID' '-cAEMap' '*CCSID' '-uiCCSID' '819' '-apache' '-d'           
                                           '/QIBM/UserData/HTTPA/admin' '-f'                                               
                                           '/QIBM/ProdData/HTTPA/admin/conf/admin-ibm.conf' '-c' 'Listen' '2001'
    )          
    MCH4433    Escape                  40   10/24/06  15:29:52.689208  AiActivator              001E2C   QLEAWI      QSYS  
                                         To module 
    . . . . . . . . . :   QLEPM                                             
                                         To procedure  
    . . . . . . . :   QleActBndPgmCommon__FPPvPULP24Qle_ActBndPgmInf    
                                           o_Long_tPiPvPc                                                                  
                                         Statement 
    . . . . . . . . . :   30                                                
                                         Message 
    . . . . :   Program import invalid.                                       
                                         
    Cause . . . . . :   The calling program QSVTIHSAH references the item with        
                                           export id of X
    '000000EA' from service program QZSRAPRThe calling program      
                                         expects the export type of this item to be 1. The actual export type of the  
                                         item is 2. The export type codes 
    and their meanings are as follows0001 -   
                                         
    an external procedure0002 an external  data itemThe service program    
                                         has changed in an incompatible manner since the time the calling program was 
                                         created
    Technical description . . . . . . . . :   Either recreate the       
                                         calling program 
    or recreate the service program after checking the export    
                                         source 
    for the following conditions. If the service program was created with 
                                         the LVLCHK
    (*NOoption then ensure that the order and export type of         
                                         exported items agrees with previous versions of the service program
    . If the  
                                         service program was created with one 
    or more PGMLVL(*PREVIOUSsections,     
                                         
    then ensure that the order and export type of items in each section agree    
                                         with those in the PGMLVL
    (*CURRENTsection
    Is it possible the HTTP server or WAS is not compatable? This stopped working after we left V5R2.

    Current LICPGM status

    PHP Code:

    5722DG1   
    *COMPATIBLE  IBM HTTP Server for i5/OS                   
    5722DG1   
    *COMPATIBLE  Triggered Cache Manager                     
    5722E51   
    *INSTALLED   WebSphere Application Server Express 5.1  
    5722E51   
    *INSTALLED   WAS Express 5.1 Application Server Runtime
    5722IWE   
    *INSTALLED   WebSphere Application Server Express 
    Any ideas? Maybe a problem with the .conf file ?

  • #2
    Re: Can't start HTTP admin

    The only information that I know, and this may not even be pertinant to you, is that the AS/400 went to Apache only in V5R3.

    Comment


    • #3
      Re: Can't start HTTP admin

      Originally posted by arrow483 View Post
      Any ideas? Maybe a problem with the .conf file ?
      i had a similar problem with the HTTP Admin server recently. i had to comment out the unnecessary stuff...
      Code:
      #------------------------------------------------------              
      # The following directives should be added to                        
      # /QIBM/UserData/HTTPA/admin/conf/admin-cust.conf                    
      # and uncommented in order to enable SSL for ADMIN.                  
      #------------------------------------------------------              
      # LoadModule ibm_ssl_module /QSYS.LIB/QHTTPSVR.LIB/QZSRVSSL.SRVPGM   
      # Listen 2001                                                        
      # Listen 2010                                                        
      # SetEnv HTTPS_PORT 2010                                             
      # <VirtualHost *:2010>                                               
      #   SSLEnable                                                        
      #   SSLAppName QIBM_HTTP_SERVER_ADMIN                                
      # </VirtualHost>                                                     
      
      #---------------------------------------                     
      # Include customer configuration                             
      #---------------------------------------                     
      include /QIBM/UserData/HTTPA/admin/conf/admin-plugin.conf    
      # include /QIBM/UserData/HTTPA/admin/conf/admin-cust.conf
      in my case it was croaking on the admin-cust.conf (which i didn't need).
      I'm not anti-social, I just don't like people -Tommy Holden

      Comment

      Working...
      X