Vastly different performance of identically configured databases...

I’m using Oracle Text to retrieve data from a large table (5 million rows or so). The index is created simply:
CREATE INDEX ALT_DEV_IDX ON devtable(searchfield) INDEXTYPE IS CTXSYS.CONTEXT;
…and then I do my best to make sure the thing is loaded into memory and stays there:
alter table devtable cache;
alter table devtable storage (buffer_pool keep);
alter table dr$alt_dev_idx$I storage (buffer_pool keep);
alter table dr$alt_dev_idx$R storage (buffer_pool keep);
alter index dr$alt_dev_idx$X storage (buffer_pool keep);
alter table DR$ALT_dev_IDX$R storage (buffer_pool keep) modify lob (data) (storage (buffer_pool keep));
SELECT /*+ FULL(ITAB) */ SUM(TOKEN_COUNT), SUM(LENGTH(TOKEN_INFO)) FROM DR$ALT_dev_IDX$I ITAB;
SELECT /*+ INDEX(ITAB) */ SUM(LENGTH(TOKEN_TEXT)) FROM DR$ALT_dev_IDX$I ITAB;
SELECT /*+ FULL(BTAB) */ SUM(ROWNUM) FROM devtable WHERE ROWNUM >= 900000;
No other tables are in use when testing. We have over 90GB of free memory on our servers, so memory is not constrained. However, I/O is not as good as it should be, because I’m limited to just two sets of mirrored paired hard disks.
On a spare Linux box running 64-bit Centos 5, with much worse I/O configuration (basically, just one mirrored pair), a lot less free RAM and a CPU that’s about three years older (and slower!) than the ones in the production servers, I set the following init.ora parameters (and nothing else):
*.audit_file_dest='/u01/app/oracle/admin/devdb/adump'
*.background_dump_dest='/u01/app/oracle/admin/devdb/bdump'
*.compatible='10.2.0.1.0'
*.control_files='/data/oradata/devdb/control01.ctl','/data/oradata/devdb/control02.ctl','/data/oradata/devdb/control03.ctl'
*.core_dump_dest='/u01/app/oracle/admin/devdb/cdump'
*.db_block_size=16384
*.db_domain=''
*.db_file_multiblock_read_count=16
*.db_name='dbsd'
*.job_queue_processes=10
*.open_cursors=300
*.pga_aggregate_target=2280652800
*.processes=700
*.remote_login_passwordfile='EXCLUSIVE'
*.sessions=775
*.sga_target=9000M
*.undo_management='AUTO'
*.undo_tablespace='UNDOTBS1'
*.user_dump_dest='/u01/app/oracle/admin/devdb/udump'
Retrieval of a very common search term (680,000+ hits) takes about 3 seconds and involves a very short, sharp I/O spike –but nothing too much to worry about, I think.
I set EXACTLY the same parameters on a Windows Server 2003 R2 Standard Edition box (64-bit) –apart from the obviously path-related ones. The same query runs in over 54 seconds and there is a massive and sustained I/O hit on the datafile drive (as measured by perfmon). In fact, the web front end used to do these searches simply times out and no results are ever actually displayed.
The Linux box is using just two AMD Opteron single core chips; the Windows box is using two quad-core Intel Core 2 Duos –which run at a higher clock speed than the Opteron, apart from anything else. So the Windows box has (effectively) at least 6 CPUs more than the AMD machines. It also has double the number of hard drives and double the amount of free RAM after the Oracle instance has started.
And yet with all those advantages, the Windows box runs at least 25 times slower than the Linux box for the same search term, using the same table and index structures.
What is going on?! Why does the Windows box keep hitting the hard disk (it’s definitely cause and effect: you can watch the Windows perfmon idle, press the Enter key on the search box and see the I/O bar immediately jump and stay there until either the page gives up or the results are returned. The next search term causes another I/O spike. And on and on: nothing ever seems to need only memory access, despite there being stacks of memory in which to cache the objects being accessed in their entirety)?
I’ve compared execution plans between the two servers, and they are identical in the number and type of steps they take (table access by index rowed domain index, sort order by, view and so on).
Does anyone know why Windows Oracle Text access should appear to demand physical I/O that refuses to be cached whereas Linux Oracle Text doesn’t?
Is there some subtlety of Oracle-on-Windows that I’ve missed configuring? Is there some known bug that I’m hitting?
The software is actually 10.2.0.3 64-bit, but we’re using 10.2.0.1 optimiser compatibility.
I would be grateful for any pointers since I am at a complete loss to explain the seemingly very different behaviour of Oracle on each platform.
This isn’t a Linux v. Windows, thing, either –just to head that one off before it happens! We have to run on Windows, so I’m not knocking it, but seeking to get Oracle running on it properly. I would be grateful for any insight you can offer.

How did you establish that? Did you query v$bh, or is this logical reasoning? (I/O is high, so data is not in cache)
As I said, I watched the Windows CPU and Disk I/O performance metrics for some time and established they were at a flat line. I typed in a search term and pressed Enter. Immediately, the I/O performance measure soared. Just before the search results were displayed, the I/O metric went back to flatline and stayed there. Do another search, the metric goes up; as soon as the results are displayed, the metric goes back to around about zero. Utterly repeatable. I didn't bother viewing V$BH, because this happens to be the only table (along with its associated indexes) that exist in this database, so there aren't exactly a lot of candidates for buffer cache occupants!
Windows servers are by default configured with a huge file system cache. This should be turned off.
Good point, but it is.
Also the background services should be given priority.
And, again, they are. I've also done things like switch on large pages so that the SGA is locked in real memory, not pages out to disk. But none of that makes a difference to the observed disk I/O behaviour.
Apart from that: the architecture is fundamentally different so you really shouldn't compare Windows and Linux.
As I said originally, I'm not. But I cannot ignore the fact that 3 year-old hardware that happens to be running Linux is out-performing brand new, state-of-the-art servers that are running Windows, especially when the init.ora is identical in each case. I'm not saying one is better than another, just that there's clearly an issue and I would like to know whether it is indeed architectural or whether it's something else (like a Windows-specific bug, for example).
I respect the findings of all Oracle experts, but this isn't simply a matter of 'Windows is three times slower'. For a start, it's more like 'ten times slower'... and anyway, it's a behaviour difference that is the real problem here: Oracle-on-Linux doesn't do I/O (or, very little, I should say) when a search is performed. Oracle-on-Windows does a massive I/O hit. That's not a performance issue, I would say, but a fundamentally different way of working. Something must be causing it. I would like to know what.
'Architecture is different' doesn't cut it. Sure, I know that the architectures are profoundly different... but 10 times faster with less than half the CPUs different? And 'I have to do IO when the other guy doesn't' different? I think just saying 'architecture' is a mantra response and doesn't really mean much.
If it really is true that 'it's just the architecture', then what you're really saying is 'Oracle doesn't work on Windows' -or at least 'Oracle Text doesn't work on Windows'. That's not actually the official line though, is it? If we take the more rational line of assuming that Oracle Text does work on Windows, I'd like to know how I can make it work well on Windows.

