SRM 5.0 [ReminderManagerImpl] Error: No System configuration found, please

Dear All,
I'm getting this error in the log files every time any an error pops-up.
[ReminderManagerImpl] Error: No System configuration found, please configure the system first
SRM is working ok, not great on my machine.
any ideas plz share.
Thanks in advance.
Cheers:
Amar

Error # 3: Database connection pool related
13:13:19,372 ERROR [ContextLoader] Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageSource' defined in ServletContext resource [WEB-INF/application-context.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'DataSourceAdvisor' defined in ServletContext resource [WEB-INF/dataaccess-context.xml]: Cannot create inner bean 'org.springframework.aop.support.JdkRegexpMethodPointcut#1295fe8' of type [org.springframework.aop.support.JdkRegexpMethodPointcut] while setting bean property 'pointcut'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.aop.support.JdkRegexpMethodPointcut#1295fe8' defined in ServletContext resource [WEB-INF/dataaccess-context.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'businessUnitServiceAuditBusinessUnitAdvisor' defined in ServletContext resource [WEB-INF/rbacx-audit-context.xml]: Cannot create inner bean 'businessUnitServiceAuditAfterReturningAdvice' of type [com.vaau.rbacx.rbacxaudit.aop.businessunitserviceaudit.BusinessUnitServiceAuditAfterReturningAdvice] while setting bean property 'advice'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'businessUnitServiceAuditAfterReturningAdvice' defined in ServletContext resource [WEB-INF/rbacx-audit-context.xml]: Cannot resolve reference to bean 'daoAuditLogger' while setting bean property 'auditLogger'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'daoAuditLogger' defined in ServletContext resource [WEB-INF/rbacx-audit-context.xml]: BeanPostProcessor before instantiation of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'indexGlobalUserGlobalUserUpdateAdvisor' defined in ServletContext resource [WEB-INF/search-context.xml]: Cannot create inner bean 'com.vaau.rbacx.search.aop.IndexAdvise#1958cc2' of type [com.vaau.rbacx.search.aop.IndexAdvise] while setting bean property 'advice'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.vaau.rbacx.search.aop.IndexAdvise#1958cc2' defined in ServletContext resource [WEB-INF/search-context.xml]: Cannot resolve reference to bean 'ftSearchProvider' while setting bean property 'searchProvider'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'ftSearchProvider' defined in ServletContext resource [WEB-INF/search-context.xml]: Cannot resolve reference to bean 'rbacxSchedulerService' while setting bean property 'rbacxSchedulerService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'rbacxSchedulerService' defined in ServletContext resource [WEB-INF/scheduling-context.xml]: Cannot resolve reference to bean 'vaauSchedulerManager' while setting bean property 'vaauSchedulerManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'vaauSchedulerManager' defined in ServletContext resource [WEB-INF/scheduling-context.xml]: Cannot resolve reference to bean 'quartzSchedulerProvider' while setting bean property 'schedulerProvider'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quartzSchedulerProvider' defined in ServletContext resource [WEB-INF/scheduling-context.xml]: Cannot resolve reference to bean 'quartzSchedulerFactoryBean' while setting bean property 'quartzScheduler'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quartzSchedulerFactoryBean' defined in ServletContext resource [WEB-INF/scheduling-context.xml]: Cannot create inner bean 'quartzSchedulerFactoryBeanTarget' of type [org.springframework.scheduling.quartz.SchedulerFactoryBean] while setting bean property 'target'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quartzSchedulerFactoryBeanTarget' defined in ServletContext resource [WEB-INF/scheduling-context.xml]: Invocation of init method failed; nested exception is org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'springNonTxDataSource.quartzSchedulerFactoryBeanTarget': java.sql.SQLException: Connections could not be acquired from the underlying database! [See nested exception: java.sql.SQLException: Connections could not be acquired from the underlying database!]]
Caused by: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'springNonTxDataSource.quartzSchedulerFactoryBeanTarget': java.sql.SQLException: Connections could not be acquired from the underlying database! [See nested exception: java.sql.SQLException: Connections could not be acquired from the underlying database!]
     at org.quartz.impl.jdbcjobstore.JobStoreCMT.getNonManagedTXConnection(JobStoreCMT.java:167)
     ... 196 more
