Install workflow manager using DSC declarative configuration

I am trying to install workflow manager using below DSC powershell script.
Configuration
C_Pkg_WFInstall
Node $AllNodes.NodeName
Package C_Pkg_WFInstall
Ensure = "Present"
Name = "Workflow Manager Client 1.0"
Path = "C:\WorkflowManagerFiles\bin\WebpiCmd.exe"
Arguments =
"/Install /Products:'Workflow Manager Client 1.0' /XML:'c:/WorkflowManagerFiles/feeds/latest/webproductlist.xml' /log:'c:/users/backup/workflow.txt' /AcceptEula"
ProductId =
"A5ABAF5F-B5B6-44B3-B69F-2E13DC60FC9F"
$ConfigData
= @{
AllNodes = @(
    NodeName =
"CHN-AERO-VM28";         
C_Pkg_WFInstall
-ConfigurationData
$ConfigData –Verbose
Start-DscConfiguration
-Wait -force
-Verbose -Path
.\C_Pkg_WFInstall
And i get the below error
PowerShell provider MSFT_PackageResource 
failed to execute Set-TargetResource functionality with error message: The return code -1 was not expected. Configuration is likely not
correct
+ CategoryInfo         
: InvalidOperation: (:) [], CimException
+ FullyQualifiedErrorId : ProviderOperationExecutionFailure
But while installing from command prompt window i could install the below list successfully
IdentifyingNumber : {A5ABAF5F-B5B6-44B3-B69F-2E13DC60FC9F}
Name              : Workflow Manager Client 1.0
IdentifyingNumber : {04A7199E-565D-4654-88A3-80A9A7BADDD9}
Name              : Workflow Manager 1.0
IdentifyingNumber : {F438C511-5A64-433E-97EC-5E5343DA670A}
Name              : Service Bus 1.0
I tried with all the above 3 product ids, its not working.

Thanks for your reply.
I get the below error in eventviewer - Applications and Services Log - Windows Powershell
The description for Event ID 600 from source PowerShell cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the
local computer.
If the event originated on another computer, the display information had to be saved with the event.
The following information was included with the event:
Alias
Started
 ProviderName=Alias
 NewProviderState=Started
 SequenceNumber=1
 HostName=Default Host
 HostVersion=4.0
 HostId=979b4813-7bd4-47d7-9729-4166ae91e9c1
The handle is invalid
Log Name : Windows PowerShell
Source : PowerShell (PowerShell)
Event ID : 600
Task Category : Provider Lifecycle
I got the same error message in subsequent logs but the providername is different as below
 ProviderName=Environment 
 ProviderName=FileSystem  
 ProviderName=Function  
 ProviderName=Registry 
 ProviderName=Variable
The description for Event ID 400 from source PowerShell cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local
computer.
If the event originated on another computer, the display information had to be saved with the event.
The following information was included with the event:
Available
None
 NewEngineState=Available
 PreviousEngineState=None
 SequenceNumber=13
 HostName=Default Host
 HostVersion=4.0
 HostId=979b4813-7bd4-47d7-9729-4166ae91e9c1
 EngineVersion=4.0
 RunspaceId=6374c946-1219-4870-bc51-528faae9671d
Log Name : Windows PowerShell
Source : PowerShell (PowerShell)
Event ID : 400
Task Category : Engine Lifecycle
But i believe the problem is with either the product name or product id, since it installs three products on one invoke, i dont know which product id we need to give. i tried with all the above 3 product ids. Its not working.
I think by default DSC powershell runs under system account "NT AUTHORITY\SYSTEM".

Similar Messages

  • Install workflow manager using DSC powershell

    Hi,
    i am trying to install workflow manager using DSC powershell.
    I am using WebpiCmd.exe to install it.
    Below is the DSC powershell script
    configuration C_WFMgr
        Node $AllNodes.NodeName
            Script WF_Install
                GetScript = { @{ Name = "WF_Install" } }
                TestScript = {                
                    $false
                SetScript =
                $currentPrincipal = New-Object Security.Principal.WindowsPrincipal( [Security.Principal.WindowsIdentity]::GetCurrent() )
                if ($currentPrincipal.IsInRole( [Security.Principal.WindowsBuiltInRole]::Administrator ) -eq $false) {
                (get-host).UI.RawUI.Backgroundcolor="DarkRed"                                   
                    write-Verbose "Warning: PowerShell is not running as an Administrator.`n"  
                    exit 
                 else
                    #set-executionpolicy "Execution user account"
                    write-Verbose $currentPrincipal.Identity.Name
                    write-Verbose "Warning: PowerShell is running as an Administrator.`n"                
                    Write-Verbose "Workflow Manager installation started.."
                    $cmd = "& 'C:\WorkflowManagerFiles\bin\WebpiCmd.exe' /Install /Products:WorkflowManager /XML:c:/WorkflowManagerFiles/feeds/latest/webproductlist.xml /log:C:/Users/backup/t1.txt
    /AcceptEula"
                    Invoke-Expression $cmd | Write-Verbose                             
    Below is the error message
    Started downloading products...
     Started installing Products...
     Started installing: 'Execute ASP.NET IIS Registration tool
     Started downloading: 'Workflow Manager Client 1.0 Refresh'
     Downloaded: 'Workflow Manager Client 1.0 Refresh'
     Started downloading: 'Service Bus 1.0'
     Downloaded: 'Service Bus 1.0'
     Started downloading: 'Workflow Manager 1.0'
     Downloaded: 'Workflow Manager 1.0'
     Install completed (Success): 'Execute ASP.NET IIS Registra
    tion tool'
     Execute ASP.NET IIS Registration tool : Installed
     Started installing: 'Workflow Manager Client 1.0 Refresh'
     Install completed (Failure): 'Workflow Manager Client 1.0
    Refresh'
     WorkflowClient : Failed.
     Error opening installation log file. Verify that the speci
    fied log file location exists and is writable.
     Started installing: 'Service Bus 1.0'
     Install completed (Failure): 'Service Bus 1.0'
     ServiceBus : Failed.
     Error opening installation log file. Verify that the speci
    fied log file location exists and is writable.
     DependencyFailed: Workflow Manager 1.0
     Verifying successful installation...
     Execute ASP.NET IIS Registration tool              True
     Workflow Manager Client 1.0 Refresh                False
         Log Location: C:\Windows\system32\config\systemprofile
    \AppData\Local\Microsoft\Web Platform Installer\logs\install\2015-01-02T14.58.57\WorkflowManagerClient_x64.txt
     Service Bus 1.0                                    False
         Log Location: C:\Windows\system32\config\systemprofile
    \AppData\Local\Microsoft\Web Platform Installer\logs\install\2015-01-02T14.58.57\Service_Bus.txt
     Workflow Manager 1.0                               False
     Install of Products: FAILURE

    I am pretty sure that DSC requires WFM.  If  I am right then WFM is in use and cannot be replaced unless you specify another logfile location.  Look at the DSC and see how to specify a new log location that can be used for the install. 
    If the MSU is built correctly then you will require a reboot to update the install.
    Try just doing WFM alone until you work it out.
    I also recommend posting in the Management forum for any other issues that might be known.
    Management
    DSC is a work in progress so many things have to be worked out as you need them.  Be sure to get the latest kits.  I think we are at Wave 9 now.
    PowerShell
    DSC Resource Kit Wave 9
    ¯\_(ツ)_/¯

  • Getting Error while Installing Workflow Manager 1.0 on Sharepoint 2013 On-Prem server

    I am trying to install Workflow Manager 1.0 on our SharePoint Server 2013 which is On-Prem installation. The SharePoint Server 2013 is functioning correctly. During the installation of Workflow Manager 1.0 on the same SharePoint 2013 server, I receive the
    following message: "Port number 9355 specified for HTTPS Port is blocked" I have checked our firewall Inbound rules and this port is not blocked.
    Any reason why this could be happening or did I miss anything?
    Thanks Snehal H.Rana SharePoint Consultant

    I am happy to inform you that I was able to resolve this error. I configured this on different ports other than 9355. We need to modify 2 files called "ClusterManifest.1.0.xml" and "ClusterManifest.current.xml" in c:\Program
    Files\Windows Fabric\Bin. They were pointing to older FQDN under following node:
     <NodeList>
            <Node NodeName="yourserverfqdn" IPAddressOrFQDN="yourserverfqdn" IsSeedNode="true" NodeTypeRef="DefaultNodeType" />
          </NodeList>
    These files won't let you edit directly in notepad so you will need to make a copy of these files (just in case). Open up the notepad as "Run As Administrator". Drag these files to the notepad. After you are done editing, save these as original
    names but make sure that the extension is .xml
    You will also need to do IISReset
    That did the trick for me.
    Thanks Snehal H.Rana SharePoint Consultant

  • Do i need another Virtual machine rather than sharepoint server to install workflow manager ?

    Hi ,
         I have installed sharepoint 2013 on a single server with a built-in-database. And i have installed OWA in another virtual machine. Now i am trying to create a workflow. I have downloaded and installed sharepoint designer and workflow
    manager in the sharepoint 2013 itself. Do i need to install workflow manager in another server and make it to communicate with sharepoint server ? And how to email-id in workflow when i tried in sharepoint designer we have select the user. How to allocate
    e-mail id for users ?

    Creating new VM is choice of your architecture. Workflow Manager only requires below.
    Workflow Manager 1.0. Email ID will be automatically picked from the participants from AD.
    .NET Framework 4 Platform Update 3 or .NET Framework 4.5
    Service Bus 1.0
    Workflow Client 1.0
    PowerShell 3.0
    The following additional requirements must be met before you can run Configuration Wizard to configure Workflow:
    Instance of SQL Server 2008 R2 SP1, SQL Server Express 2008 R2 SP1, or SQL Server 2012.
    TCP/IP connections or named pipes must be configured in SQL Server.
    Windows Firewall must be enabled.
    Ports 12290 and 12291 must be available.
    Bala

  • Best Practice on installing Workflow Manager on a separate box

    Hi,
    We are installing Workflow Manager 1.0 to work with our SP2013 farm, which is fairly simple.
    However we anticipate a significant  amount of workflow work in the future. 
    Could you please share your thoughts/experience/lessons learnt on Having WF Manager on a separate box compared to having it on the same box as SP2013 Front end server in terms of
    1. Scalability
    2. Stability 
    3. Ease of Installation/Management  
    etc
    Thanks a lot.
    Dineth

    Hi Dineth,
    Thanks for posting your query,
    Kindly browse the below mentioned URLs to know about the best practices and installation step by step
    http://msdn.microsoft.com/library/azure/jj730571%28v=azure.10%29.aspx
    http://www.sjoukjezaal.com/blog/2014/05/sharepoint-2013-workflows-part-2-installing-and-configuring-the-workflow-manager/
    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

  • Can you install Workflow Manager 1.0 on Central Admin App Server Machine in 3-tier SharePoint Farm?

    Hi,
    I have just realised when looking at doing a Workflow that 2013 Workflows not available (you need to install Workflow Manager Farm). I understand why from a tenant installation perspective, but we are on-premise.
    Can someone tell me if I can install Workflow Manager 1.0 (seen you have to now install WM 1.0 Refresh version) on the Central Admin App Server Machine in a 3 tier SharePoint farm. 3 WFE, 4 APP Servers, 1 DB Server and 1 DB Analysis Services Server.
    I did test on a test farm 1WFE, 1 APP Server (with CA) and 1 Database Server. We are getting issues with the WFE Server having issues booting up or losing connection - possibly faulty network card. This may in no way be related to the install,
    but just in case. 
    Any help appreciated.
    Thanks.
    John.

    Yes, you can install WFM on any server in a SharePoint farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • What is the windows server 2013 license version than I need to install workflow manager 1.0

    what is the windows server 2013 license version than I need to install workflow manager 1.0?
    enterprise or standard? can I install it on datacenter?
    please provide me with the reference.
    thanks

    Workflow Manager will work with either SharePoint Enterprise or Standard.  It doesn't work well with Foundations since it depends on User Profiles to pass user identity to the workflow.  And yes you can install it on Windows Server datacenter edition.
     Here are the supported platforms for installation
    http://msdn.microsoft.com/en-us/library/jj193487(v=azure.10).aspx
    This article talks about integration with SharePoint and states that Foundation is not supported, but it doesn't differentiate between the Server editions, so any edition will do.
    http://technet.microsoft.com/en-us/library/jj658588.aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How install solution manager using MCOD

    Hello Eveybody,
      I   have install the IDES ECC 6.0 on single machine. Now I want to install the Solution manger using MCOD. but I dont Know How to ? Will anybody guide me how to install solution manager using MCODE,
    I have HDD of  320 GB
    Waiting for earlist reply
    Thanks
    Ganesh

    Hello Ganesh,
    For installing on MCOD, the database instance should be on the same database host. For installation when you run sapinst, you should mention the database id (DBSID) for the solution manager as the ECC6 database DBSID. It will then automatically pick the installation as MCOD.
    In other words, the SAP SID during the installation should be the new system ID for solution manager but the Database SID should be mentioned as the existing DBSID.
    For more info, refer the following:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a1b7a6-8307-2a10-05bc-d4388cbd4201
    Cheers,
    Jazz

  • Trouble in installing Workflow Manager 1.0

    Hi All,
    When I tried to install Workflow Manager 1.0 , I got the following error.
    I downloaded the Web Platform Installer and installed it.
    Still I get the same error.
    Please help me to troubleshoot the error.

    Hi Muthukumar;
    You must ensure Web Platform Installer version should be same on the server where you are downloading Workflow Manager 1.0 files and on the server where you are installing Workflow Manager 1.0 files for offline installation scenarios.Workflow Manager 1.0
    Installation requires valid Web Platform Installer Version on Workflow Server.
    If you want to install Workflow Manager 1.0 on servers without internet connectivity, you will run into problems with the Web Platform Installer, the only tool Workflow Manager 1.0 can be installed with.
    There is a command line tool of Web Platform Installer, where you can download the installation files and all of its dependencies to a internet accessible machine, move it over to one of your servers and install it in offline mode.
    Take the following steps to do so:
    Download the
    WebPICMD.exe Package from the MS Download Center and unzip it to a folder (C:\WebPICMD\WebPICMD.exe in our case)
    Open a Command Prompt, navigate to the folder you extracted the tool and execute the following command:
    WebpiCmd.exe /Offline /Products:WorkflowManager /Path:D:\Temp\WorkflowManager\
    This will initiate a download with all the related components into the provided folder.
    Copy the WebPICMD.exe to the server where you want to install the WorkflowManager 1.0, in our example to
    D:\Temp\WebPICMD\WebPICMD.exe
    Copy the downloaded files to your server where you want to install the WorkflowManager 1.0, in our example to
    D:\Temp\WorkflowManager 
    Open a Command Prompt, navigate to the folder you copied the WebPICMD.exe tool and execute the following command:
    WebPICMD.exe /Install /Products:WorkflowManager
    /AcceptEULA /SuppressReboot
    /Log:./WorkflowManager.log /Xml:file:///D:\Temp\WorkflowManager\feeds\shadow-webproductlist.xmlThis will initiate the installation of the Workflow Manager 1.0 and its dependencies. The outcome of the installation will be logged to the WorkflowManager.log
    file. The above line will suppress reboots and will accept the license terms automatically.
    A log file will be created at the following path, where you can see the process and the warnings/errors/information about the installation:
    %localappdata%\microsoft\web platform installer\logs\webpicmd
    You could also go through these helpful
    links .
    Please revert back for any further help.
    Regards
    Prasant Chhetri

  • Install workflow manager on sharepoint 2013

    hi , I install work flow manager .but i could not see  workflow 2013  in sharepoint 2013 .why ?

    http://technet.microsoft.com/en-us/library/jj658588%28v=office.15%29
    There is service application\option in SharePoint 2013 where you can see workflow 2013.
    You can see workflow 2013 in designer which comes with Workflow manager 2013. Also you have to configure workflow manager 2013 as per below:
    http://www.harbar.net/articles/wfm2.aspx
    http://blog.cloudshare.com/2013/01/15/how-to-install-and-configure-workflow-infrastructure-in-sharepoint-2013/
    http://lennytech.wordpress.com/2013/06/02/configuring-sharepoint-2013-to-use-workflow-manager-1-0/

  • Errors when installing Workflow Manager

    I am trying to install WF Manager, but with no success.
    On the same machine, I have installed SQL Server 2014, SharePoint 2013 with SP1 and WF Manager.
    I installed WF manager (account that runs WF manager is sp farm admin) and registered with command
    Register-SPWorkflowService -SPSite "http://dev/" -WorkflowHostUri "http://localhost:12291" -AllowOAuthHttp
    In Central Admin, when I click on "Workflow Service Application Proxy ", I get message that WF is connected. Backend service is running. In SP Designer, I can create 2013 Workflow and publish it, but that WF does not work, it break instantly.
    In SP logs, I get this error when I try to activate feature that contains workflow (solution that contains WF created in Visual Studio):
    http://radioaddictsanonymous.com/view/635399286724222582163282/error-while-deploying-sp2013-workflow-from-vs2012-nullreferenceexception
    So, I deleted WF manager and service bus and reinstalled it, but with no luck. Now backedn service is not working, and I can't start it, getting this error:
    "The Workflow Manager Backend service could not be started  A system error has occurred  System error 1067 has occurred"
    In Event Viewer I have this error:
    https://social.technet.microsoft.com/Forums/office/en-US/de554aed-c9ae-4725-82fa-251446bacc20/workflow-manager-10-sharepoint-2013-the-process-was-terminated-due-to-an-unhandled-exception?forum=sharepointgeneral
    I have tried to reinstall everything couple of times, but it doesn't work. I think that I am not deleting everything related to workflow before reinstallation. How can I unregister already registered WF service and reinstall everything correctly??

    Hi,I had already done disableloopbackcheck and it did not matter.No problem with creating scopes (using powershell) but pairing fails anyway.Here is the config from a local explorer connection to the HTTPS port:(And following it, you may see the result of
    a scope enumerator script)
    <?xml version="1.0"?>
    <ScopeInfo xmlns="http://schemas.microsoft.com/workflow/2012/xaml/activities" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <ChildScopeCount>3</ChildScopeCount>
    <DefaultWorkflowConfiguration/>
    <Description>For / sample only</Description>
    <LastModified>2013-11-08T21:22:00.967</LastModified>
    <LastRevised>2013-11-08T00:04:31.88</LastRevised>
    <Path>/</Path>
    <SecurityConfigurations>
    <ScopedSecurityConfiguration i:type="WindowsSecurityConfiguration">
    <Name>Microsoft.Workflow.Management.Security.WindowsSecurityConfiguration</Name>
    <WorkflowAdminGroupName>altemis\WorkflowAdmins</WorkflowAdminGroupName>
    </ScopedSecurityConfiguration>
    </SecurityConfigurations><
    Status>Active</Status>
    </ScopeInfo>
    PS C:\Shared> C:\Shared\WF Script-Enumaret Scopes.ps1
    Name:
    Path: /
    Status: Active
    User Comments: For / sample only
    Parent: None
    Children: 3
    Exception calling "GetChildScopes" with "0" argument(s): "Scope '/$ChildScopes' was not found.  HTTP headers received from 
    the server - ActivityId: 616224db-0321-450a-92ef-f03384c008a2. NodeId: ALTEMIS-SVR02. Scope: /$ChildScopes. Client 
    ActivityId : 649dba85-dc89-0002-d9bf-9d6489dcce01."
    At C:\Shared\WF Script-Enumaret Scopes.ps1:21 char:9
    +         $manager.GetChildScopes() | % { WriteScopeInfo $scopeUri $_.Path $scope. ...
    +         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ScopeNotFoundException
    Muharrem

  • Re installing Workflow Manager SharePoint 2013

    In my domain I have only 1 SharePoint Machine where I also install the Workflow Service Manager, but now I'm facing alot of problems with the workflow manager, What I want is to Totally Remove or Uninstall the workflow Manager, and re-Install it with a very
    clean steps. Could someone help me !!

    Hi,
    Please refer to the link below to uninstall SharePoint 2013 Workflow Manager Farm:
    http://sharepointinaction.wordpress.com/2014/01/27/uninstallingremoving-sharepoint-2013-workflow-manager-farm/
    In addition, here is the reference for you to install and configure workflow for SharePoint Server 2013:
    http://technet.microsoft.com/en-us/library/jj658586(v=office.15).aspx
    You could also refer to the video series:
    http://technet.microsoft.com/en-us/library/dn201724(v=office.15).aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Workflow Manager | Use of Subscribe Activity

    Hi 
    I am new to workflow manager and exploring the use of pub/sub acitivities. What I have understood is to "Receive Notification" activity is some what similar to "Receive and Send Response" activity WF4.5. However, I did not understand
    the use of "Subscribe" activity. I have downloaded, pub/sub sample activities from MSDN Using Pub/Sub Activities. 
    In this sample "Subscribe" activities has been used in "OrderTally.xaml" but not in "ProcessOrder.xaml". Can anyone please explain  when to use "Subscribe" activity? Do we always have to use Subscribe with Receive
    Notification activity? 
    Regards,
    RK
    Radhakrishna

    >Plz let me know the use of lo_portal_manager->SUBSCRIBE_EVENT...and give some solution for my problem.
    This method initializes the Portal Eventing framework and subscribes this applciation to listen for a particular portal event.
    So first question - is your application running in the portal and is it still part of the portal page with the iView that produces this event.  Are all the applications in iViews in this page running in the same domain - otherwise portal eventing fails becuase of cross site scripting security restrictions.

  • Facing some problem while configuring Workflow Manager 1.0.

    Hi,
    I am facing some problem while configuring Workflow Manager 1.0. in my farm.
    Scenario is,
    I have installed and configured workflow manager in my farm, it was working well with no issue. But one of team member played with AD and deleted Farm administrator's entry from AD by mistake. So suddenly workflows get affected and stopped working. 
    Then I added administrator entry in AD, uninstalled the Workflow Manager and installed it again. But now while configuring workflow manager I am facing some issues that "Failure to adding user in BUILTIN\Administrative group. Please add it manually" 
    And after sometime it shows another error message that, "Starting service Service Bus Massage broken failed: Timed out has expired, the operation has not been completed" 
    If I go for services then "Service bus Message broker" service is not running properly (Its status is just showing "Starting")  and don't starts.
    I have also added the user in BUILTIN\Administrator, IIS_IUSER, WSS_WPG group of the machine from computer manager - user and groups. 
    Also given permission to databases, and assign role of sysadmin and dbcreator to user
    I also tried following steps    
        1) Stop all services associated to workflows
        2) Uninstalled workflow manager
        3) Deleted all databases associated with workflows
        4) Installed workflow manager and tried to configure.
    But showing same error. 
    If I use another SharePoint server farm to configure workflows, there I am not getting first error of adding user to BUILTIN\Administrator group. but second error remains same.
    We having SQL server and Active directory at another machine and FARM at another machine, if I use local admin for configuration of the workflows (as local admin can start any services) but entry of local admin is not Active directory so can not assign SQL's
    sysadmin, and dbcreator role to local admin.
    I am attaching snapshot of error for better understanding.
    Your help will be very precious to me. 
    Thanks,
    Rajesh
    Rajesh Agravat

    Rajesh
    Check to see what the service accounts are being used for these Workflow Manager 1.0 services:
    Service Bus Message Broker
    Service Bus Gateway
    Workflow Manager Backend
    All of these should be running and your workflow service account should be running all of these.  If any are still configured under the old service account, they'll need to be updated.  Next, check to see what service accounts have access to the
    Workflow Manager 1.0 databases:
    SbGatewayDatabase
    SbManagement
    SbMessageContainer
    WFInstanceManagement
    WFManagement
    WFResourceManagement
    The Workflow Manager service account should be mapped as the DBO for all of these.  if any are still configured under the old service account, they'll need to be updated.
    Given the complete loss of the original workflow service account, and the resultant impact on security configuration throughout the workflow farm, I would recommend performing a re-installation.  Do it thus:
    Launch Workflow Manager Configuration Wizard
    Select the Leave Workflow Manager Farm
    Stop all workflow services (see above list)
    Repeat steps 1-3 for each instance of Workflow Manager 1.0 Server installed.
    Delete all Workflow Manager databases (see above list).
    reboot.
    Start new installation.

  • SharePoint 2013 - Cannot connect or Register WorkFlow Manager with error "The data or messaging layer is unavailable. Please retry after 300 seconds"

    Hi
    I have SharePoint 2013 farm and installed Workflow Manager 1.0 and configured it and have been runing fine for several months.  I upgraded this farm to SP 1 and then started having some issue with publish WF 2013 with task in SPD.
    I re-Registered using Register-SPWorkflowService command and that fixed the problem and WorkFlow Manager running again OK. It has been couple of monthle and now I am having the problem again but with a different error on SPD
    So doing what I did before, I tried to re-Registered WFM but this time getting the error below
    Register-SPWorkflowService : The data or messaging layer is unavailable. Please retry
    after 300 seconds.
    The only possible resolution that I found is to add the -AllowOAuthHttp in my Register-SPWorkflowService cmdlet but that didnot not resolve the problem.  I tried that anyway eventhough we do not allow http.
    I did some checking for status and configuration and Get-SBFarmstatus showing all WFM services are running OK
    I browsed to the WFM server https://servername:12290  and get the same error
    - <Errorxmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <Code>UnexpectedError</Code>
    <Message>The data or messaging layer is unavailable. Please retry after 300
    seconds.</Message>
    </Error>
    If anyone have advise / suggestion to resolve this issue, please share
    Thanks in advance for all comments
    Swanl

    Hi Swanl,
    Please refer to the article below for troubleshooting actions for workflow manager:
    http://blogs.msdn.com/b/vincent_runge/archive/2014/01/07/troubleshooting-actions-for-sharepoint-2013-workflows.aspx
    Moreover, activate workflow manager logs and see if there is any error message that could be help.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • What do i do if my ipod won't charge?

    What can I do if my ipod won't charge?

  • Best PCI-X / PCI video card for Solaris 10?

    I don't mean "best" in the "latest, greatest, fastest" sense, I mean best to denote visual properties and rendering, support, basically. My current machine (Compaq SR5250NX) has a PCI bus ATI Radeon 9250 (256MB RAM) that XSun detects and uses as an A

  • How to reuse popup component?

    Hi, I have a <af:popup> defined in my jspx page which will show up when mouse over the last column in the table. This mouse over popup shows standard information like "Created By", "Creation Date", "Last Updated By", "Last Updated Date". Hence, many

  • Need help with Java app for user input 5 numbers, remove dups, etc.

    I'm new to Java (only a few weeks under my belt) and struggling with an application. The project is to write an app that inputs 5 numbers between 10 and 100, not allowing duplicates, and displaying each correct number entered, using the smallest poss

  • Itune 10.5 Can't access to Store - Very Annoyed

    Iphone 4 upgrade ios 5. HP with Win 7 64 bit. Home wireless 512 bit/sec. Upgrade to Itune 10.5, cant access to store. Trying every method suggested by ASC not working. Flushing, firewall, anti-virus, all having said nothing happen. Uninstalled and re