Similar Messages

  • Content database and share point configuration databases in different sql servers

    HI
    i have a sharepoint 2010 farm and connected to a sql server ,
    here it can be possible to connect all sharepoint configuration databases to one sql server,
    and content database in different sql server ,
    if i do in future can i face any issues?
    adil

    Yes you can. You can specify the SQL server whilst creating the databases and as long as you have configured the required permissions that will be fine. If you really wanted you could have a dedicated SQL instance for each database, although that would be
    very wasteful.
    There are no significant issues, you will have a bit more maintenance to look after two SQL servers but that's about it.

  • SharePoint 2013 - Server Error in '/' Application - This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database

    Hi
    After I ran SharePoint configuration wizard successfully to upgrade to SharePoint 2013 / SP1.
    I can open Central Administration site just fine.
    but now when I open any Site collection,  I got this error.
    Server Error in '/' Application
    This operation can be performed only on a computer that is joined to a server farm by users who have permissions in SQL Server to read from the configuration database. To connect this server to the server farm, use the SharePoint Products Configuration
    Wizard, located on the Start menu in Microsoft SharePoint 2010 Products
    I have restarted all the servers:  SQL server, WFE and APP servers but still cann't get this resolve.
    Services on all servers are running,  IIS - application pools are running.
    Can someone help with where that could be a problem or if there is a solution.
    Thanks in advance for your comments or advices.
    Swanl

    Please verify the followings:
    Make sure that from the SharePoint front end and application servers that you can ping your SQL server.
    Make sure that your Farm account has permission to the configuration database.
    Lastly verify that your database didn't for some reasons go into recovery mode.
    once everything is fine and you are still having issues, restart the SQL host service on the SQL server.
    Once the service is restarted you will need to reboot Central Admin and then your front end servers.
    In addition, as you built your farm inside the firewall, please disable the firwall, or create rules for SQL Server service in the firwall on SQL server.
    More information about creating rules in firewall, please refer to the following posts: http://social.technet.microsoft.com/Forums/en-US/c5d4d0d0-9a3b-4431-8150-17ccfbc6fb82/can-not-create-data-source-to-an-sql-server http://www.mssqltips.com/sqlservertip/1929/configure-windows-firewall-to-work-with-sql-server/
    Here is a similar post for you to take a look at: http://social.technet.microsoft.com/Forums/en-US/ea54e26c-1728-48d4-b2c5-2a3376a1082c/this-operation-can-be-performed-only-on-a-computer-that-is-joined-to-a-server-farm-by-users-who-have?forum=sharepointgeneral 
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • EPM V11.1.2.1 Perform 1st-time configuration of Shared Services database

    Hello,
    I installed EPM v11.1.2.1 but I could not configurate.
    On EPM configurator step Perform 1st-time configuration of Shared Services database option was disabled.
    I try to change vpd.properties file's name; but it did not work.
    Do you give me any suggestions?
    Thank you.
    ankist

    Have you had any previous versions on the machine, what OS is it.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • "Perform 1st-time configuration of Shared Services database" option disable

    Hi,
    Hyperion 11.1.2 shared services configuration “Perform 1st-time configuration of Shared Services database” option is disable
    I am going to do the configuration first time but Perform 1st-time configuration of Shared Services database” option is disabled.
    Please help here.
    Thanks
    Dharm

    Try starting the configurator from the command prompt with option -forceRegistry
    We were able to do it in v11.1.1.3... I think this can still be done with v11.1.2
    Thanks,
    Vijay

  • ORA-00001: unique constraint during "Configure Database Security Store for OIM Domain"

    Hi Guru's,
    I am following the below steps for OIM 11.1.2.1 with SOA 11.1.1.7 Installation and facing below error during step "Configure Database Security Store for OIM Domain".
    Installed Database 11.2.0.3
    Installed RCU (Here I used two versions.
         RCU 11.1.2   - Used IDAM prefix for (Metadata Services, OPSS, OIM)
         RCU 11.1.1.7 - Used SOA prefix for(Metadata Services,SOA Infrastructure, User Messaging service)
    Installed JDK 7 (Java 1.7)
    Installed WL 10.3.6 (MW_HOME-/u01/Middleware/fmw, WL_HOME=/u01/Middleware/fmw/wlserver_10.3)
    Installed FMW 11.1.2.1 for OIM. (ORACLE_HOME=Oracle_IDM1)
    Installed FMW 11.1.1.7 for SOA (ORACLE_HOME=Oracle_SOA1)
    WL Domain creation.  (Domain Name – idam_domain1)
    Configure Database Security Store for OIM Domain.
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (IDAM_OPSS.IDX_JPS_RDN_PDN) violated
    Also followed the below bug solution, but issue still occurs.
    Bug 16690836 : CONFIGURE DATABASE SECURITY STORE (CONFIGURESECURITYSTORE.PY) SCRIPT IS FAILING
    @ 1. Delete the Schemas using RCU.
    @ 2. Recreate the OAM schemas.
    @ 3. Reinstall the WLS and OAM software.
    @ 4. Run config.sh to create a new domain.
    @ 5. Run setDomainEnv.sh from user_projects/domains/<Domain_name>/bin
    @ 6. Run the configureSecurityStore.py from same window.
    Not sure if anyone tried with different steps that fixed the issue? Could you please help.
    Thanks
    VG

    Hi Gurus, I got the solution from Oracle. SOA 11.1.1.7.0 shouldn't be used with Identity Management 11.1.2.1.0(11GR1-PS1) version. Identity Management 11.1.2.1.0(11GR1-PS1) is bundled with SOA 11.1.1.6.0. When used this SOA version, Installation went smooth. Thanks VG

  • Different performance in different environments

    Hi
    I have two environments Database ( production and tests), in production My query execute work fine with good time, but
    in tests environment It is very slow. The Tables, indexes ..etc are same.
    What can I to get to DBA to look ?

    following are some basic checks ( which solve most common performance issues)
    --- Gather statics in the env that's slow or verify if statistics are recent
    --- Compare explain plan for sample queries and check if plan is different and if it is then work towards making it same.
    --- Compare both environments init parameters to make sure parameter values are comparable..
    And if problem is more broad like entire DB/application slow then different things like server configuration/load/memory etc should be verified. Application configuration and components should be verified. List is endless with different options like AWR/ADDM reports/statspack...

  • Installing Identity Center Database Schema (Oracle)

    Dear All,
    I would like to seek for some information about the installation of the Identity Center Database Schema. Based in the configuration document, after you have installed the database software, you may now proceed with the Database Schema for the Identity Center. I was being asked with the below questions once I initiate the mxmc-install command:
    1. Enter the Net Service Name
    2. Enter Password of the Oracle User
    3. Paswords of all default users for IC.
    Once I have provided all of this, I will received an error of ORA-12560: Protocol Adapter Error.
    As I have just followed the configuration manual, I am lost on why the installation is giving this error, I know that I only installed the Database Software and not the database.
    Based on the guide:
    Install the database system
    Install the Identity Center database schema
    Install the Java Runtime Environment
    Install the database client
    Install the JDBC drivers
    Install the Management Console
    Install the Runtime Components
    Install and configure SAP NetWeaver AS Java
    Install the Identity Management User Interface
    Post-installation: Configure the Java Runtime Environment
    Post-installation: Add the JDBC drivers to the CLASSPATH extension
    I am now in step 2. Please see system specifics:
    Operating System: Windows Server 2008 R2 Enterprise
    Database: Oracle 11.2.0.3
    Installed Memory (RAM): 12GB
    System Type: 64-Bit Operating System
    Can you please confirm if I need to install the Database first (Full database and not the Softwares only) Appreciate any help you can extend. Thanks a lot.
    Regards,
    Santi

    Hi Gurus,
    can any one please help with the steps for IDM 7.2 installation.we have O/S RHlinux and DB Oracle 11.2
    I have the following details with me (after going through the installation guides)
    I have already completed the installation of NW java stack (NW 7.4 standalone)required for the installation.
    form a standalone installation the installation guide provides the following steps:
    1. Install the database system.(Is this the Database syatem required for the NetWeaver AS Java?) if yes we have installed the database while installing java stack is that fine?
    we did not use scripts mentioned in the database installation guide for IDM 7.2
    2. Install the Identity Center database schema.(after installing the database syatem do we need to create a separate schema specific to IDM ? how can we do that?)
    3. Install the Java Runtime Environment.(What are these variables?) we have java version "1.6.0_34" ,OpenJDK Runtime Environment (IcedTea6 1.13.6) (rhel-1.13.6.1.el6_6-x86_64)
    4. Install the database client.(Is this the same DB client installation that is required while installing Netweaver java ?)
    5. Install the JDBC drivers.
    6. Install the Management Console.
    7. Install the Runtime Components.
    8. Install and configure SAP NetWeaver AS Java. (we have completed the installation of Netweaver java 7.4)
    9. Install the Identity Management User Interface.
    10. Post-installation: Configure the Java Runtime Environment.
    11. Post-installation: Add the JDBC drivers to the CLASSPATH extension.
    went through the guide to understand the following steps,but bit confused about the sequence and process to be followed,please share some idea on how can we perform steps 5,6,9,10 and 11.
    Regards
    Priya

  • Sharepoint server 2013 configuration issue - failed to create configuration database

    Hi All,
    I have installed the SharePoint server 2013. After installing the SharePoint products, the configuration stops at failure of creating configuration database.
    Some system configuration & info:
    - 1 Domain controller server run Active Directory services on Windows server 2008 R2 SP1 (PC1 with name DC.Brainfiniti.com)
    - 1 Server which is used for installing Sharepoint server 2013 and MS SQL server 2008 R2 SP1 (PC2 with name App.Brainfiniti.com)
    - All of PCs were satisfied the requirement of Sharepoint server 2013
    - Firewall turned off & No antivirus tool was installed.
    - During installing of Sharepoint, choose "Complete" option: Farm mode and use SQL Server instead of SQL Express.
    - During configuration, created a new farm with a domain user account.
    - Use domain account to log on and install, configure in Sharepoint & SQL server (PC2)
    ATTEMPTS:
    1. Tried install and set up all of steps with just 1 account - domain administrator.
    2. Tried with separate domain account:
    - SQL Service account use for:
    + Install SQL server 2008
    + Connect all SQL services
    + Admin for SQL server
    - Setup account use for:
    + Member of local administrator group in PC2
    + Install Sharepoint
    + Run Configuration wizard
    + Was granted permission in SQL database: dbcreator, securityadmin, sysadmin and deselect serveradmin role.
    + Was choose for the database account in configuration database step
    Also tried with SQL service account in this step.
    3. Tried with Standalone mode for Sharepoint installing
    4. Trie with domain name: Brainfiniti.local
    5. Tried with some another solution from topic relate to database configuration in our community but not successful.
    But all attempts are failed at this configuration database step :'(
    Please correct me if I am going wrong by missing something or do I need to start/install some services.
    Screenshot Attached
    Sorry! Cannot add screenshot because my account is still not verified. Will add later.
    LOG ENTRY:
    01/23/2013 06:58:28  1  INF        Entering function CreateCentralAdministrationSiteForm.CreateCentralAdministrationSiteFormInitializeBeforeShow
    01/23/2013 06:58:28  1  INF          Found a task by the name of adminvs in the task collection
    01/23/2013 06:58:28  1  INF          Entering function TaskCommon.GenerateRandomUnUsedPort
    01/23/2013 06:58:28  1  INF            Entering function TaskCommon.EnsureIIs
    01/23/2013 06:58:28  1  INF              Entering function PreRequisiteChecks.IsIisInstalled
    01/23/2013 06:58:28  1  INF                Entering function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF                  Version of IIS is 7
    01/23/2013 06:58:28  1  INF                Leaving function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF              Leaving function PreRequisiteChecks.IsIisInstalled
    01/23/2013 06:58:28  1  INF              Entering function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF                Version of IIS is 7
    01/23/2013 06:58:28  1  INF              Leaving function PreRequisiteChecks.IsRightVersionOfIis
    01/23/2013 06:58:28  1  INF              Entering function ServiceHelper.Start
    01/23/2013 06:58:28  1  INF                Trying to start service W3SVC and waiting 180 sec to do so
    01/23/2013 06:58:28  1  INF                service W3SVC is Running, nothing to do
    01/23/2013 06:58:28  1  INF                starting service W3SVC (it may already be started)
    01/23/2013 06:58:28  1  INF              Leaving function ServiceHelper.Start
    01/23/2013 06:58:28  1  INF            Leaving function TaskCommon.EnsureIIs
    01/23/2013 06:58:28  1  INF            Trying to see if port 40993 is free on machine APP.  Min port we will try is 1024, Max port we will try is 49151
    01/23/2013 06:58:30  1  INF            A SocketException was thrown with
    SocketError ConnectionRefused
    01/23/2013 06:58:30  1  INF            Connect has been refused for port 40993, so we will consider this a free port
    01/23/2013 06:58:30  1  INF            Have not found a free port yet.  Number of tries is 1.  Min port we will try is 1024, Max port we will try is 49151
    01/23/2013 06:58:30  1  INF            Adding port 40993 to the exclusion list so it is not chosen again during this run
    01/23/2013 06:58:30  1  INF          Leaving function TaskCommon.GenerateRandomUnUsedPort
    01/23/2013 06:58:30  1  INF        Leaving function CreateCentralAdministrationSiteForm.CreateCentralAdministrationSiteFormInitializeBeforeShow
    I just post a part of its logs which contain "error" string because it's too long.
    According this log, there is a error in port connection but i've turned firewall off ???
    Please help me with this mix up :'(
    p/s: sorry for my English!
    Thanks,
    Hien Hoang

    Below is the logs entry with "ERR" marked line:
    01/23/2013 07:03:17  9  INF                    Now joining to farm at server app.brainfiniti.com database SharePoint_Config
    01/23/2013 07:04:12  9  ERR                    Task configdb has failed with an unknown exception
    01/23/2013 07:04:12  9  ERR                    Exception: System.Security.Principal.IdentityNotMappedException: Some or all identity references could not
    be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                      Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                        Resource id to be retrieved is ExceptionInfo for language English (United States)
    01/23/2013 07:04:12  9  INF                        Resource retrieved id ExceptionInfo is An exception of type {0} was thrown. 
    Additional exception information: {1}
    01/23/2013 07:04:12  9  INF                      Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                    Leaving function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  INF                      Entering function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                        Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                          Resource id to be retrieved is ExceptionInfo for language English (United
    States)
    01/23/2013 07:04:12  9  INF                          Resource retrieved id ExceptionInfo is An exception of type {0} was thrown. 
    Additional exception information: {1}
    01/23/2013 07:04:12  9  INF                        Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                      Leaving function Common.BuildExceptionMessage
    01/23/2013 07:04:12  9  INF                    Leaving function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  ERR                    An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception
    information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                    Entering function Common.BuildExceptionInformation
    01/23/2013 07:04:12  9  INF                    Entering function TaskBase.OnTaskStop
    01/23/2013 07:04:12  9  INF                      Creating the OnTaskStop event for task configdb
    01/23/2013 07:04:12  9  ERR                      Task configdb has failed
    01/23/2013 07:04:12  9  INF                      friendlyMessage for task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  9  INF                      debugMessage for task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  9  INF                      Entering function TaskBase.FireTaskStateChanged
    01/23/2013 07:04:12  9  INF                        Firing the OnTaskStateChanged event for task configdb
    01/23/2013 07:04:12  9  INF                        Entering function TaskDriver.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                            Resource id to be retrieved is ConfigurationDatabaseTaskDisplayName
    for language English (United States)
    01/23/2013 07:04:12  9  INF                            Resource retrieved id ConfigurationDatabaseTaskDisplayName
    is configuration database
    01/23/2013 07:04:12  9  INF                          Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  9  INF                          Received an TaskStateEventHandler event.  task:configdb TaskBase.State:stopped
    01/23/2013 07:04:12  9  INF                          Entering function TasksQueue.IncrementTaskFailed
    01/23/2013 07:04:12  9  INF                            Incremented the number of tasks failed to 1
    01/23/2013 07:04:12  9  INF                          Leaving function TasksQueue.IncrementTaskFailed
    01/23/2013 07:04:12  9  INF                          Task configdb has stopped and failed.  Total failed is now 1
    01/23/2013 07:04:12  9  INF                        Leaving function TaskDriver.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                        Entering function PsconfigBaseForm.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Invoking the UI thread with the task state chagne event
    01/23/2013 07:04:12  1  INF                          Entering function ConfigurationProgressForm.InvokeTaskStateEventHandler
    01/23/2013 07:04:12  1  INF                            Received an TaskStateEventHandler event.  task:configdb
    TaskBase.State:stopped TaskBase.TaskResultconfigdb
    01/23/2013 07:04:12  1  INF                            Acquiring the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Releasing the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Acquiring the reader lock to retrieve the state
    01/23/2013 07:04:12  1  INF                            Releasing the reader lock to retrieve the state
    01/23/2013 07:04:12  1  ERR                            Task configdb has stopped and failed.  Total failed
    is now 1
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    disconnect
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter disconnect in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    connect
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter connect in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function Command.this[string key]
    01/23/2013 07:04:12  1  INF                              Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                                Found value in collection for key
    create
    01/23/2013 07:04:12  1  INF                              Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  1  INF                              Found parameter create in collection
    01/23/2013 07:04:12  1  INF                            Leaving function Command.this[string key]
    01/23/2013 07:04:12  1  INF                            Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  1  INF                              Resource id to be retrieved is ConfigurationDatabaseTaskCreateFailConfigDisplayLabel
    for language English (United States)
    01/23/2013 07:04:12  1  INF                              Resource retrieved id ConfigurationDatabaseTaskCreateFailConfigDisplayLabel
    is Failed to create the configuration database.
    01/23/2013 07:04:12  1  INF                            Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  1  INF                            Updating the task label below the progress bar Failed to
    create the configuration database.
    01/23/2013 07:04:12  1  INF                            Entering function FormParameterCollection.Add
    01/23/2013 07:04:12  1  INF                            Leaving function FormParameterCollection.Add
    01/23/2013 07:04:12  1  INF                            Last message from task configdb is An exception of type System.Security.Principal.IdentityNotMappedException
    was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Not running in high contrast, so we will paint the background
    with our trademarked image
    01/23/2013 07:04:12  1  INF                            Updating the task additional notification information below
    the progress bar An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception information: Some or all identity references could not be translated.
    01/23/2013 07:04:12  1  INF                          Leaving function ConfigurationProgressForm.InvokeTaskStateEventHandler
    01/23/2013 07:04:12  9  INF                          Sleeping an extra 1 ms so things don't go too fast for the user for this
    task
    01/23/2013 07:04:12  1  INF                          Not running in high contrast, so we will paint the background with our
    trademarked image
    01/23/2013 07:04:12  9  INF                        Leaving function PsconfigBaseForm.TaskStateEventHandler
    01/23/2013 07:04:12  9  INF                      Leaving function TaskBase.FireTaskStateChanged
    01/23/2013 07:04:12  9  INF                    Leaving function TaskBase.OnTaskStop
    01/23/2013 07:04:12  9  INF                  Leaving function TaskThread.ExecuteTask
    01/23/2013 07:04:12  4  INF                  Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  INF                    Resource id to be retrieved is ConfigurationDatabaseTaskDisplayName for language English (United States)
    01/23/2013 07:04:12  4  INF                    Resource retrieved id ConfigurationDatabaseTaskDisplayName is configuration database
    01/23/2013 07:04:12  4  INF                  Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  ERR                  Task configuration database failed, so stopping execution of the engine
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key disconnect
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter disconnect in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key connect
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter connect in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function Command.this[string key]
    01/23/2013 07:04:12  4  INF                    Entering function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                      Found value in collection for key create
    01/23/2013 07:04:12  4  INF                    Leaving function CommandCollectionBase.Get
    01/23/2013 07:04:12  4  INF                    Found parameter create in collection
    01/23/2013 07:04:12  4  INF                  Leaving function Command.this[string key]
    01/23/2013 07:04:12  4  INF                  Entering function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  INF                    Resource id to be retrieved is ConfigurationDatabaseTaskCreateFailConfigDisplayLabel for language English
    (United States)
    01/23/2013 07:04:12  4  INF                    Resource retrieved id ConfigurationDatabaseTaskCreateFailConfigDisplayLabel is Failed to create the configuration
    database.
    01/23/2013 07:04:12  4  INF                  Leaving function StringResourceManager.GetResourceString
    01/23/2013 07:04:12  4  ERR                  Failed to create the configuration database.
    An exception of type System.Security.Principal.IdentityNotMappedException was thrown.  Additional exception information: Some or all identity references could not be translated.
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
       at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
       at System.Security.Principal.NTAccount.Translate(Type targetType)
       at System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(AccessControlModification modification, AccessRule rule, Boolean& modified)
       at System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(AccessRule rule)
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceCertificate.ProvisionLocal()
       at Microsoft.SharePoint.Administration.Claims.SPSecurityTokenServiceApplication.ProvisionLocal(SPServiceInstance serviceInstance)
       at Microsoft.SharePoint.Administration.SPIisWebServiceInstance.Provision()
       at Microsoft.SharePoint.Administration.SPFarm.Join(Boolean skipRegisterAsDistributedCacheHost)
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
       at Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
       at Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
    01/23/2013 07:04:12  4  INF                  Entering function TaskDriver.NotifyTaskSummary

  • Performance with MySQL and Database connectivity toolbox

    Hi!
    I'm having quite some problems with the performance of MySQL and Database connectivity toolbox. However, I'm very happy with the ease of using database connectivity toolbox. The background is:
    I have 61 variables (ints and floats) which I would like to save in the MySQL-database. This is no problem, however, the loop time increases from 8ms to 50ms when using the database. I have concluded that it has to do with the DB Tools Insert Data.vi and I think that I have some kind of performance issue with this VI. The CPU never reach more the 15% of its maximum performance. I use a default setup and connect through ODBC.
    My questions are:
    1. I would like to save 61 variables each 8-10ms, is this impossible using this solution?
    2. Is there any way of increasing the performance of the DB Tools Insert Data.vi or use any other VI?
    3. Is there any way of adjusting the MySQL setup to achieve better performance?
    Thank you very much for your time.
    Regards,
    Mattias

    First of all, thank you very much for your time. All of you have been really good support to me.
    >> Is your database on a different computer?  Does your loop execute 61 times? 
    Database is on the same computer as the MySQL server.
    The loop saves 61 values at once to the database, in one SQL-statement.
    I have now added the front panel and block diagram for my test-VI. I have implemented the queue system and separate loops for producer and consumer. However, since the queue is building up faster then the consumer loop consumes values, the queue is building up quite fast and the disc starts working.
    The test database table that I add data to is created by a simple:
    create table test(aa int, bb char(15));
    ...I'm sure that this can be improved in some way.
    I always open and close the connection to the database "outside the loop". However, it still takes some 40-50 ms to save the data to the database table - so, unfortunatly no progress to far. I currently just want to save the data.
    Any more advise will be gratefully accepted.
    Regards,
    Mattias
    Message Edited by mattias@hv on 10-23-2007 07:50 AM
    Attachments:
    front panel 2.JPG ‏101 KB
    block diagram.JPG ‏135 KB

  • Unable to Configure Database in ConsoleOne

    PROBLEM
    I can navigate to Tools->Zenworks Inventory->Configure Database, browse to
    and select {server_name}_invDatabase. However, when I click OK the mouse
    pointer just turns into an hourglass. The window wont close and accept
    the change. You end up clicking Cancel with the hourglass to close the
    window. You can right click on the {server_name}_invDatabase object in
    eDir and choose Zenworks Inventory->Configure DB but when you attempt to do
    a query or something a window pops up prompting you to first configure your
    database.
    SYSTEM
    Netware 6.5 SP5.
    ConsoleOne 1.3.6e with Zenworks 6.5.2 snapins (after upgrade, see below)
    We were running Zenworks for Desktops 4 until I upgraded to Zenworks 6.5
    SP1 about a year to year and a half ago. Some time after that the
    Inventory functionality stopped. Im now trying to fix it.
    ATTEMPTS TO FIX
    1. I first applied Support Pack 2 for Zenworks 6.5. That didnt fix my
    problem.
    2. I then tried reinstalling the Inventory Service off the Zenworks 6.5
    with SP1 CD, starting the Inventory service, and then reapplying SP2. That
    didnt fix it.
    3. I have followed the steps in Novell TID # 10097151. I actually had been
    wondering which object was the correct one, if it was Inventory
    Service_{server_name} or {server_name}_ZenInvService. After following
    these steps I am seeing computers getting inventoried on the Inventory
    Service console screen. That wasnt happening before. So this fixed one
    of my problems but not all of them.
    4. I then followed the steps in Novell TID #10097366. I confirmed the
    usernames were set as shown and retyped the passwords. I even restarted
    the Sybase (ASA) and Zen Inventory services at the console but that didnt
    fix it.
    5. I found this thread
    (http://groups.google.com/group/novel...b931657601b01a)
    in which other users were dealing with the same problem. I found an older
    copy of InventorySnapins.jar as specified and tried it but that didnt fix it.
    What can I try next? I really want to use Zenworks to hunt for old apps on
    my network that were not using anymore.
    And in a side note, where *do* you configure Zenworks to scan a workstation
    for applications? The software scan tab of the workstation inventory
    policy has a footnote saying these settings only apply to ZfD 3.2, 4, and
    4.01. I checked the ZfD 6.5 SP2 manual and it says about the same thing
    verbatim. However, neither one includes a helpful sentence telling you
    *where* to set this if you are using Zenworks 6.5 or even referring to a
    different chapter or section of the manual. Does Zenworks just assume that
    if you want to inventory the hardware that you want the software
    inventoried as well and just do it automatically?
    Thanks in advance for your help!
    Matthew

    I see. It seems there was a change in assumptions when Novell moved from
    Zenworks 4 to 6.5. Previously it seems there was the assumption that since
    desktop computers weren't that powerful it might overwhelm them to scan for
    both hardware and software. Therefore, these options were put next to each
    other so you could choose. In Zenworks 6.5 the assumption is that, since
    client computers have become more powerful, if you're scanning the client
    hardware you're going to want to scan the software as well. Therefore they
    took away the use of the software tab and made it less obvious on how to
    disable scanning.
    Everything seems to be working for me now on Zenworks Inventory. It's been
    inventorying for about 48 hours now and has updated most of my stale
    records. I want to thank Shaun for all the posts he replies to on the
    Zenworks newsgroups. I've seen his replies all over the place as I was
    searching through Google Groups trying to fix this and they helped me fix my
    problems.
    Matthew

  • Cannot connect to configuration database - share point services 3.0

    Hello,
    Im running a SharePoint Service 3.0. Databases are on a SQL 2005 server.
    Yesterday I wanted to change the user identity for the IIS application pools. I also added the new user to access the databases. After the change I got the message that I couldnt connect to the configuration database when I opened the SharePoint Site/Central
    Administration.
    Now I wanted to change the user identity for the application pools back to the old identity - for this I had to change the users password. After the change I still get the message and dont know what to do.
    I did this - https://support2.microsoft.com/kb/934838/en-us ; http://support2.microsoft.com/kb/823287/en-us
    Thanks in advance for your help,
    Kevin

    Check if you are able to connect to SQL server using management studio. 
    GO to c:\ or d:\ create a text file. Then rename the extension of file from .txt to udl. example SQL.udl
    Now open this SQL.udl and type the server name. try to connect to SQL server. 
    If you face issue with .udl then there is some network issue between SQL and sharepoint. 
    If UDL works fine then there is some issue with either config db or sharepoint server.
    Check if sharepoint user is not locked and firewall is disabled on both servers
    If this helped you resolve your issue, please mark it Answered

  • How do web front ends find the configuration database (moving whole farm to new AD forest)

    We are exploring, as a possible course of action, moving our SharePoint 2007 medium farm to a different Active Directory forest (2008). There is a two way transitive trust between the source and target domains.
    I have established that with such a trust it's possible to add content databases on a SQL instance in another forest, so moving content is not a big issue; we'd stand up new instances and move them: the user accounts are almost all in the target domain anyway.
    However, we have a good deal of customization, including a third-party application that no longer has any support and has historically been appallingly difficult to upgrade/install fresh.
    How do web front end servers find the SQL instance containing the configuration database? If the farm credentials had been previously changed to an account in the target domain, all services stopped and the configuration database moved to a new instance
    with a DNS alias, would the database appear to be in the same location when SQL and SharePoint services were started on (logically) moved web front ends?

    Here is more or less the high-level process for SharePoint 2007:
    Mid- to high-level steps.
    0. Full farm backup
    1. Move users to new domain (in AD). Use stsadm -o migrateuser to migrate the old domain accounts to the new ones in SharePoint
    2. Move service accounts to new domain, or create new service accounts
    3. Update the farm to use the service accounts in the new domain
    stsadm -o updatefarmcredentials (service accounts)
    stsadm -o spsearch -farmserviceaccount
    stsadm -o spsearch -farmcontentaccessaccount
    stsadm -o editssp -ssplogin (for each ssp)
    stsadm -o osearch -farmserviceaccount
    SSO and any other remaining service accounts (CA -> Ops -> Service Accounts)
    Default content access account (SSP -> Search Settings -> Default content access account)
    Customizations (if there are service accounts associated with these)
    3.5 Manual steps
    Application pool accounts
    Update permissions for SQL Logins to make sure the new accounts match the permissions for the old accounts
    Add the appropriate new accounts to the DCOM IIS WAMREG Admin Service
    4. Update the SQL Server service accounts. If SQL Server is shared with other applications you'll want to update the SQL Logins for these other applications as necessary and the SQL Server service accounts (DB Engine, DB Agent, Reporting Services, etc.). Might
    not be necessary if this has already been done or if the SQL server is not changing domains. 
    5. Shut down all services on all servers in the farm (this includes SQL if you are moving to the new domain).
    6. Change domain membership of all farm servers, reboot or perhaps shutdown and bring back up in the following order:
    1. SQL. Verify SQL Server is running and accessible. Check event logs. Resolve any issues.
    2. Central Admin server. Verify CA is accessible, check event logs. Web apps and some services may not be available if they are on servers that are currently turned off. Don't worry about these (yet).
    3. Application servers, search servers, index, query, other. It's likely some or all of the WFEs will go on at this step. Verify services are accessible as expected. Check event logs. Resolve issues.
    4. Any remaining WFEs. Wash, rinse, repeat.
    7. Assuming everything is running as expected, users can access the sites, the sky did not fall, etc. take a full farm backup.
    Hey look, here are some low-level steps too.
    # updates the account used to run the CA app pool and the timer service
    # must be run on the server that hosts CA
    stsadm -o updatefarmcredentials -identitytype configurableid -userlogin NEWDOMAIN\farm_service_account -password Password123
    # spsearch
    stsadm -o spsearch -farmserviceaccount NEWDOMAIN\search_service_account -farmservicepassword Password123 -farmcontentaccessaccount NEWDOMAIN\crawl_service_account -farmcontentaccesspassword Password123
    # osearch
    stsadm -o osearch -farmcontactemail [email protected] -farmserviceaccount NEWDOMAIN\search_service_account -farmservicepassword Password123
    # ssp service accounts
    stsadm -o editssp -title SSP -ssplogin NEWDOMAIN\ssp_service_account -ssppassword Password123
    # Manual steps
    SSP Admin -> Search Settings -> Default Content Access Account
    Application pools: CA -> Operations -> Service Accounts -> Web Application Pool (or use gl-updateapppoolaccount if available)
    iisreset /noforce
    Copy SQL permissions to the new accounts. Not sure why this doesn't happen.
    SSP Service Account
    Farm Account
    Setup Account (not copied because it doesn't own anything, just used to kick off the DB for the other accounts)
    Search Service
    Add accounts to DCOM not sure why this didn't happen
    Component Services -> Computer -> My Computer -> DCOM Config -> IIS WAMREG Service
    Farm account
    Application pool accounts
    Search Service
    SSP Service
    SSP Admin
    Then the fun part. Move the server into the new domain.
    Check for AAMs to see if they reference the current domain. If so, change to the new one.
    Stop all SP services. Join new domain.
    The computer name is a netbios name in SP, this should be painless.
    Some general notes from my experience doing this:
    1. There is no way to update application pool identities with stsadm (I haven't explored using Powershell). You have to go through CA -> Service Accounts to update these.
    2. Some SQL logins and permissions were not created. I compared the permissions before to the permissions after and copied the ones that didn't transfer. This resolved all database access issues.
    3. Had to grant permissions for the service accounts in the DCOM configuration for the IIS WAMREG admin service. I expected this to happen automatically but was not surprised given the history of CLSID 61738644-F196-11D0-9953-00C04FD919C1.

  • Windows Azure Pack setup - 500 Internal Server Error - failed to configure databases and services

    Hi,
    I am trying to setup the Windows Azure pack to use the site to configure the Service bus 1.1 installation. When I try to configure the Windows Azure Pack I get the following error:
    Admin Authentication Site
    500 Internal Server Error - Failed to configure databases and services: Object reference not set to an instance of an object.
    I'm not sure where the logs are to see what is causing this error. I have tried running as admin, running as a different user with no luck.
    thanks,
    Georgi
    Georgi

    Here's what I'm getting for this error:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite/Operational
    Source:        Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite
    Date:          3/27/2014 12:52:03 PM
    Event ID:      103
    Task Category: (65431)
    Level:         Error
    Keywords:      None
    User:          CLINICALSYSTEMS\Administrator
    Computer:      SERVER-PC.clinicalsystems.com
    Description:
    ##### Application_Error: Exception=System.Web.HttpException (0x80004005): Failed to configure databases and services: Object reference not set to an instance of an object. ---> System.Management.Automation.CmdletInvocationException: Object reference not
    set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.AddUserToGroup(GroupPrincipal group, UserPrincipal user)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureDefaultTrusts()
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureClaimSecurity(Hashtable settings)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureCore(Hashtable settings)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.FeatureConfigurer.Configure(Hashtable settings)
       at Microsoft.WindowsAzure.Server.PowerShell.Common.BaseCmdlet.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
       --- End of inner exception stack trace ---
       at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
       at Microsoft.MgmtSvc.Config.Controllers.PowerShell.PSClient.RunCommand(Command command)
       at Microsoft.MgmtSvc.Config.Controllers.PowerShell.ConfigurationPSClient.InitializeFeature(String name, Hashtable settings)
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<>c__DisplayClass3.<ConfigureFeature>b__0()
       at System.Threading.Tasks.Task`1.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<ConfigureFeature>d__5.MoveNext()
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<ConfigureFeature>d__5.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at lambda_method(Closure , Task )
       at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3f.<BeginInvokeAsynchronousActionMethod>b__3e(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<>c__DisplayClass39.<BeginInvokeActionMethodWithFilters>b__33()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<BeginInvokeActionMethodWithFilters>b__36(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<>c__DisplayClass2a.<BeginInvokeAction>b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult)
       at System.Web.Mvc.Controller.<>c__DisplayClass1d.<BeginExecuteCore>b__18(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.Mvc.MvcHandler.<>c__DisplayClass8.<BeginProcessRequest>b__3(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.HttpApplication.CallHandlerExecutionStep.OnAsyncHandlerCompletion(IAsyncResult ar).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite" Guid="{1F742CC8-BDAA-56B6-A4B8-49F946D19CD1}" />
    <EventID>103</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>65431</Task>
    <Opcode>0</Opcode>
    <Keywords>0x0</Keywords>
    <TimeCreated SystemTime="2014-03-27T16:52:03.223741300Z" />
    <EventRecordID>111</EventRecordID>
    <Correlation />
    <Execution ProcessID="8068" ThreadID="7680" />
    <Channel>Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite/Operational</Channel>
    <Computer>SERVER-PC.clinicalsystems.com</Computer>
    <Security UserID="S-1-5-21-3021050346-1670805799-1320812125-500" />
    </System>
    <EventData>
    <Data Name="exceptionInfo">System.Web.HttpException (0x80004005): Failed to configure databases and services: Object reference not set to an instance of an object. ---&gt; System.Management.Automation.CmdletInvocationException: Object reference not set to an instance of an object. ---&gt; System.NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.AddUserToGroup(GroupPrincipal group, UserPrincipal user)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureDefaultTrusts()
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureClaimSecurity(Hashtable settings)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureCore(Hashtable settings)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.FeatureConfigurer.Configure(Hashtable settings)
    at Microsoft.WindowsAzure.Server.PowerShell.Common.BaseCmdlet.ProcessRecord()
    at System.Management.Automation.CommandProcessor.ProcessRecord()
    --- End of inner exception stack trace ---
    at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
    at Microsoft.MgmtSvc.Config.Controllers.PowerShell.PSClient.RunCommand(Command command)
    at Microsoft.MgmtSvc.Config.Controllers.PowerShell.ConfigurationPSClient.InitializeFeature(String name, Hashtable settings)
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;&gt;c__DisplayClass3.&lt;ConfigureFeature&gt;b__0()
    at System.Threading.Tasks.Task`1.InnerInvoke()
    at System.Threading.Tasks.Task.Execute()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;ConfigureFeature&gt;d__5.MoveNext()
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;ConfigureFeature&gt;d__5.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at lambda_method(Closure , Task )
    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass3f.&lt;BeginInvokeAsynchronousActionMethod&gt;b__3e(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;&gt;c__DisplayClass39.&lt;BeginInvokeActionMethodWithFilters&gt;b__33()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;BeginInvokeActionMethodWithFilters&gt;b__36(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;&gt;c__DisplayClass2a.&lt;BeginInvokeAction&gt;b__20()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;BeginInvokeAction&gt;b__22(IAsyncResult asyncResult)
    at System.Web.Mvc.Controller.&lt;&gt;c__DisplayClass1d.&lt;BeginExecuteCore&gt;b__18(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.Mvc.MvcHandler.&lt;&gt;c__DisplayClass8.&lt;BeginProcessRequest&gt;b__3(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.HttpApplication.CallHandlerExecutionStep.OnAsyncHandlerCompletion(IAsyncResult ar)</Data>
    </EventData>
    </Event>
    Kori Francis Lead Software Developer Clinical Support Systems, Inc.

  • GDS Performance in a Cluster - Database or Shared File Folder

    Has anyone seen any significant performance differences between Windows ES4 clusters using the DB GDS and File Folder GDS?

    I remember I learnt these suggestions from LC documentation.
    For best performance, configure file system as GDS.
    For easy backup, configure database as GDS.
    Thanks,
    Nith

Maybe you are looking for

  • Internet crashes every day

    my internet service seems to drop out every day. I'll be reading the New York Times online, say, without an issue and when I click to go to page two, I get a "can't connect to the internet" warning. I can go back to pages I've already seen, but anyth

  • Is it possible to set the NLS_DATE_FORMAT for my sessions at apex.oracle.co

    Hi, Is this possible? I'm in the UK and getting the invalid month error when storing dates. Thanks in advance Bryan

  • Scale content when changing slide size

    If I resize my keynote slide size to a different aspect ratio, is there a way to have it scale all the content? I have hundreds of Illustrator files that I have imported into keynote (by drag/drop and it seems to rasterized the image). Making the sli

  • Changing field catalog of ALV grid after first display (was: "ALV GRID")

    Dear experts! I am using CL_GUI_ALV_GRID to display an ALV, whose fieldcatalog has 5 fields (FIELD1, FIELD2, FIELD3, FIELD4 and FIELD5). I am setting "NO_OUT = 'X' " to the fields FIELD3 and FIELD5 in the fieldcatalog before call the method SET_TABLE

  • UCCX "The ID you entered was not found"

           I wanted to know can someone tell me how do I add a user to be able to log into the supervior desktop software.        He can log into the agent software fine but I was told that I need to add the user to the supervisors group. I've never