Caused by: java.sql.SQLException: Connections could not be acquired from the underlying database!
     at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:106)
     at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:529)
Caused by: com.mchange.v2.resourcepool.CannotAcquireResourceException: A ResourcePool could not acquire a resource from its primary factory or source.
...........     at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:525)
Resolution:
This was a tough one. I referred many posts related to c3p0 in the spring / hibernate community, but none of the options resolved this in my environment. I even changed the app server to Glassfish 2.1 from Apache Tomcat, but to no avail.
Upon some experimenting with the MySQL database instance created by the default script (bundled with Sun RoleManager), I found that the userID used to connect to the DB did not have privileges to perform any operation. I gave permissions to the default DB user id and the error got resolved.
# mysql -u root --password
<Enter the pwd for DB's root user>
mysql> use mysql;
mysql> desc user;
mysql> select *** from user where user='rbacxservice';
The results of the above command showed that the user 'rbacxservice' did not have any privileges even to select rows. I granted the privileges (using the commands given below). For some reason, three instances of the user were available in the DB. I granted privileges for this user in all the three instances.
mysql> GRANT ALL PRIVILEGES ON ***.*** TO 'rbacxservice'@'%';
mysql> GRANT ALL PRIVILEGES ON ***.*** TO 'rbacxservice'@'localhost';
mysql> GRANT ALL PRIVILEGES ON ***.*** TO 'rbacxservice'@'myserver';

