Server configuration Wizard?????

Hi I am getting the following error
OASCatridgeConfig.Class not found after running
runwzc
Please help!!!!
Regards
Rajs
null

Rajs (guest) wrote:
: Hi I am getting the following error
: OASCatridgeConfig.Class not found after running
: runwzc
: Please help!!!!
: Regards
: Rajs
1) install WindowsNT 4.0 , SP3
2) install IE5.0
3) install Oracle Developer 6.0 (select all options)
4) install Oracle Application Server 4.0.7
5) install Oracle8 Enterprise Edition 8.0.5.0.0
6) install Oracle JInitiator 1.1.7
7) unzip 'SUN' directory from C:\ORANT\JDK\LIB\Classes.zip
and copy it to C:\ORANT\FORMS60\JAVA
8) unzip C:\ORANT\WZC\BIN\Wzcwin32.exe to C:\ORANT\WZC
9) modify the WZCENV.BAT like this
REM jdk class path
set JDKCLASS=c:\orant\jdk\lib\classes.zip
REM jdk bin path
set JDKPATH=c:\orant\jdk\bin
REM ewt class path
set EWTCLASS=c:\orant\forms60\java
REM bali shared class path
set BALICLASS=c:\orant\forms60\java
REM wzc top path
set WZCHOME=c:\orant\wzc
REM netscape path
set NETSCAPEHOME=C:\Program
Files\Netscape\Communicator\Program
10) in MSDOS mode of WindowsNT , run WZCENV.BAT
11) in the same MSDOS mode , run RUNWZC.BAT to launch the
Oracle Developer Server Wizard
12) modify C:\ORANT\WEBHTML\static.html to run your application
BestRegards.
null

