Install webdispatcher and and install webdispatcher as a service

Experts:
We always do both at the same time, i.e.install webdispatcher and and install webdispatcher as a service.
However, what is the reason to do it in 2 steps? Why it cannot be done the same way as NW700: the service
is created during the install of the instance?
Thanks a lot!

Hi Christy,
It depends on How you are installing WebDispatcher.
1). If you use BootStrap method, or just uncar wdispadmin.sar file then yes you have to install WebDispatcher and service as two steps because this is manual installation.
Where as, if you use SAPINST, it will take care of Installation of WebDispatcher and Service, though it two steps it merges to one using SAPINST.
Thank,s
Sravanthi

Similar Messages

  • Itunes wont open and when re-installed received this msg: Service Apple mob device failed to start.  You have insufficent privileges to start system svc.  Help?

    Itunes wont open and when re-installed received this msg: Service Apple mob device failed to start.  You have insufficent privileges to start system svc.  Help?

    Download Itunes from Apple.com, not from within Itunes.
    Redo the install, following the below procedure.   However, when you re-install Itunes,  right click and run the install as administrator.   For Win 7, you have to hold down the cntrl and shift keys when you right click and then "run as administrator" will be an option.
    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Vista, Win 7 & later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes

  • Apparently a recent update did not install correctly and we get a message: Service (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start system services. How do we fix?

    Apparently a recent update did not install correctly and we get a message: Service (Apple Mobile Device) failed to start. Verify that you have sufficient privileges to start systen services, How do we fix this?

    Solving the iTunes Installation Problems in Windows
    1. Apple has posted their solution here: iTunes 11.1.4 for Windows- Unable to install or open - MSVCR80 issue.
    2. If the Apple article does not fully resolve the problem for you, then try Troubleshooting issues with iTunes for Windows updates - MSVCR80.

  • Udate Tomcat Version and install it as a service

    Hi,
    I want to update in my Essbase Installation (Database: 6.5.3, Deployment Service 7.1.00, Tomcat 4.1.30) only the Tomcat Server to Version 4.1.37 and install it as a service.
    Is there a Installation Guide how to do this? I tried different things but it doesn't work!
    Thanks Marcus

    Here is a script we use. Note: The ARBORPATH must be set to the Essbase dlls in the eds subdirectory structure. This may be a problem if you have Essbase 6.5.3 server running on the same machine. There are some versions of Tomcat that allow you to set environment variables for use by the service; I believe Tomcat 5.5.23 is a good version for that. Tomcat 5.5.26 has a bug that truncates request streams at 8K and should not be used (https://issues.apache.org/bugzilla/show_bug.cgi?id=44494)
    Script below:
    @REM Modified by Tim Tow, Applied OLAP, Inc. on 9.12.2005 to support running EDS within Tomcat with CSS.
    @REM This script will install Tomcat to support both the EDS and the ActiveOLAP servlets
    @REM running as a windows service. Note: the service that is installed is set to 'Automatic'
    @REM startup, the that startup doesn't take effect until you reboot. You may start the service
    @REM manually until you reboot.
    @REM change these parameters to fit your needs
    @SET SERVICE_NAME="Essbase Deployment Services"
    @SET HYPERION_HOME=C:\Hyperion
    @SET EDS_VERSION=7.1.3
    @SET EDS_HOME=%HYPERION_HOME%\eds\%EDS_VERSION%
    @SET EDS_LIB=%EDS_HOME%\lib
    @SET HYPERION_COMMON=%HYPERION_HOME%\common
    @SET JAVA_HOME=%HYPERION_COMMON%\JDK\Sun\1.4.2
    @SET CATALINA_HOME=%HYPERION_COMMON%\appServers\Tomcat\4.1.30
    @SET CATALINA_BASE=%EDS_HOME%\deployments\Tomcat\4.1.30
    @SET CATALINA_JARS=%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_HOME%\common\lib\servlet.jar
    @SET EDS_JARS=%EDS_HOME%\lib\ess_japi.jar;%EDS_HOME%\lib\ess_es_server.jar
    @SET J2EE_JARS=%EDS_HOME%\external\j2ee\activation.jar;%EDS_HOME%\external\j2ee\mail.jar
    @SET SQL_JARS=%EDS_HOME%\external\mysql-connector-java-3.0.8-stable-bin.jar
    @SET CSS_JARS=%EDS_HOME%\external\css\css-2_7_0.jar;%EDS_HOME%\external\css\jdom.jar;%EDS_HOME%\external\css\log4j-1.2.7.jar
    @SET MAXL_JARS=%EDS_HOME%\external\jmaxl.jar
    @SET START_MEMORY=64m
    @SET MAX_MEMORY=512m
    @REM don't change these
    @SET ARBORPATH=%EDS_HOME%\essbase
    @SET PATH=%ARBORPATH%\bin;%EDS_HOME%\bin;%EDS_HOME%;%JAVA_HOME%;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin\server;
    @SET TOMCAT_JVM="%JAVA_HOME%\jre\bin\client\jvm.dll"
    @SET TOMCAT_CLASSPATH=%CATALINA_JARS%;%EDS_JARS%;%J2EE_JARS%;%SQL_JARS%;%CSS_JARS%;%MAXL_JARS%
    @SET TOMCAT_ENDORSED=%CATALINA_HOME%\common\endorsed
    @SET TOMCAT_LOG=%CATALINA_HOME%\logs\stdout.log
    @SET TOMCAT_ERR_LOG=%CATALINA_HOME%\logs\stdout.log
    @ECHO.
    @ECHO Installing the %SERVICE_NAME% service...
    @ECHO.
    %CATALINA_HOME%\bin\tomcat.exe -install %SERVICE_NAME% %TOMCAT_JVM% -server -Xms%START_MEMORY% -Xmx%MAX_MEMORY% -Djava.class.path=%TOMCAT_CLASSPATH% -Djava.endorsed.dirs=%TOMCAT_ENDORSED% -Dcatalina.home=%CATALINA_HOME% -Dcatalina.base=%CATALINA_BASE% -start org.apache.catalina.startup.BootstrapService -params start -stop org.apache.catalina.startup.BootstrapService -params stop -out %TOMCAT_LOG% -err %TOMCAT_ERR_LOG% -path %PATH%
    @ECHO.
    @ECHO.
    @ECHO This machine must have the ARBORPATH environment variable set to "%ARBORPATH%" for the service to function properly.
    @ECHO.
    @ECHO.
    @pause
    Tim Tow
    Applied OLAP, Inc

  • I have Mac OS10.4.11 with MS Office 2004 installed. Yesterday, when clicking on the Entourage icon, in the dock, to receive my Email, the icon disappeared and I lost my Email service from the HD and from Spotlight, as well. Word, Excel and PP are still OK

    I have Mac OS10.4.11 with MS Office 2004 for Mac, installed. Yesterday, when clicking on the Entourage icon, in the dock, to receive my Email, the icon disappeared and I lost my Email service from the HD and from Spotlight, as well. Word, Excel and PP are still OK. Could this be a virus?

    Just thinking, if things are really missing...
    "Try Disk Utility
    1. Insert the Mac OS X Tiger Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)

  • I tried to upgrade from XI Standard to Pro and it says I already have a more current version, but it's not Pro.  What do I need to do to get Pro (installed, not the membership service)?

    I tried to upgrade from XI Standard to Pro and it says I already have a more current version, but it's not Pro.  What do I need to do to get Pro (installed, not the membership service)?

    uninstall acrobat standard, clean and then install, Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs

  • Itunes updated today and then ceased to function. I have re-installed twice and am stuck at "starting services" "apple mobile device failed to start"

    itunes updated today and then ceased to function. I have re-installed twice and am stuck at "starting services" "apple mobile device failed to start"

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • HP UFT 12.02 not installing on Windows 7 Service Pack 1

    HP UFT 12.02 is not installing on Windows 7 Service Pack 1. But the Install Guide says it supports and recommends Windows 7 Service Pack 1 as the Operating System.

    Hey Hello Dear,
       Please upgrade UR windows 7 Service pack to Service pack 2.
       from my knowledge for SQL SERVER 2012 it requires Windows 7 service pack.
       And before installing SQL server 2012 Plz activate .NET framework for that,
       Put UR windows 7 Format CD then,
       Run Command prompt as Administrator and paste following cmd in that
    DISM.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\net35 /LimitAccess
    it will take 2 min. after that restart your PC and try to install SQL server 2012.
    Note: Before installing SQL SERVER again format UR PC/lapy once.
    After this if it gives error while installation then plz change ur setup and try again.
    This will be helpful.
    Best of Luck
    Regards,
    Sandesh

  • How to properly create and configure SharePoint 2013 Search service with PowerShell?

    Hello Forum,
    I have installed SharePoint 2013 across three tier servers:
    WFE Server  (Of course, SharePoint is installed here. Bsically this is just a Web server)
    APP Server  (Of course, SharePoint is installed here + Central Admin + Service Apps).
    SQL Server  
    I now want to create and configure the Search service, obviously on the APP Server, But of course the search functionality should work correctly on the WFE server to.
    I want to do this via a proper PowerShell script. I found Spence Harbar's script on: (http://www.harbar.net/articles/sp2013mt.aspx), But it has three problems, and they are as follows:
    1) Spence Harbar himself literally stated on his article that this script is for: "deploying on a single server farm", But what if I have three tier servers? Could anyone please help me out in suggesting the required tweaks in the
    script?
    2) By default Search uses the SP_Farm account, So, How can I change the script to use other dedicated account for the search service e.g. SP_SearchAcc ?
    3) How can I modify the script to specify a default Search center?
    4) Apart from all the three aforementioned point - Is the script missing anything? 
    I would greatly appreciate your inputs - Thanks !

    the only differences are where you place the components.  if you are doing a small server farm with a 1-1-1, most likely you just need to change the script so that you set the index and query processing component on the front end, but the others on
    the app server.  just a 2 second update... just keep in mind this will work, but I am making several assumptions without any knowledge of your farm, users, capabilities. 
    generally, there would be more of a breakout on the topology than that, but im guessing for this farm that you wont have dedicated search servers.  also, a lot depends on # users (rps really), # items in index, size of VMs (RAM for query processing,
    Disk for index, etc, etc), and making sure the topology works for your particular environment and needs. 
    if you want more detailed topology help, which aligns as closely as possible to "best practices" (not that those exist in SharePoint, go ahead and provide the total # users, average/peak RPS for search, current index size, content source types,
    VM specs RAM, CPU, #/Size of drives, HA concerns/priority (obviously isn't, since only 1-1-1)
    Christopher Webb | MCM: SharePoint 2010 | MCSM: SharePoint Charter | MCT | http://christophermichaelwebb.com

  • After Installing SQL Server 2012 Service Pack the RDL reports do not work

    I installed SQL Server 2012 Service Pack on backEnd sharepoint and also on BI Server that host Reporting Service.(Before installation everything was working properly)
    After this installation the RDL reports do not open and I receive this error message.
    The permissions granted to user 'domain\username' are insufficient for performing this operation. (rsAccessDenied)
    I also receive the same error message on changing DataSource, Parameters and subscription.
    I should mention that, I am using Reporting Services in the Integration Mode. I want to open and modify RDL reports from SharePoint and inside the SharePoint Document Library.

    Hi Hedayat,
    Thanks for posting your issue,
    To solve this problem you have to grant your SQL Reporting Service Application Pool
    Account (whatever is running your SQL Service Application, see Central Admin -> Manage Service Application -> SQL Server Reporting Services)
    Full Control to the web application that report is being deployed to in your particular case.
    Or you could just use the powershell command below:
    $webApp = Get-SPWebApplication –Identity http://yoursharepointapp 
    $webApp.GrantAccessToProcessIdentity(“domain\SSRSAccount”) 
    Also, check out below mentioned URLs for more details and fixes of this issue
    http://paulliebrand.com/2013/09/25/ssrs-and-permissions-granted-to-user-are-insufficient-for-performing-this-operation/
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/4ea477ec-ea12-4a3e-bc33-2fcf9d52b84e/error-rsaccessdenied-nt-authoritynetwork-service-are-insufficient?forum=sqlreportingservices
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Error while installing Oracle Cluster Ready Services – Release 1 (10.1.0.2)

    Hi all,
    I am trying for RAC – 10gR1 (10.1.0.2) using two machines with Windows 2000 Server. For this I need to install Oracle Cluster Ready Services – Release 1 (10.1.0.2).
    Machine details are as follows:-
    Node 1:
    Computer Name:     RAC1
    Windows 2000 IP Configuration
    Ethernet adapter Local Area Connection 2: (Used for Public Interface)
    Connection-specific DNS Suffix . :
    IP Address. . . . . . . . . . . . : 192.168.1.65
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    Ethernet adapter Local Area Connection: (Used for Private Interface between the two nodes)
    Connection-specific DNS Suffix . :
    IP Address. . . . . . . . . . . . : 10.10.10.11
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    Node 2:
         Computer Name:     RAC2
    Windows 2000 IP Configuration
    Ethernet adapter Local Area Connection 2: (Used for Public Interface)
    Connection-specific DNS Suffix . :
    IP Address. . . . . . . . . . . . : 192.168.1.181
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    Ethernet adapter Local Area Connection: (Used for Private Interface between the two nodes)
    Connection-specific DNS Suffix . :
    IP Address. . . . . . . . . . . . : 10.10.10.12
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . :
    I have made following entries in Hosts file of both the machines:-
    192.168.1.65     RAC1
    192.168.1.181     RAC2
    10.10.10.11     RAC01-PRIV
    10.10.10.12     RAC02-PRIV
    192.168.1.201     RAC01-VIP
    192.168.1.202     RAC02-VIP
    I have completed all the pre-installation steps, i.e. configuring the disk for storage, and both the machine are communicating each other through there Private and Public interfaces. Now the problem appears when I am installing Oracle Cluster Ready Services, at the end of Installation following message appears and the auto configuration steps fails.
    ================================================================================================================
    Output generated from configuration assistant "Oracle Cluster Ready Services Configuration Assistant":
    Successfully accumulated necessary OCR keys.
    Using ports: CSS=49895 CRS=49896 EVMC=49898 and EVMR=49897.
    node <nodenumber>: <nodename> <private interconnect name> <hostname>
    node 1: rac1 rac01-priv rac1
    node 2: rac2 rac02-priv rac2
    Creating OCR keys for user 'administrator', privgrp ''..
    Operation successful.
    Now formatting voting device: \\.\votedsk
    Successful in setting block0 for voting disk.
    Format complete.
    Step 1: checking status of CRS cluster
    Step 2: configuring OCR repository
    Step 3: configuring safe mode for CRS stack
    Step 4: Starting up CRS stack on all nodes
    RAC1 service OracleCSService in improper PENDING state, err(997)
    RAC2 service OracleCSService in improper PENDING state, err(997)
    Configuration assistant "Oracle Cluster Ready Services Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Notification Server Configuration Assistant":
    Configuration assistant "Oracle Notification Server Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Private Interconnect Configuration Assistant":
    PRIF-10: failed to initialize the cluster registry
    Configuration assistant "Oracle Private Interconnect Configuration Assistant" failed
    ===============================================================
    I would be highly obliged if any one tell me why it is happing like this and what could be the possible remedy.
    Waiting for the respone.
    With Regards
    Dinesh
    [email protected]

    Hi user478171,
    I have the same problem with two nodes in Windows 2003 with RAC 10g R2, but I don't have idea to solve.
    Please advice me
    Thanks advances
    regards,
    IvanR

  • Error while installing the BAM Updater Service in Windows

    Hi all,
    I am getting an error while installing the BAM updater service in Windows. When i type the "oraclebpmdatawarehouse install " command in the command prompt it gives error as follows:
    d:\OraBPMEnterpriseHome\bin>oraclebpmwarehouse install
    Installing...
    wrapper | OpenSCManager failed - Access is denied. (0x5)
    Please can anyone tell me how to get rid of this error.
    I have already done everything else like setting the database and other things.
    Thanks.

    From the error message you specified, I guess you are trying to install MS Office SP2 package. If you are then its not MS Office package its just a Service Pack; something like a patch. You need to install a Full Base package first. Again, as mentioned by Rajiv - refer to MS Support

  • Failed to install Active directory domain services

    Hi,
    I've installed the AD Domain Services on Windows2008R2 by following this guide http://technet.microsoft.com/en-gb/library/cc755059%28WS.10%29.aspx. After click 'Install', step 6, it showed failed to install but there is no clue why it was failed, at all.
    Here is a log I copied from C:\Windows\logs\ServerManager.log
    2204: 2011-01-05 12:57:54.333 [InstallationProgressPage]  Loading progress page...
    2204: 2011-01-05 12:57:54.411 [InstallationProgressPage]  Begining Sync operation...
    2204: 2011-01-05 12:57:54.458 [Sync]                     
    Sync Graph of changed nodes
    ==========
    name     : Active Directory Domain Services
    state    : Changed
    rank     : 1
    sync tech: CBS
    guest[1] : Active Directory Domain Controller
    guest[2] : Identity Management for UNIX
    ant.     : empty
    pred.    : empty
    provider : null
    name     : Active Directory Domain Controller
    state    : Changed
    rank     : 4
    sync tech: CBS
    ant.     : .NET Framework 3.5.1
    pred.    : Active Directory Domain Services, .NET Framework 3.5.1
    provider : Provider
    2204: 2011-01-05 12:57:54.458 [Sync]                      Calling sync provider of Active Directory Domain Controller ...
    2204: 2011-01-05 12:57:54.473 [Provider]                  Sync:: guest: 'Active Directory Domain Controller', guest deleted?: False
    2204: 2011-01-05 12:57:54.473 [Provider]                  Begin installation of 'Active Directory Domain Controller'...
    2204: 2011-01-05 12:57:54.473 [Provider]                  Install: Guest: 'Active Directory Domain Controller', updateElement: 'DirectoryServices-DomainController'
    2204: 2011-01-05 12:57:54.473 [Provider]                  Installation queued for 'Active Directory Domain Controller'.
    2204: 2011-01-05 12:57:54.473 [CBS]                       installing 'DirectoryServices-DomainController ' ...
    2204: 2011-01-05 12:57:55.020 [CBS]                       ...parents that will be auto-installed: 'NetFx3 '
    2204: 2011-01-05 12:57:55.020 [CBS]                       ...default children to turn-off: '<none>'
    2204: 2011-01-05 12:57:55.036 [CBS]                       ...current state of 'DirectoryServices-DomainController': p: Staged, a: Staged, s: UninstallRequested
    2204: 2011-01-05 12:57:55.036 [CBS]                       ...setting state of 'DirectoryServices-DomainController' to 'InstallRequested'
    2204: 2011-01-05 12:57:55.051 [CBS]                       ...current state of 'NetFx3': p: Installed, a: Installed, s: InstallRequested
    2204: 2011-01-05 12:57:55.051 [CBS]                       ...skipping 'NetFx3' because it is already in the desired state.
    2204: 2011-01-05 12:57:55.098 [CBS]                       ...'DirectoryServices-DomainController' : applicability: Applicable
    2204: 2011-01-05 12:57:55.114 [CBS]                       ...'NetFx3' : applicability: Applicable
    2204: 2011-01-05 12:57:55.770 [CbsUIHandler]              Initiate:
    2204: 2011-01-05 12:57:55.770 [InstallationProgressPage]  Installing...
    2204: 2011-01-05 12:58:49.176 [CbsUIHandler]              Error: -2147021879 :
    2204: 2011-01-05 12:58:49.176 [CbsUIHandler]              Terminate:
    2204: 2011-01-05 12:58:49.254 [InstallationProgressPage]  Verifying installation...
    2204: 2011-01-05 12:58:49.270 [CBS]                       ...done installing 'DirectoryServices-DomainController '. Status: -2147021879 (80070bc9)
    2204: 2011-01-05 12:58:49.270 [Provider]                  Skipped configuration of 'Active Directory Domain Controller' because install operation failed.
    2204: 2011-01-05 12:58:49.270 [Provider]                 
    [STAT] ---- CBS Session Consolidation -----
    [STAT] For
              'Active Directory Domain Controller'[STAT] installation(s) took '54.7870005' second(s) total.
    [STAT] Configuration(s) took '0.0003053' second(s) total.
    [STAT] Total time: '54.7873058' second(s).
    2204: 2011-01-05 12:58:49.270 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 110
    2204: 2011-01-05 12:58:49.286 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: The requested operation failed. A system reboot is required to roll back changes
    made
    2204: 2011-01-05 12:58:49.286 [InstallationProgressPage]  Sync operation completed
    2204: 2011-01-05 12:58:49.286 [InstallationProgressPage]  Performing post install/uninstall discovery...
    2204: 2011-01-05 12:58:49.286 [Provider]                  C:\Windows\system32\ServerManager\Cache\CbsUpdateState.bin does not exist.
    2204: 2011-01-05 12:58:49.286 [CBS]                       IsCacheStillGood: False.
    2204: 2011-01-05 12:58:49.786 [CBS]                       >>>GetUpdateInfo--------------------------------------------------
    2204: 2011-01-05 12:59:46.520 [CBS] Error (Id=0) Function: 'ReadUpdateInfo()->Update_GetInstallState' failed: 80070bc9 (-2147021879)
    2204: 2011-01-05 12:59:46.520 [CBS]                       <<<GetUpdateInfo--------------------------------------------------
    2204: 2011-01-05 12:59:46.598 [DISCOVERY]                 hr: -2147021879 -> reboot required.
    2204: 2011-01-05 12:59:46.739 [InstallationProgressPage]  About to load finish page...
    2204: 2011-01-05 12:59:46.739 [InstallationFinishPage]    Loading finish page
    2204: 2011-01-05 12:59:46.801 [InstallationFinishPage]    Finish page loaded
    I also checked the event viewer, here are the event properties occurred during the installation:
    Initiating changes to turn on update DirectoryServices-DomainController of package DirectoryServices-DomainController-Package. Client id: RMT
    Update Directoryservices-DomainController of package DirectoryServices-DomainController-Package failed to be turned on. Status: 0x80070bc9
    Installation failed. A restart is required.
    Roles:
    Active Directory Domain Services
    Error: The server needs to be restarted to undo the changes
    Please help.
    Thanks,
    balrogz

    Another thing to check is to ensure the server service is up and running.
    http://blogs.dirteam.com/blogs/paulbergson/archive/2014/04/29/can-t-add-the-role-quot-active-directory-domain-services-quot-to-my-2008-r2-server.aspx
    Paul Bergson
    MVP - Directory Services
    MCITP: Enterprise Administrator
    MCTS, MCT, MCSE, MCSA, Security, BS CSci
    2012, 2008, Vista, 2003, 2000 (Early Achiever), NT4
    Twitter @pbbergs http://blogs.dirteam.com/blogs/paulbergson
    Please no e-mails, any questions should be posted in the NewsGroup.
    This posting is provided AS IS with no warranties, and confers no rights.

  • Install Netweaver 7.1, service pack 3 on Windows 2008 Server 64bit

    Hi All,
    Good Morning. I am working as Oracle APPS DBA. I had a requirement for installing  Netweaver 7.1, service pack 3 on Windows 2008 Server 64bit machine.
    I need this Application server for Vertex O-Series which is working with SQL Server as the database.
    Can any of you guys help me in providing the document or steps in order to install this application server?
    1. Pre-Requisties steps
    2. Installation
    3. Post steps
    I apperciat your help in this.
    Thanks,
    Srinivas.

    Hello.
    We are at the same point too.
    Anybody here install the Vertex O series 6 running on the Java Stack? if so, what NW release and what component?
    We are currently running an older version on SAP NW640 JAVA with no issue, and I am making the assumption the new Vertex would be running on the same SAP java AS for 7*... maybe not?
    The install  documents from Vertex say the requirement for SAP is:
    "SAP NetWeaver 7.1 with Service Pack 3 or higher" and I see that there is only 7.1 for PI and Mobile.
    (Maybe they mean SAP NW 7 SP3?)
    We did ask Vertex, the company, about running this on the java app and they wrote:
    "Netweaver 7.1 is currently supported for deployment of O Series 6.0. Versions 7.0 and 7.3 of Netweaver are not supported.
    O Series 6.0 is supported for use with Java 1.5 and Java 1.6. "
    Thanks for your help. And I will post here again if I find my answer.

  • RDL Reports are not working after installing SQL Server 2012 Service Pack 2 in the SharePoint integration Mode

    I am using Reporting Service Integration mode with SharePoint. SSRS is installed on separated machine of SharePoint stacks in Integration Mode. Everything was working properly and I could create/edit/modify RDL reports(parameters, Datasource, Subscription)
    inside SharePoint and Document Libraries.
    But after installing SQL Server 2012 Service Pack 2, on opening RDL reports inside SharePoint I receive this error message. 
    The permissions granted to user 'i:0#.f|membership|username' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user 'i:0#.f|membership|username' are insufficient for performing this operation
    I should mention that SSRS is installed in the SharePoint integration Mode and there is no SSRS management console.

    Hi Hedayat-Abedijoo,
    According to your description, you are using Reporting Services in SharePoint Integrated mode, and everything worked fine before you install SQL Server 2012 Service Pack 2. After the package is installed, when you open RDL reports, the error occurred: The
    permissions granted to user 'i:0#.f|membership|username' are insufficient for performing this operation.
    According to my search, there may be two reasons for the problem:
    This is caused when the application pool account that runs the SharePoint Web application you are on in IIS and the application pool account that SharePoint believes is running the site differ. This happens if the application pool account is changed directly
    in IIS instead of through SharePoint (using the approved method).
    This error can be caused when Kerberos authentication has been set up correctly and delegation in a double hop scenario will succeed, but Reporting Services integration has been set up for Trusted Account rather than Windows Authentication. This causes
    SharePoint to continue to impersonate the logged-on user when contacting Reporting Services; when Reporting Services compares the application pool account to the user account making the request, they are not equal.
    In this case, we can solve the problem by changing the application pool account in IIS back to the previous account and set AuthenticationTypes to RSWindowsNTLM only. For detail information, please refer to 8.3 “The permissions granted to user 'Domain\User'
    are insufficient for performing this operation” in the document:http://msdn.microsoft.com/en-us/library/ee384252(SQL.100).aspx
    If you have any questions, please feel free to let me know.
    Thanks,
    Wendy Fu

Maybe you are looking for

  • How to customize Terminal Tabs

    I am a long time iTerm user. I was able to configure the Window Title and tab with the following in my .bashrc file: PS1=$'\[\033]2;\u::$PWD\[\007\]\[\033]1;$(basename $(dirname $PWD))/\W\[\007\]$ ' I am have run into several issues with the latest i

  • Pics in a Jar File

    Hi everybody, if I display a picture in an applet running in a browser , then I use dataUrl to get the pictures without a security exception. My question is: Can I put the picture in a jar file, the same where the applet is, and then open the picture

  • Enable Buttons after selection of row in a table

    Hi All Could any one give me help in this. I have a table, in table tool bar some buttons are there. at first time buttons are in disable mode, when user select any row in the table the buttons should be in enable mode. how to do this? help me Thanks

  • Unbekanter Fehler in Camera Raw 6.7.1

    Guten Tag, Ich verwende einen Windows 7 64 Bit und die CS 5.5. Unter Bridge/ Camera Raw 6.7.1 kommt einen "unbekannter Fehler" beim speichern die Dateien. Kenn jemand eine Lösung? Freundliche Grüsse

  • Please clarify these doubts

    1.From 10g onwards, oracle introduced new data types BINARY_FLOAT and BINARY_DOUBLE.What is the significance of word BINARY in these datatypes? Is the word BINARY because of the way the calculations are done when these datatypes are used? 2.*Oracle u