Similar Messages

  • Oracle R12 Installation Error - Validate System Configuration

    Hello,
    I was doing the oracle apps R12 installation and got this error
    =======================
    Validate System Configuration
    The post-install check inspects your system for a complete installation.
    The list below shows the tests that were performed and the results.
    Click on the test icon for details.
    One or more of the post-install tests did not succeed for this:
    Database Availability
    HTTP
    Virtual Directory
    Login page
    Configuration Upload
    Help page
    JSP
    =======================
    I’ve checked the details which are listed below.
    Please help me in solving the issue :(
    Configuration Upload
    uploading config file at /u05/oracle/TEST/db/tech_st/11.1.0/appsutil/conf_TEST.txt
    Failed upload of config file at /db/tech_st/11.1.0/appsutil/conf_TEST.txt
    Database Availability
    command: su dbuser -c "/tmp/RapidInstall/bin/riwTDBup.sh /u05/oracle/TEST/db/tech_st/11.1.0/TEST_erp.env APPS/APPS"
    riwTDBup.sh started at Fri May 25 06:42:59 IST 2012
    Parameters passed are : /u05/oracle/TEST/db/tech_st/11.1.0/TEST_erp.env APPS/APPS
    The environment settings are as follows ...
    ORACLE_HOME : /u05/oracle/TEST/db/tech_st/11.1.0
    ORACLE_SID : TEST
    TWO_TASK :
    PATH : /u05/oracle/TEST/db/tech_st/11.1.0/perl/bin:/u05/oracle/TEST/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/u05/oracle/TEST/db/tech_st/11.1.0/appsutil/jre/bin:/usr/ccs/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/bin:/u05/Setup12.1.1/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin:/root/bin:.
    LD_LIBRARY_PATH : /u05/oracle/TEST/db/tech_st/11.1.0/lib:/usr/X11R6/lib:/usr/openwin/lib:/u05/oracle/TEST/db/tech_st/11.1.0/lib:/usr/dt/lib:/u05/oracle/TEST/db/tech_st/11.1.0/ctx/lib
    Executable : /u05/oracle/TEST/db/tech_st/11.1.0/bin/sqlplus
    riwTDBup.sh exiting with status 3
    RW-50011: Error: - Database ORACLE_HOME connection test has returned an error: 3 command: su appsuser -c "/tmp/RapidInstall/bin/riwTDBup.sh /u05/appl/TEST/inst/apps/TEST_erp/ora/10.1.2/TEST_erp.env APPS/APPS"
    riwTDBup.sh started at Fri May 25 06:43:16 IST 2012
    Parameters passed are : /u05/appl/TEST/inst/apps/TEST_erp/ora/10.1.2/TEST_erp.env APPS/APPS
    The environment settings are as follows ...
    ORACLE_HOME : /u05/appl/TEST/apps/tech_st/10.1.2
    ORACLE_SID :
    TWO_TASK : TEST
    PATH : /u05/appl/TEST/apps/tech_st/10.1.2/bin:/usr/bin:/usr/sbin:/u05/appl/TEST/apps/tech_st/10.1.3/appsutil/jdk/jre/bin:/usr/bin:/u05/Setup12.1.1/startCD/Disk1/rapidwiz/unzip/Linux:/usr/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin:/root/bin
    LD_LIBRARY_PATH : /u05/appl/TEST/apps/tech_st/10.1.2/lib32:/u05/appl/TEST/apps/tech_st/10.1.2/lib:/usr/X11R6/lib:/usr/openwin/lib:/u05/appl/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386:/u05/appl/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/server:/u05/appl/TEST/apps/tech_st/10.1.2/jdk/jre/lib/i386/native_threads:/u05/appl/TEST/apps/apps_st/appl/sht/12.0.0/lib
    Executable : /u05/appl/TEST/apps/tech_st/10.1.2/bin/sqlplus
    riwTDBup.sh exiting with status 2
    RW-50011: Error: - Apps ORACLE_HOME connection test has returned an error: 2
    Help Page
    checking URL = http://erp.tez.co.in:8009/OA_HTML/help
    RW-50015: Error: - Help Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    HTTP
    checking URL = http://erp.tez.co.in:8009
    RW-50015: Error: - HTTP Listener is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    JSP
    checking URL = http://erp.tez.co.in:8009/OA_HTML/jtfTestCookie.jsp
    RW-50015: Error: - JSP is not responding. The service might not have started on the port yet. Please check the service and use the retry button.
    Login Page
    RW-50015: Error: - Login Page is not responding. The service might not have started on the port yet. Please check the service and use the retry button.

    Hi,
    I think my linux was corrupted :(
    I've done fresh linux installation and after that the R12 installation is complete without any issues :D
    Thanks for you help Hussein Sir

  • ERROR: No DAD configuration Found

    Hi
    I am converting my servlet into portal. my servlet used form to pass some parameters. When i submit my form i got the forllowing error.
    Thanks. Any suggestion will appreciate.
    VC
    Wed, 08 Aug 2001 00:04:55 GMT
    No DAD configuration Found
    DAD name:
    PROCEDURE : !null.wwpob_page.show
    URL : http://ntserver:80/pls/null/!null.wwpob_page.show?_pageid=null
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle HTTP Server Powered by Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.24
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=ntserver
    REQUEST_METHOD=POST
    QUERY_STRING=_pageid=null
    Here is the some part of my code.
    private void renderShow(PortletRenderRequest pr)
    throws PortletException {
    try {
    /*HttpServletRequest request = (HttpServletRequest)
    pr.getAttribute(HttpProvider.SERVLET_REQUEST);
    HttpServletResponse response = (HttpServletResponse)
    pr.getAttribute(HttpProvider.SERVLET_RESPONSE); */
    PrintWriter out = pr.getWriter();
    pr.setContentType("text/html; charset=WINDOWS-1252");
    pr.setContentType("text/html");
    //PrintWriter out = response.getWriter();
    // create and send html form to user
    out.println("<html>");
    out.println("<body>");
    out.println("<title>Age calculation</title>");
    out.println("<form method=\"POST\" action=\""+HttpPortletRendererUtil.htmlFormActionLink(pr,PortletRendererUtil.PAGE_LINK) +"\">");
    HttpPortletRendererUtil.htmlFormHiddenFields(pr,PortletRendererUtil.PAGE_LINK);
    String ageParam = HttpPortletRendererUtil.portletParameter(pr, "ageyear");
    String submitParam = HttpPortletRendererUtil.portletParameter(pr, "mySubmit");
    out.println("Enter the Year of Birth<input type=\"text\" name=\" + ageParam + \"><br>");
    out.println("<input type=\"submit\" name=\" + submitParam + \" value=\"submit\">");
    out.println(" </form>");
    out.println("</body>");
    out.println("</html> ");
    if (pr.getParameter(submitParam) != null ) {
    out.println("You are "+ calculateAge(pr,out));
    } catch (Exception e) {

    Vipul,
    You may want to take a look at the parameter passing sample in PDK-Java. This is more updated and meant to display the proper way to pass parameters. It also includes an article to make sure that you do it correctly.
    You can find this in the PDK at the PDK-Java Samples page.
    http://portalstudio.oracle.com/servlet/page?_pageid=414&_dad=ops&_schema=OPSTUDIO
    Click on M-R to view the Parameter passing sample. This sample/article explains how to create a parameter passing portlet.
    Sue

  • Using ADE on PC; downloaded ebook and it shows up under "My Digital Editions" folder under Documents, but ADE won't add it; I get error code "System.IO.FileNotFoundException"; please help!

    I searched for all possible problems.  I have only used one computer so I'm not trying to access a file downloaded to another computer.  I added Adobe Digital Editions as an excepted program under windows firewall.  What else could be the problem?

    kellyrei wrote:
      I also tried accessing other ACSM files 
    Are you trying to open a PDF file, or and ACSM file? Also, when you say it won't open at all, did you try opening it in Notepad?

  • Error while expoting system configuration

    Hi All,
    I am getting following exception while exporting command groups in system configuration. Please guide me to solve this problem.
    The configuration object has been added to the export package. ImportExportConfigException: Unexpected error when trying to add a set of configuration objects to the export. System error is "InvalidEntryException: Cannot add an already existing configuration object "configurable_[Administrator]_config://local/system/transport/Administrator_6275850%32%on%32%DDL-EPD%47%cm%47%ui%47%uicommand%47%Company_AppAnnouncementNewGroupSubCollection" to folder "plugin_[Administrator]_config://local/system/transport".". Inner exception is: InvalidEntryException: Cannot add an already existing configuration object "configurable_[Administrator]_config://local/system/transport/Administrator_6275850%32%on%32%servername%47%cm%47%ui%47%uicommand%47%Company_AppAnnouncementNewGroupSubCollection" to folder "plugin_[Administrator]_config://local/system/transport".
    Thanks,
    Venkatesh R

    Hi Venkatesh,
    System error is "InvalidEntryException: Cannot add an already existing configuration object .
    i think u r adding objects morethan 1 time in transport package. Check ur objects and upload to package.
    Surekha.

  • Error-logical system not created in client 001

    Hi Experts,
    When I was trying to delete the application from Administration Client its giving me the error "Logical system not found on client 001"
    I created the Logical system in 001 but still same problem...
    Did I do anything wrong during the installtion??
    Can anyone please help me
    Bobby

    Hi Experts,
    I get the same error "Logical system not created in client 001"when I try to delete the appset from backend using program UJS_ACTIVATE_CONTENT...
    Please suggest..
    Thanks
    Bobby
    Edited by: bobbydon on Jul 7, 2010 7:46 PM

  • Error "No Valid Interval Found"

    I changed EX number range for the object position 01S to IN, we used this number range as an EX number range and  status to "1". 
    The number range is  99100000-99999999,this is how it looks in the system:
    No   From Number      To Number       Current Number    EX
    IN    32000000           39999999         -                           Checked  (This number range was Internal before)
    IS    99100000           99999999         1                          Not Checked. ( This number range was EX before)
    I checked the NUMKR Feature, the return value is 01.
    When I try to create a new position via P013, I am getting this error
    Error "No Valid Interval Found"
    Please help.
    Edited by: Ginasap on Oct 6, 2011 5:08 AM
    Edited by: Ginasap on Oct 6, 2011 5:22 AM

    Trying to create new entry going via SM30 to table T77IV click new entries $$P, I am getting error "Please specify a valid subgroup"
    Should it not be $$S for positions not $$P?  just thinking, anyways, I tried with $$S but getting the same error.
    Also, I am looking for number range 99000000-9999999, this was EX number range before but I would like to use it as IN number range.
    Edited by: Ginasap on Oct 6, 2011 5:39 AM

  • SPROXSET ...Unable to rectify Business systems not found issue..

    Hi,
    On doing a test of my proxy I am frustrated with an error " Business system not found". I have maintained SPROXSET values as IFR_aDDRESS = XI.XYZ.COM, IFR_PORT = 51000, IFR_USER = PIAPPLUSER and IFR_PASSWORD = XIPASS.
    I encounter this error whenever I do a test on SPROXY and I can't see the business systems from the SLD. What am I missing here? My sldcheck , sldapicust are all good. The only error in sldcheck is LCR_SAP_BUSINESS_SYSTEMS gives a retuen code fo 4. Please advise on what I am missing here.
    Teresa

    Check RFC destination
    The below links may be useful
    How do you activate ABAP Proxies?
    How do you activate ABAP Proxies? - Activate Proxy
    ABAP Server Proxies - ABAP Server Proxy
    ABAP Proxies in XI(Client Proxy) - ABAP Client Proxy
    BSP a Developer's Journal Part XIV - Consuming WebServices with ABAP
    File to R/3 via ABAP Proxy - ABAP Proxy
    http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/frameset.htm

  • /pls/admin_/gateway.htm - No DAD configuration Found ?

    Hi All !
    For some reason I messed up my configuration and now I can't retrive the page
    http://myhost/pls/admin_/gateway.htm
    I realize that the forum may not be for PORTAL configuration but is imperative for me to fix this
    issue as I am testing and generating some modules from the Design Editor and they will not come up since the
    configuration is not set up properly. I already tried posting this on the PORTAL Forum , but there are no responses.
    I get the following error :
    No DAD configuration Found
    DAD name:
    PROCEDURE : gateway.htm
    URL : http://myhost/pls/admin_/gateway.htm
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Apache/1.3.12 (Win32) ApacheJServ/1.1 mod_ssl/2.6.4 OpenSSL/0.9.5a mod_perl/1.22
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=80
    SERVER_NAME=uroboros-server
    REQUEST_METHOD=GET
    QUERY_STRING=
    PATH_INFO=/admin_/gateway.htm
    SCRIPT_NAME=/pls
    REMOTE_HOST=
    REMOTE_ADDR=63.215.155.114
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=
    HTTP_CONTENT_LENGTH=
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    HTTP_HOST=uroboros-server
    HTTP_ACCEPT=image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-us
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=
    Authorization=
    HTTP_IF_MODIFIED_SINCE=
    I am using Portal 309.
    Can some one please be nice to me and help me with this issue ?
    Thank you in advance.
    Chris.

    Hi,
    It looks like that you don't have the DAD entry in the listener settings.
    In the listener folder of your oracle home you can find a file named as wdbsvr.app.
    Open this file and check for the DAD entry that you are using.
    It should have the valid password and the connect strings too. Just validate this file and restart yourwebdb listener.
    Hope this helps you.
    Cheers,
    Siva.

  • Error "Specifed Key not found" while installing Oracle 11g R2 db

    Hi,
    I am new to installing oracle 11gr2 DB. While installing at the stage of "install product" during the process of .Copy files its throwing the following error
    *Specified Key not found
    Please help me solving this problem. Your help is much appreciated.
    Thanks in advance.

    979400 wrote:
    Hi ..
    I am getting the "Specified Key not found" while installing Oracle 11 g r2 on windows 8 (64 bit) and below is the installation log , Please help me .
    Number one - you are hijacking someone else's thread. Please read the forum FAQ. The link to that is conveniently located in the upper right corner of this very page.
    Number two - no oracle product is certified to run on Window 8. If you want to run an Oracle product, you need to use an OS which Oracle has certified for said product.
    ID: oracle.install.driver.oui.OUISetupDriver:13
    oracle.cluster.verification.PreReqNotSupportedException: Reference data is not available for verifying prerequisites on this operating system distribution
         at oracle.cluster.verification.constraints.XmlTaskFactory.getTasks(XmlTaskFactory.java:248)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4538)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4487)
         at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
         at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
         at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
         at oracle.install.ivw.db.driver.DBSetupDriver.load(DBSetupDriver.java:161)
         at oracle.install.commons.base.driver.common.Installer.run(Installer.java:216)
         at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:129)
         at oracle.install.commons.util.Application.startup(Application.java:869)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
         at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
         at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:117)
         at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:148)
    ---# End Stacktrace #-----------------------------
    ---# Begin Stacktrace #---------------------------
    ID: oracle.install.commons.util.exception.DefaultErrorAdvisor:16
    oracle.cluster.verification.PreReqNotSupportedException: Reference data is not available for verifying prerequisites on this operating system distribution
         at oracle.cluster.verification.constraints.XmlTaskFactory.getTasks(XmlTaskFactory.java:248)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4538)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4487)
         at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
         at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
         at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
         at oracle.install.ivw.db.driver.DBSetupDriver.load(DBSetupDriver.java:161)
         at oracle.install.commons.base.driver.common.Installer.run(Installer.java:216)
         at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:129)
         at oracle.install.commons.util.Application.startup(Application.java:869)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
         at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
         at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:117)
         at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:148)
    ---# End Stacktrace #-----------------------------

  • Link SAP PI 7.3 to SolMan 7.1 - error during managed system configuration

    All,
    I installed my diagnostics agent twice with different options:
    - Direct P4 connection via Java EE Dispatcher Node with port 5xx04
    - P4 connection via SCS message server with port 81xx
    In both cases I get an error during the managed system configuration of SAP PI 7.3: Remote error : Connection to P4 port of managed system failed.
    I'm a bit confused with the step Enter System Parameters. In the Java parameters section, I can only enter port 39xx. if not, I get an error.
    Also, I marked and unmarked the option concerning the ABAP user store, but the error persists.
    Please advice.
    Thanks a lot.

    Hi Allam,
    I checked the KBA and I think now, I have the correct HTTP port.
    The error I now get is S:CL_DIAGSTP_MESSAGE:483
    When I take the next step, Configure Automatically, I get this error during the Byte Code Adapter Installation phase when I open the Java URL stated in the navigation column:
    DIAG_WILY_MSG:157:S - com.sap.smdagent.vmmanager.VMManagerP4Exception: com.sap.smdagent.plugins.connectors.p4.exceptions.P4AuthorizationException: Access is denied to SAP System sid: check the connection credentials.More details about the error in agent 'sappi' log file (SMDAgentApplication.X.log).; nested exception is:
    com.sap.engine.services.security.exceptions.BaseLoginException: Error during authentication. For more information see the remote server traces.
    Any idea?
    Thanks.

  • Configuration Check Error in Managed System Configuration

    Hi dear experts,
    I come across a problem as the screenshot shows blew:
    I check some relevant information, but no issues found:
    1.
    DEWDFLSSC5062:/usr/sap/hostctrl/exe # ./saphostexec -status
    saphostexec running (pid = 7094)
    sapstartsrv running (pid = 7097)
    10:46:34 24.06.2014     LOG: Using PerfDir (DIR_PERF) = /usr/sap/tmp
    saposcol running (pid = 7130)
    DEWDFLSSC5062:/usr/sap/hostctrl/exe # cat host_profile
    SAPSYSTEMNAME = SAP
    SAPSYSTEM = 99
    service/porttypes = SAPHostControl SAPOscol SAPCCMS
    DIR_LIBRARY = /usr/sap/hostctrl/exe
    DIR_EXECUTABLE = /usr/sap/hostctrl/exe
    DIR_PROFILE = /usr/sap/hostctrl/exe
    DIR_GLOBAL = /usr/sap/hostctrl/exe
    DIR_INSTANCE = /usr/sap/hostctrl/exe
    DIR_HOME = /usr/sap/hostctrl/work
    service/admin_users = daaadm
    service/logfile_000 = /tmp/s
    service/logfile_001 = /usr/sap/DAA/SMDA97/SMDAgent/log/smdagent_trace*.trc
    service/logfile_002 = /usr/sap/DAA/SMDA97/SMDAgent/log/smdagent_trace.*.trc
    service/logfile_003 = /usr/sap/DAA/SMDA97/SMDAgent/log/smdagent_trace.trc
    And the version of hostagent is up-to-date.
    2.The URL
    - http://<SMDhost>:1128/SAPOscol/?wsdl
    - http://<SMDhost>:1128/SAPHostControl/?wsdl
    can be accessed.
    3.The step 3 in managed systems configuration is executed successfully.
    4.I have even uninstalled and re-installed the SMD and hostagent, and change the alert_timeout parameter in T-code DMD, but the issue insisted.
    5.Only a few SMDs in my landscape, so I think the parameter MaxThreadCount, InitialThreadCount, MinThreadCount should be no problem.
    Now I have no idea how to proceed, please give me some advice, thank you in advance.
    Best Regards,
    Pany Pan

    Hi Pany
    Kindly check the below two sapnote
    1935653 - Error "A timeout occured during the execution of the OS Command Console" when performing a Managed System Configuration - Solution Manager 7.1
    1865122 - Solution Manager 7.10 Configuration Check errors : "A timeout occured during the execution of the OS Command Console" "An unexpected error occured"
    Moreover , you need to check/verify/maintain the parameter in configtool
    ThreadManager -> MaxThreadCount
    Total number of Diagnostics Agents * 2 + 50
    1250
    ThreadManager -> InitialThreadCount
    Total number of Diagnostics Agents * 1.5
    900
    ThreadManager -> MinThreadCount
    Total number of Diagnostics Agents
    600
    ConnectionManipulator -> maxSoTimeOutConnections
    Total number of Diagnostics Agents * 1.35
    810
    ConnectionManipulator -> MaxParallelUsers
    Total number of Diagnostics Agents + 50
    650
    In Diagnostics Agent Troubleshooting - SAP Solution Manager Setup - SCN Wiki 
    guide check the section Required Solution Manager Java Stack Settings (Scalability)
    I face the same issue , which got resolved by maintaining the above parameters, maxthreadCount,
    minthreadcount , maxSoTimeOutConnections.
    With Regards
    Ashutosh Chaturvedi

  • Error in Managed system configuration.

    Hi Folks,
    In Solman 7.1 i am configuring my Java system in managed system configuration on the last phase of configuration which is "Check Configuration" i got the below error...
    Can any one guide me on this....
    I installed the Diagnostic agent as well as willy inter scope.
    Regards,
    Anil.

    check the note which describes your problem
    1776959 - Solution Manager 7.1 Manged System configuration. Error: Timezone from managed system could not be retrieved: Timezone of J2EE Engine (GMT+01:00) does not match the timezone of the diagnostics agent (Europe/Berlin)
    Resolution
    Open the instance.properties file of the J2EE Engine on the managed system
    Locate the parameter "-Duser.timezone=" and its value
    If the -Duser.timezone is not set the JVM uses GMT
    Set the -Duser.timezone parameter in the JVM of the SMD Agent. If there was no "-Duser.timezone in the J2EE's instance.properties file use the timezone that was indicated in the error message e.g. GMT+01:00 (from the above error message, this might differ on your environment) To do this:
    Locate the smd.properties file (for newer agents the files is called: smdagent.properties)
    The path is: .../usr/sap/<DiagnosticAgentSID>/SMDA<SYSNumber>/SMDAgent/smdagent.properties
    The -Duser.timezone= parameter of the Diagnostics Agent and the SAP J2EE engine need to be set to the same timezone. That means the string needs to be the same for both parameters
    e.g.
    If the -Duser.timezone= parameter of the J2EE engine is set to -Duser.timezone="GMT+01:00"
    set the Diagnostics Agent parameter to:
    smdagent.javaParameters=-DP4ClassLoad=P4Connection -Xmx256m -Xms256m -Duser.timezone="GMT+01:00"
    Restart the Agent
    Re-run the "Configuration Check" in the "Managed System Configuration"
    Please make sure that the time zone configuration is correct according to the SAP recommendations: http://wiki.sdn.sap.com/wiki/display/Basis/Timezone+changes+best+practices

  • EPM System Configurator  Error

    Hi,
    I am trying to open EPM System Configurator but getting error:
    "The Vital Product Data registry is in use by another installer. Please start this installer after the other installtion is complete."
    I am not installing the EPM system. It is already installed. I am just trying to open EPM System Configurator by Start--All Programs--EPM System--Foundation Services-- Start EPM System Configurator
    I am not running any othe installer. I tried restarting the system also but again I am getting the same error.
    Please help me with this error.
    Thanks & Regards,
    Akshat

    Hi Srikanth,
    I am not running any othe installer. I tried restarting the system also but again I am getting the same error.
    Actually I am trying to integrate OBIEE with EPM workspace.
    I am following the below link:
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/general_10134.htm?bcsi_scan_6E125C62D30562F9=0&bcsi_scan_filename=general_10134.htm#BEHGEFEI
    I am facing the problem at step -- 11.5.3.6 Configuring the Web Server for EPM Workspace
    Regards,
    Akshat
    Edited by: user10943765 on Oct 1, 2010 10:57 PM

  • SQL Error 0 during DBACockpit setup in Managed System Configuration

    Hi All,
    I'm getting SQL Error 0 during DBA Cockpit setup in Managed system configuration. I'm trying to connect MsSQL 2005 from Linux system(Solution Manager 7.1 SP10). I have installed necessary ODBC and microsoft drivers. Any suggestions will be appreciated.
    Regards,
    Pragadees

    If I've understood you correctly, you are trying to setup a remote database connection from an SAP Solution Manager system running on Linux with a database which is NOT MSSQL to a database which is MSSQL running on Windows.
    In that case have you checked these SAP notes ?
    1265134 - DBA Cockpit: Connecting a remote database
    1388700 - SolMan 7.0 EHP1 Database Warehouse for MSSQL
    Regards
    RB