Similar Messages

  • OIM 11g Server Configuration Wizard Error - Cannot Connect to Oracle DB

    I appreciate any and all suggestions or thoughts on how to best continue troubleshooting this error that I am describing below.
    I am attempting to install Oracle Identity and Access Management Suite 11g on a Windows 7 machine…in following the installation guides I have successfully installed the following Oracle Components
    - Oracle Database 11.2.0.1.0
    - Created Schemas using RCU 11.1.1.3.3
    - Oracle WebLogic Server 10.3.3.0
    - Oracle SOA 11.1.1.2.0
    - Oracle SOA 11.1.1.3.0 (Patch Set)
    - Oracle IAM SUITE 11.1.1.3.0
    Following the above installations, I created a new WebLogic Domain and as the next step am running the OIM Configuration Wizard to configure the OIM Server, however I am unable to setup a connection to the Oracle DB via the OIM Configuration Wizard. I am getting an error message when attempting to setup the connection to the Oracle Database using the OIM 11g Server Configuration Wizard:
    ERROR:*
    INST:6102 Unable to connect to the database with the given credentials.
    *+[DETAILS] Check the values. Make sure the Database is up and running and connect string, user name, and password are correct.+*
    INST:6102 Unable to connect to the database with the given credentials.
    *+[DETAILS] Check the values. Make sure the Database is up and running and connect string, user name, and password are correct.+*
    When installing the Oracle Database 11gR2 I used the following install configuration:
    Oracle base: C:\MyApps\Oracle
    Software location: C:\MyApps\Oracle\DB_HOME\11.2.0\dbhome_1
    Database file location: C:\MyApps\Oracle\DB_HOME\oradata
    Database Edition: Personal Edition (3.27 GB)
    Character Set: Unicode (AL32UTF8)
    Global database name: orcl.dev.com
    Administrative Password: Password1
    Confirm Password: Password1
    When creating my Schemas using RCU 11.1.1.3.3 I used the following Database Connection Details
    DB TYPE: Oracle Database
    HOST NAME: localhost
    PORT: 1521
    SERVICE NAME: orcl.dev.com
    USERNAME: sys
    PASSWORD: Password1
    ROLE: SYSDBA
    I used a Prefix of “DEV” when creating the schemas so Schema Owners DEV_OIM and DEV_MDS where created. Also, I configured to use the same password for all Schemas: “Password1″. So the password for DEV_OIM and DEV_MDS should be the same, “Password1″.
    REPRODUCING THE ERROR
    To reproduce the error, when I launch the Oracle Identity Management 11g Configuration Wizard I am first brought to the “Welcome” Screen. I click the [Next>] button.
    Next, I am on the “Components to Configure” screen where I select OIM Server and OIM Design Console and click the [Next>] button. (NOTE I have also tested by simply selecting only the OIM Server)
    Next, I am on the “Database” screen where I enter the connection information
    Connection String: localhost:1521:orcl.dev.com
    (NOTE I have also tested using localhost:1521:orcl)
    OIM Schema User Name: DEV_OIM
    OIM Schema Password: Password1
    MDS Schema User Name: DEV_MDS
    MDS Schema Password: Password1
    When I click the [Next>] button after entering the Database Connection details I encounter the following two errors (1 error for each logon DEV_OIM and DEV_MDS)
    INST:6102 Unable to connect to the database with the given credentials.
    INST:6102 Unable to connect to the database with the given credentials.
    TROUBLESHOOTING
    NOTE: I can successfully start the Oracle DB Services and connect via the Enterprise Console, SQL Plus, and JDBCTest Java Client…I just cannot get past this connection error in the OIM Server Configuration Wizard.
    JDBCTest.java TEST CLIENT
    NOTE: THIS IS THE JAVA TEST CLIENT THAT I AM USING TO TEST DATABASE CONNECTIVITY THRU A SPECIFIED JDBC URL AND DRIVER THAT WORKS SUCCESSFULLY.*
    import java.sql.Connection;
    import java.sql.DatabaseMetaData;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    public class JDBCTest {
    public static void main(String[] args) throws Exception {
    String url = "jdbc:oracle:thin:@localhost:1521:orcl";
    String driver = "oracle.jdbc.OracleDriver";
    String user = "DEV_OIM";
    String password = "Password1";
    try {
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, user, password);
    // Get the MetaData
    DatabaseMetaData metaData = conn.getMetaData();
    // Get driver information
    System.out.println("");
    System.out.println("#########################################");
    System.out.println("# ***DRIVER INFORMATION***");
    System.out.println("#");
    System.out.println("# Driver Name = " + metaData.getDriverName());
    System.out.println("# Driver Version = " + metaData.getDriverVersion());
    System.out.println("#");
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get database information
    System.out.println("#########################################");
    System.out.println("# ***DATABASE INFORMATION***");
    System.out.println("#");
    System.out.println("# Database Product Name = " + metaData.getDatabaseProductName());
    System.out.println("# Database Product Version = " + metaData.getDatabaseProductVersion());
    System.out.println("#");
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get schema information
    ResultSet schemas = metaData.getSchemas();
    System.out.println("#########################################");
    System.out.println("# ***SCHEMA INFORMATION***");
    System.out.println("#");
    System.out.println("# Schemas:");
    while (schemas.next()) {
    System.out.println("# " + schemas.getString(1));
    System.out.println("#########################################");
    System.out.println("");
    System.out.println("");
    // Get table information
    System.out.println("Tables");
    ResultSet tables = metaData.getTables("", "", "", null);
    while (tables.next()) {
    System.out.println(tables.getString(3));
    conn.close();
    } catch (Exception ex) {
    ex.printStackTrace();
    *"lsnrctl status" COMMAND TEST SUCCESSFUL*
    When the Listener Service is on I get the following output using lsnrctl status command
    C:\> lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 21-SEP-2010 15:59:43
    Copyright (c) 1991, 2010 Oracle. All rights reserved.
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows:Version 11.2.0.1.0 - Production
    Start Date 21-SEP-2010 14:43:57
    Uptime 0 days 1 hr. 15 min. 46 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\MyApps\Oracle\DB_HOME\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
    Listener Log File c:\myapps\oracle\diag\tnslsnr\\listener\alert\log.xml
    Listening Endpoints Summary…
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary…
    Service “CLRExtProc” has 1 instance(s).
    Instance “CLRExtProc”, status UNKNOWN, has 1 handler(s) for this service…
    Service “orcl.dev.com” has 1 instance(s).
    Instance “orcl”, status READY, has 1 handler(s) for this service….
    Service “orclXDB.dev.com” has 1 instance(s).
    Instance “orcl” status READY, has 1 handler(s) for this service…
    The command completed successfully

    Whenever installing oracle databases, i install the software only first. Then i setup the listener. Then i create a database instance using the dbca tool. This way all the information is added to the pre-existing listener configurations rather than trying to create the listener afterwards. Also, during the dbca database creation, i supply a full service name such as orcl.hostname and use the service name in future configurations where it asked. This usually solves any issues of the listener or database not being found correctly.
    -Kevin

  • Siebel Gateway Name Server Configuration Wizard returns "Execution failed"

    Hi,
    I am installing Siebel 8.1.1.1 on Linux platform and now having problem while trying to configure Siebel Gateway Name Server.
    Steps done:
    1) DB instance prepared
    2) Created Siebel installation image
    3) Installed Siebel server and configured Gateway name server (the wizard started automatically as part of the installation). Skip configuration of Enterprise and SWSE Logical profile
    4) Ran DB Configuration Wizard for the primary language - successfully. Import repository-add language - successfully.
    5) Trying to Wizard "Configure Enterprise" - failed with "Execution failed"
    Here I thought that probably Gateway Nameserver was not configured and decided to remove the Gateway and create it from scratch.
    Unfortunately this time the Gateway configuration failed. Also with message"Execution failed"
    Here are the errors I got in the log files sw_cfg_util*.log
    <EF><BB><BF>2021 2012-01-25 16:14:56 2012-01-25 16:14:56 +0200 00000002 001 003f 0001 09 sw_cfg_util 17234 -1215752512 /OraSSO_tstcol/siebapp/server/siebsrvr/log/sw_cfg_util.log 8.1.1 [21111] ENU
    GenericLog GenericError 1 000000024f204352:0 2012-01-25 16:14:56 (svrconfig.cpp (2465) err=3023557 sys=0) SBL-CSO-08901: The required arguments are not specified.
    GenericLog GenericError 1 000000034f20432e:0 2012-01-25 16:14:56 Executing step: CreateGateway
    GenericLog GenericError 1 000000034f20432e:0 2012-01-25 16:14:58 Step CreateGateway: failed to run program %%SiebelRoot%%%%OSDirSeparator%%bin%%OSDirSeparator%%srvrcfg with cmdline -u nouser -p nopassword -r %%SiebelRoot%% -g %%SiebelRoot%%%%OSDirSeparator%%sys%%OSDirSeparator%%siebns.dat::NSFILE: -r %%SiebelRoot%% -a gateway -l %%PrimaryLanguage%% -i %%SiebelRoot%%%%OSDirSeparator%%admin%%OSDirSeparator%%gtwydefs.dat
    GenericLog GenericError 1 000000034f20432e:0 2012-01-25 16:14:58 Failed during Execution, err: 5500044
    Does anybody know what is the reason?
    Searching in Metalink and Google were fruitless..
    Thank you in advance.

    Just in case anybody bumps in this thread:
    The problem in my case was solved according with Oracle Note "Delete and create the "Siebel Server" via Configuration Wizard on Linux, it failed. [ID 880562.1]"
    Applies to:
    +Siebel CRM - Version: 8.1.1 SIA [21111] and later   [Release: V8 and later ]+
    Linux x86
    Symptoms
    Delete the "Siebel Server" once and then create a new "Siebel Server" via Siebel Server Configuration Wizard on Linux, it failed with message "Execution Failed".
    The error on sw_cfg_util_xx.log is as follows,
    GenericLog GenericError 1 0000ce524a3a1bd2:0 2009-06-19 10:18:33 Executing step: AddSrvrRegistryEntry
    GenericLog GenericError 1 0000ce524a3a1bd2:0 2009-06-19 10:18:35 Step AddSrvrRegistryEntry: failed to run program %%SiebelRoot%%%%OSDirSeparator%%bin%%OSDirSeparator%%siebctl with cmdline -r %%SiebelRoot%% -q -S siebsrvr -i "%%SiebelEnterprise%%:%%SiebelServer%%" -a -g "-g %%SiebelGateway%% -e %%SiebelEnterprise%% -s %%SiebelServer%% -u %%Username%%" -e %%Password%%
    GenericLog GenericError 1 0000ce524a3a1bd2:0 2009-06-19 10:18:35 Failed during Execution, err: 5500044
    Reproduce steps:
    - confirm that siebel server was created before, and is stopping.
    - create sh env and enter the following command to remove the Siebel Server.
    +$ cd $(SiebelServerRoot)+
    +$ . ./cfgenv.sh+
    +$ cd $(SiebelServerRoot)/bin+
    +$ ./ssincfgw+
    - select "3 - Remove Existing Configuration".
    - complete the configuration wizard.
    - enter the following command to create the Siebel Server.
    +$ cd $(SiebelServerRoot)+
    +$ . ./cfgenv.sh+
    +$ cd $(SiebelServerRoot)/bin+
    +$ ./ssincfgw+
    - select "1 - Create New Configuration".
    - continue inputs to finish and execute the configration.
    +==> you'll find "Execution Failed".+
    Cause
    AddSrvrRegistryEntry section shown in the log is the command for registering the Windows Service, and it is no need to execute on Linux env. However, it is executed and it failied.
    Solution
    You can do either of follows,
    +(1) Uninstall and Install the Siebel Server again.+
    +(2) The section to execute the Windows registeration command is specified on $(SiebelServerRoot)/admin/common.scm, line 2475-2477.+
    +[Step]+
    Name = AddSrvrRegistryEntry
    Type = RunProg %%SiebelRoot%%%%OSDirSeparator%%bin%%OSDirSeparator%%siebctl ' -r %%SiebelRoot%% -q -S siebsrvr -i "%%SiebelEnterprise%%:%%SiebelServer%%" -a -g "-g %%SiebelGateway%% -e %%SiebelEnterprise%% -s %%SiebelServer%% -u %%Username%%" -e %%Password%% '
    So, delete the AddSrvrRegistryEntry section from common.scm, and execute Configuration Wizard again.
    Edited by: mmango on Jan 31, 2012 12:21 AM

  • Developer Server Configuration Wizard

    Why is it there is no developer server configuration wizard on
    my application while I already install all the products in
    Developer server CD by custom installation.
    Kindly give me an assistance on this...
    null

    billy (guest) wrote:
    : Why is it there is no developer server configuration wizard on
    : my application while I already install all the products in
    : Developer server CD by custom installation.
    : Kindly give me an assistance on this...
    There is an answer in this newsgroup, but i don't know the exact
    title (Perhaps "Where can i launch the Server Wizard?" or so).
    It was anything with unzipping the file in WZC\Bin and running
    the batch files). Unfortunately, I failed trying to follow that
    answer, and the Oracle support told me that they did not
    implement the Wizard, which is a little curious.
    Steve
    null

  • Connect BizTalk Server Configuration with Sql Azure - version 2013 R2

    Hi,
    My data resides on Sql Azure. I need to create BizTalkRuleEngineDb on Sql Azure using Microsoft BizTalk Server Configuration wizard. Subsequently manage rules from Business Rule Composer.
    I am unable to connect to Sql Azure from BizTalk Server Configuration application. Without this i could not create BizTalkRuleEngineDb on Sql Azure. I gave the following details:
    Database server name: <servername>.database.windows.net,1433
    User name: <username>
    Password: <pwd>
    When i click configure button, a message pops "The database server you specified cannot be reached...."
    All i need from BizTalk is to create Business Rules Engine DB on Sql Azure. Then I would like to manage rules using Business
    Rule Composer connecting to Sql Azure BizTalkRuleEngineDb.<o:p></o:p>
    My business logic will programmatically access BizTalkRuleEngineDb db and execute rules using Microsoft.RuleEngine.dll<o:p></o:p>
    Is this a feasible solution? I would like to see your inputs.
    Any help is appreciated.
    Thanks,
    Tushar

    First I would suggest you to perform sanity check to confirm if SQL server connectivity is perfect.
    1) Verify the MSDTC Settings on both the servers:- It should resemble as below.
    2) UDL Test:- Create a new "Text Document"(new notepad file) rename it to ABC.udl, double click and give the SQL server details and Test connection. If this fails it means BizTalk is not at all able to connect with SQL and in this
    case BizTalk Application is just a victim of Network connectivity issue.
    You can also refer the below article-
    Resolving the issues you may face during BizTalk Runtime Configuration
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • Sharepoint 2010 - Error while running Configuration wizard for SP 2010 server farm

    Hi All,
    I am trying to set up a SP 2010 farm. I have windows server 2008 R2 installed and was able to install SP 2010 successfully. However when I ran the Sp 2010 Products and configuration wizard I am getting the following error at Step 3.
     Failed to create the configuration database.
    An exception of type System.Collections.Generic.KeyNotFoundException was thrown.  Additional exception information: The given key was not present in the dictionary.
    System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
       at System.ThrowHelper.ThrowKeyNotFoundException()
       at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
    I have installed all the prerequisites and I am on Microsoft Geneva Framework 1.0.30624.0 . I saw on a blog that Microsoft Geneve Framework beta 2 will actually cause the above problem. However I encountered the error with Beta 1 version as well.
    Any ideas why this is happening?

    Hello together,
    I get the same error mentioned above while running the configuration wizard.
    My Serverenvironment:
    - MS Server 2008 R2 Enterprise
    - Virtual Machine (Host Machine also R2 Enterprise)
    - SQL Server 2008 -- Cumulative Update 4 for SQL Server 2008 Service Pack 1 installed
    - Prerequisites installed without error (and current versions)
    Error information:
    "Failed to create the configuration database"
    "An exception of type System.Collections.Generic.KeyNotFoundException was thrown. Additional exception information:
    The given key was not present in the dictionary"
    The logfile has the following entry:
    7/2009 10:52:48  9  ERR                    Task configdb has failed with an unknown exception
    12/07/2009 10:52:48  9  ERR                    Exception: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
       at System.ThrowHelper.ThrowKeyNotFoundException()
       at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
       at Microsoft.SharePoint.Utilities.SPUtility.GetUserPropertyFromAD(SPWebApplication webApplicaiton, String loginName, String propertyName)
       at Microsoft.SharePoint.Administration.SPManagedAccount.GetUserAccountControl(String username)
       at Microsoft.SharePoint.Administration.SPManagedAccount.Update()
       at Microsoft.SharePoint.Administration.SPProcessIdentity.Update()
       at Microsoft.SharePoint.Administration.SPApplicationPool.Update()
       at Microsoft.SharePoint.Administration.SPWebApplication.CreateDefaultInstance(SPWebService service, Guid id, String applicationPoolId, SPProcessAccount processAccount, String iisServerComment, Boolean secureSocketsLayer, String iisHostHeader, Int32 iisPort, Boolean iisAllowAnonymous, DirectoryInfo iisRootDirectory, Uri defaultZoneUri, Boolean iisEnsureNTLM, Boolean createDatabase, String databaseServer, String databaseName, String databaseUsername, String databasePassword, SPSearchServiceInstance searchServiceInstance, Boolean autoActivateFeatures)
       at Microsoft.SharePoint.Administration.SPWebApplication.CreateDefaultInstance(SPWebService service, Guid id, String applicationPoolId, IdentityType identityType, String applicationPoolUsername, SecureString applicationPoolPassword, String iisServerComment, Boolean secureSocketsLayer, String iisHostHeader, Int32 iisPort, Boolean iisAllowAnonymous, DirectoryInfo iisRootDirectory, Uri defaultZoneUri, Boolean iisEnsureNTLM, Boolean createDatabase, String databaseServer, String databaseName, String databaseUsername, String databasePassword, SPSearchServiceInstance searchServiceInstance, Boolean autoActivateFeatures)
       at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.CreateDefaultInstance(SqlConnectionStringBuilder administrationContentDatabase, SPWebService adminService, IdentityType identityType, String farmUser, SecureString farmPassword)
       at Microsoft.SharePoint.Administration.SPFarm.CreateAdministrationWebService(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)
       at Microsoft.SharePoint.Administration.SPFarm.CreateBasicServices(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)
       at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword, SecureString masterPassphrase)
       at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, String farmUser, SecureString farmPassword, SecureString masterPassphrase)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    Any suggestions?
    Thanks
    Christoph

  • Weblogic Server 10.3.6 (64bit)- Configuration Wizard - JVM Error

    Hi Friends,
    I am new to forum threads. Please don't mind if I have posted incorrectly.
    When I try to run configuration wizard of Weblogic server 10.3.6, I am getting the following error in JVM Launcher pop-up window.
    Error : Could not Create the Java Virtual Machine
    Error : A fatal Exception has occurred. Program will exit.
    Note:
    1) I have followed  Start => Apps => Oracle WebLogic => Configuration Wizard  to load the configuration wizard.
    2) Facing the same problem while loading Fusion Middle Configuration Wizard ( Start  => Apps  => Oracl SOA 11g -Home1  => Configure Application Server )
    Kindly suggest me with the best option to resolve the same.
    Thanks in advance.
    Rajesh

    Hi Borys,
    Thanks for your kind reply,
    I have installed java-8 on my Window 8 machine, before installation of Weblogic itself and the location of JDK is "C:\Java\jdk1.8.0_25"
    And the 'C:\Middleware\SOASuite11gR1PS6\wlserver_10.3\common\bin\commEnv' (windows command script file) contains the correct JAVA_HOME location by default, i.e  JAVA_HOME=C:\Java\jdk1.8.0_25
    While installing the weblogic serv (64-bit) , I have Opened the command prompt, navigated to the directory containing the Weblogic jar and entered the below command,
    C:\Java\jdk1.7.0_35\bin\java -Xmx1024m -jar wls1036_generic.jar   And successfully got installed the same.
    Now, Do I still need to set the JAVA_HOME parameter on my windows ?
    ( FYI: when I got my windows8.1 OS with the machine, it is having default jre7 location as "C:\Program Files\Java\jre7\bin")
    Thanks,
    Rajesh

  • Weblogic Server 10.3.5 - Configuration Wizard Error

    Hi
    I am a newbie to forum threads. Please dont mind if I posted incorrectly.
    When I try to run configuration wizard of weblogic server 10.3.5, I am getting the following error.
    Java Virtual Machine Launcher
    Could not find the main class:
    com.oracle.cie.wizard.WizardController. Program will exit.
    I have't moved any files from installatio directory.
    Please anyone help me out to resolve the issue.
    Thanks in advance.

    How are you trying to run the installer?
    Is it a .exe file OR a .bin file OR a .jar file?
    I am assuming that it is a .jar file.
    The .jar installers would need JAVA to be pre-installed and then use the pre-installed Java to run the installer
    Something like:
    <JAVA_HOME>\bin\java -jar wls1035_generic.jar
    where JAVA_HOME is the location of the Java Installation
    Please review the following documentation for further information:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e14142/guimode.htm#BABHJJEG
    Arun

  • P6 EPPM configuration wizard won't connect to database server

    I have installed P6 8.3 and Weblogic on one server (application server). On another server SQL is installed. When i run the P6 EPPM Configuration Wizard i get as far as the step 'Database Type & Connection' where i can fill in the details of the server and database to connect to. But then when i press 'next' nothing happens. I don't get any error, but the wizard is not going to the next step. I've tried it with all the options 'Create a new database', 'Upgrade an existing database' or simply 'Connect to an existing database'.
    I've read in the documentation that to run the P6 Eppm wizard you need to be on an oracle or sql server, but how can i do that when the necessary files are on another server? As far as i was told it's possible to use two separate servers?
    I hope someone can help.

    Hi,
    JRE 1.8.0_40 is not supported. Please check the tested configurations document for your version, client and browser sheet, uninstall JRE 8 U 40, install a supported version, update the JAVA_HOME, run P6 and try again.
    Let me know the results.
    Regards,
    Pablo
    ========
    Was our answer helpful?
    If so, highlight the information for other Community members by rating it or marking the answer as correct.
    Just hit the “Correct Answer” link on the answer, or rate it by clicking "Helpful Answer" or "Like".

  • Vb 2010 data source configuration wizard and sql server 2012

    I am having a problem using the Data Source Configuration Wizard in vb 2010 express to connect to a remote SQL server database. The weird thing is that I can connect to it just fine if I manually dimension the sqlcommand, sqlconnection and set up the sql
    connectionstring. So I know the connectivity is possible, but I would like to use the functionality of the Data Source Configuration Wizard.
    Here's what happens when I attempt to add a connection via the Database Explorer:
    I only get two SQL Server options. Neither will let me connect to a remote database.
    I know that Microsoft SQL Server Compact 3.5 isn't what I want, but I have tried it anyway. It will only let me connect to a database on my computer. An 'ActiveSync' option is greyed out.
    Microsoft SQL Server Database File would appear to be what I want, but when I select this option, it informs me (as you can see) that this will only work for a local database:
    The connection string that I build manually (and which works) looks like this:
    Dim
    myConn
    As
    NewSqlConnection(sConnect)
    sConnect =
    ""Data Source=xxxxxx.xxxxxx.com;Server=""Xxxx XXX Database"";Initial Catalog=StockAnalysisProd;User
    ID=cadietz;Password = "& sPW &
    I have attempted all variation of this string in the database file name input box to no avail. I think it really should go in as a Data Source but those are hard wired and cannot be changed. I'm sure I'm doing something stupid, but I need someone
    to point out what it is. Thanks in advance for your help...
    Alex3764

    Alberto... thanks for your reply.
    Unfortunately this does not appear to work. I downloaded Visual Studio Express for the Web (2012) and attempted the 'work around' proposed by Sergey and I could not make it work on the remote server. I have given up on the Data Connection Wizard and
    am simply connecting to my remote SQL server using the manual classes (SqlConnection, SqlCommand, SqlDataAdapter, etc.). The moderator has marked this as an answer but I'm going to unmark it.
    I am now even more frustrated because I now find that I cannot connect to my LOCAL SQL database using the Data Connection Wizard and the circumstances are even weirder. Here's what happens:
    I open the Add Connection window, select 'Microsoft SQL Server Database File (SqlClient)' as the data source.
    I then browse to my local database file in the Database file name input box. When I click the 'Test Connection' button I get a message box that informs me: 'Test connection
    succeeded'. Voila!
    But, alas, when I close the message box and click OK on the Add Connection window I get this message: 'The ability to open this connection is not supported in this edition of Visual Studio'.
    I mean this borders on the absurd. Why is the Data Connection Wizard even offered with VB 2010 Express if you can't use it for anything. Once again I can get around the problem manually but I'm getting very frustrated with MS. Any suggestions??
    Alex3764

  • Project Server 2013 Configuration Wizard Error

    Hi Everyone,
    I have installed SharePoint 2013 over Single Server with built in DB. Server
    uses Windows Server 2008 & SQL Server 2008. SharePoint installed correctly and it is running well.
    Now,
    I need to install Project Server 2013, so I installed its required updated, its prerequisites, then installed it. After installation, Configuration wizard started, but it failed with following error info:-
    What
    is the reason of that error and how to solve this problem?
    Thanks
    Wa'el Mohsen

    That sounds easy enough.  Just two questions though:
    1) what is 25774? KB? an update?
    2) how do I delete it from IIS?
    Thank you,

  • Configuration wizards getting failed in SharePoint server.

    I installed SharePoint server 2010 on windows 7 sp1, it's working fine. Suddenly i got an issue, where am not able to see look & feel of central admin page, not able to go web application.
    I tried running configuration wizards from both products & from 14 hive.
    Please find the error screenshot:
    Badri

    Please find the recent log file.
    Timestamp              
    Process                                
    TID   Area                          
    Category                      
    EventID Level    
    Message Correlation
    05/13/2014 12:41:33.83 wsstracing.exe (0x3B2C)                
    0x401C SharePoint Foundation        
    Unified Logging Service      
    b9wt High    
    Log retention limit reached.  Log file 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS\OHDO790GY29VQ1-20140429-1141.log' has been deleted.
    05/13/2014 12:41:33.83 wsstracing.exe (0x3B2C)                
    0x401C
    SharePoint Foundation         Tracing Controller Service    
    8096 Information
    Usage log retention limit reached.  Some old usage log files have been deleted.
    05/13/2014 12:41:34.43 OWSTIMER.EXE (0x22D0)                  
    0x2D14
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job SchedulingApproval)
    c556b7e5-f8ef-41b7-bd18-d9361b2e7a93
    05/13/2014 12:41:34.45 OWSTIMER.EXE (0x22D0)                  
    0x2D14
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job SchedulingApproval). Execution Time=25.8087340378262
    c556b7e5-f8ef-41b7-bd18-d9361b2e7a93
    05/13/2014 12:41:35.31 Microsoft.Office.Server.Convers (0x3BAC)
    0x34B0 Document Conversions          
    Launcher Service              
    7jg8 Medium  
    Calling LoadBalancer.RegisterLauncher
    05/13/2014 12:41:36.31 Microsoft.Office.Server.Convers (0x395C)
    0x2678 Document Conversions          
    Load Balancer Service        
    7jhf Medium  
    RegisterLauncher called with uri http://OHDO790GY29VQ1:8082/HtmlTrLauncher
    05/13/2014 12:41:36.31 Microsoft.Office.Server.Convers (0x3BAC)
    0x34B0 Document Conversions          
    Launcher Service              
    7jg9 Medium  
    LoadBalancer.RegisterLauncher succesful
    05/13/2014 12:41:47.43 OWSTIMER.EXE (0x22D0)                  
    0x1EFC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job Search Health Monitoring - Trace Events)
    11ff6945-f196-468f-80ae-bd377ff496c0
    05/13/2014 12:41:47.43 OWSTIMER.EXE (0x22D0)                  
    0x1EFC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job Search Health Monitoring - Trace Events). Execution Time=2.75081863493229
    11ff6945-f196-468f-80ae-bd377ff496c0
    05/13/2014 12:41:48.43 OWSTIMER.EXE (0x22D0)                  
    0x27BC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job job-application-server-admin-service)
    314f1684-db64-4520-8217-b95ba78b83ef
    05/13/2014 12:41:48.43 OWSTIMER.EXE (0x22D0)                  
    0x27BC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job job-application-server-admin-service). Execution Time=1.01574725189807
    314f1684-db64-4520-8217-b95ba78b83ef
    05/13/2014 12:41:49.43 OWSTIMER.EXE (0x22D0)                  
    0x04B4
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job SchedulingApproval)
    c7fc8f94-0017-4ede-bbf6-7eaf36628cd8
    05/13/2014 12:41:49.43 OWSTIMER.EXE (0x22D0)                  
    0x04B4
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job SchedulingApproval). Execution Time=1.57931340919189
    c7fc8f94-0017-4ede-bbf6-7eaf36628cd8
    05/13/2014 12:41:50.26 w3wp.exe (0x16E4)                      
    0x1834
    SharePoint Portal Server      
    Runtime                      
    8gp7 Medium  
    Topology cache updated. (AppDomain: /LM/W3SVC/1856782513/ROOT-1-130444334287775456)
    05/13/2014 12:41:51.43 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job job-application-server)
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:51.43 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Server Search      
    Administration                
    dkd5 High    
    synchronizing search service instance
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:51.43 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Server Search      
    Administration                
    eff0 High    
    synchronizing search data access service instance
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:51.55 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Server Search      
    Administration                
    dl2a Medium  
    Search application 'SSA': Verify correctness of incremental crawl schedule on content source 'Local SharePoint sites'.
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:51.55 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Server Search      
    Administration                
    dl2i Medium  
    Search application 'SSA': Provision start addresses in default content source.
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:51.56 OWSTIMER.EXE (0x22D0)                  
    0x2B0C
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job job-application-server). Execution Time=125.500176284218
    bb42fc36-a36e-4da5-81f4-b4075b7df2f6
    05/13/2014 12:41:56.44 OWSTIMER.EXE (0x22D0)                  
    0x2A60
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job SchedulingUnpublish)
    cdb4aea2-e567-419f-b055-bf6e13b4613c
    05/13/2014 12:41:56.44 OWSTIMER.EXE (0x22D0)                  
    0x2A60
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job SchedulingUnpublish). Execution Time=1.70699872495798
    cdb4aea2-e567-419f-b055-bf6e13b4613c
    05/13/2014 12:41:57.43 OWSTIMER.EXE (0x22D0)                  
    0x0CDC
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job SchedulingUnpublish)
    f34368d8-edfc-45e3-9a91-03be33db2496
    05/13/2014 12:41:57.43 OWSTIMER.EXE (0x22D0)                  
    0x0CDC
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job SchedulingUnpublish). Execution Time=1.68315205842011
    f34368d8-edfc-45e3-9a91-03be33db2496
    05/13/2014 12:41:57.54 mssearch.exe (0x3FDC)                  
    0x348C
    SharePoint Foundation Search   GatherPI                      
    e5aq High    
    locking gatherer for status change NSC_CRAWL_DONE (988d8188-a8a6-4895-b06b-9dbae288331a, Search, crawl 95952)  [gatherobj.cxx:1740]  d:\office\source\search\native\gather\server\gatherobj.cxx
    05/13/2014 12:41:57.54 mssearch.exe (0x3FDC)                  
    0x348C
    SharePoint Foundation Search   GatherPI                      
    e5e0 High    
    advising status change NSC_CRAWL_DONE (988d8188-a8a6-4895-b06b-9dbae288331a Search crawl 95952)  [gatherobj.cxx:4514]  d:\office\source\search\native\gather\server\gatherobj.cxx
    05/13/2014 12:41:57.55 mssearch.exe (0x3FDC)                  
    0x3078
    SharePoint Foundation Search   GatherPI                      
    dww2 Medium  
    processing status change (1) NSC_CRAWL_DONE, (988d8188-a8a6-4895-b06b-9dbae288331a, Search) thread id 0x3078  [statthrd.cxx:97]  d:\office\source\search\native\gather\server\statthrd.cxx
    05/13/2014 12:41:57.55 mssearch.exe (0x3FDC)                  
    0x3078
    SharePoint Foundation Search   GatherPI                      
    dra4 High    
    CGthrPrj::AdviseStatusChange : advising status change NSC_CRAWL_DONE (Search 988d8188-a8a6-4895-b06b-9dbae288331a )  [cgatherprj.cxx:1698]  d:\office\source\search\native\gather\gthrsvc\cgatherprj.cxx
    05/13/2014 12:41:57.55 mssearch.exe (0x3FDC)                  
    0x3078
    SharePoint Foundation Search   GatherPI                      
    ds7h High    
    CPluginCollection::AdviseStatusChange : advising status change NSC_CRAWL_DONE (Search 988d8188-a8a6-4895-b06b-9dbae288331a )  [plugin.cxx:929]  d:\office\source\search\native\gather\gthrsvc\plugin.cxx
    05/13/2014 12:41:57.55 mssearch.exe (0x3FDC)                  
    0x3078
    SharePoint Foundation Search   GatherPI                      
    ds7h High    
    CPluginCollection::AdviseStatusChange : advising status change NSC_CRAWL_DONE (Search 988d8188-a8a6-4895-b06b-9dbae288331a )  [plugin.cxx:929]  d:\office\source\search\native\gather\gthrsvc\plugin.cxx
    05/13/2014 12:41:57.55 mssearch.exe (0x3FDC)                  
    0x3078
    SharePoint Foundation Search   IDXPIPlugin                  
    dyz9 Medium  
    988d8188-a8a6-4895-b06b-9dbae288331a: Fresh doc count: 11, master index doc count: 44275  [tripmain.cxx:1718]  d:\office\source\search\native\ytrip\search\tripoliplugin\tripmain.cxx
    05/13/2014 12:42:00.44 OWSTIMER.EXE (0x22D0)                  
    0x0E54
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job UPA_LanguageSynchronizationJob)
    77de5e6c-319b-4b6d-b98b-70ad0b643d37
    05/13/2014 12:42:00.44 OWSTIMER.EXE (0x22D0)                  
    0x0E54
    SharePoint Server            
    General                      
    0000 Medium  
    Constructed a new async cache named Profile Property Cache
    77de5e6c-319b-4b6d-b98b-70ad0b643d37
    05/13/2014 12:42:00.44 OWSTIMER.EXE (0x22D0)                  
    0x08A0
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job UPA_ProfileSynchronizationJob)
    1afa1e2f-c343-45cd-a7de-7ce24470915d
    05/13/2014 12:42:00.44 OWSTIMER.EXE (0x22D0)                  
    0x0E54
    SharePoint Foundation         Topology                      
    e5mc Medium  
    WcfSendRequest: RemoteAddress: 'http://ohdo790gy29vq1:32843/723b04949d9149c3b7808a2390c3d249/ProfilePropertyService.svc' Channel: 'Microsoft.Office.Server.UserProfiles.IProfilePropertyService' Action: 'http://Microsoft.Office.Server.UserProfiles/GetProfileProperties'
    MessageId: 'urn:uuid:6a76bfaf-90ba-4215-b2fe-49e4705217f9'
    77de5e6c-319b-4b6d-b98b-70ad0b643d37
    Badri

  • SharePoint Product configuration wizard cannot Register "Document conversion Launcher Server"

    Each time I run the SharePoint configuration wizard, it stop at the following step:-
    It will mentioned that it install the document conversion service, but while registering it , the wizard will stop and it will raise a timeout exception.
    Also when I tried to start the Document conversion related services from central administration, it showed that they are stopped and I cannot start them:-
    Can anyone advice about this problem ?
    Thanks

    Hi john,
    Please provide more detailed information about the error you met,  and you can check the log file to find more information about this issue. The path of the log file is : C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS.
    In addition, in Registry, Add a new key named "AcknowledgedRunningOnAppServer" of DWORD type at the below mentioned locations.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\version\LauncherSettings
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\version\LoadBalancerSettings
    Set the value to 1.
    Restart the System.
    More inforamtion, please refer to the link:
    http://stackoverflow.com/questions/23184703/sharepoint-2013-sp1-install-error-during-product-configuration-step-5-failed-t
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Re-Installing SharePoint Foundation 2010 - Product Configuration Wizard Error

    So i recently had to start fresh on my SharePoint development server. My database was left remaining on a different server during this process.
    So after re-installing SharePoint 2010, I told it to connect to an existing server farm, and then put my database server name in, from which it was able to retrieve the database name. After this step though i ran into my problems... For some reason it is
    saying i don't have the appropriate software installed to finish the Configuration Wizard, when i know i have it.
    What can I do to fix this problem? 

    Hi Zipatones,
    Honestly, it is difficult to diagnose the cause of your issue since there could be several reasons. The best I can do is give you several options one of which might be the solution.
    1) During the configuration I would let SharePoint setup a new Config database. Then setup a new web application with the same URL as your original one. Instead of creating a site collection, detach that database and attach your original database.
    2) Do the same for the service applications. Setup new service applications and then detach and attach the original databases. I highly recommend you use powershell for service apps since you need to find the guids of both the application and its proxy.
    3) You need to make sure that the new SharePoint app server has the same version of updates (such as hotfixes) installed on your previous farm.
    Hope these recommendations help.
    Daniel Christian (MCTS)

  • Error while configuring the database connection in sharepoint configuration wizard.Sharepoint 2007.

    System
    Provider
    [ Name]
    SharePoint
    Products and Technologies Configuration
    Wizard
    EventID
    104
    [ Qualifiers]
    0
    Level
    2
    Task
    0
    Keywords
    0x80000000000000
    TimeCreated
    [ SystemTime]
    2014-11-06T02:03:00.000Z
    EventRecordID
    11054
    Channel
    Application
    Computer
    HZNTPMSWSMOS001.NEO-DIAGEO.com
    Security
    EventData
    Failed
    to create the configuration database. An exception of type
    System.SystemException was thrown. Additional exception information: The trust
    relationship between this workstation and the primary domain failed.
    System.SystemException: The trust relationship between this workstation and the
    primary domain failed. at
    System.Security.Principal.NTAccount.TranslateToSids(IdentityReferenceCollection
    sourceAccounts, Boolean& someFailed) at
    System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection
    sourceAccounts, Type targetType, Boolean forceSuccess) at
    System.Security.Principal.NTAccount.Translate(Type targetType) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GetMachineRelativeSecurityIdentifier(SPServer
    server, Boolean& isMachineAccount) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GrantIdentityAccessToDatabase(SPProcessIdentity
    identity, SPDatabase database) at
    Microsoft.SharePoint.Administration.SPProcessIdentity.GrantIdentityDatabaseAccess()
    at Microsoft.SharePoint.Administration.SPProcessIdentity.Update() at
    Microsoft.SharePoint.Administration.SPWindowsService.Update() at
    Microsoft.SharePoint.Administration.SPFarm.CreateBasicServices(SqlConnectionStringBuilder
    administrationContentDatabase, IdentityType identityType, String farmUser,
    SecureString farmPassword) at
    Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder
    configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase,
    IdentityType identityType, String farmUser, SecureString farmPassword) at
    Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder
    configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase,
    String farmUser, SecureString farmPassword) at
    Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
    at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
    at
    Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()

    Hi,
    This issue seems to be a machine Issue. From message is seems that your Computer is not properly connected to Domain.  use the steps in the below link and try doing your steps again.
    https://support.microsoft.com/kb/162797?wa=wsignin1.0
    Regards

Maybe you are looking for