Maybe you are looking for

  • Error: the cabinet file required for this installation is corrupt and cannot be used.

    Hi, ive recently just built a brand new computer and purchased windows 7 64 bit. the system runs fine except for the fact that i cannot install any games (these include command and conquer 4, red alert 3 and sims 3. i go to install and partway throug

  • Adding a new 2Tb Time Capsule to a home network

    Greetings. I have a 2-story home with a basement. Currently, the wireless network is based on a 2003 A1034 Airport extreme, with an AExpress on one floor, and an older airport in the basement. I've now purchases a 2Tb Time Capsule with 802.11n. Is th

  • JCo 3.0  - RFC call from EJB with SSO

    Hello, I am trying to call abap using JCo 3.0 from EJB (NW CE 1.0). I have configured destination on server with authentication method to use SAP Logon tickets. But when I call my EJB method that looks like this: JCoDestination dest=JCoDestinationMan

  • Some mails are not collected by Thunderbird

    Hi, I am facing a very strange behavior with Thunderbird (v 24.3.0) . I am in POP3. I have configured all my mails readers (actually my PC and my Android Smartphone) to leave the messages on the server. My Smartphone is configured to remove the mail

  • Print out brush sets

    Anyone know of a way to print out a list of brush sets like you can print out a list of fonts? I am tired of having to go and look all over the place for the brush that I need. Thanks Jules