Deploy app problem: Chef::Exceptions::Exec with "bin/rake db:migrate"

i have a rails application connected with a hana db server. locally it works fine and my vm is also able to connect to that database (i tried isql Hana username password and the connection works). when i try to deploy my application i get the following exception:
Does anybody has a idea what the problem is?
================================================================================ [0m
[31mError executing action `deploy` on resource 'deploy_revision[advisory-service]' [0m
================================================================================ [0m
[0m
Chef::Exceptions::Exec [0m
---------------------- [0m
bin/rake db:migrate returned 1, expected 0 [0m
[0m
Resource Declaration: [0m
--------------------- [0m
# In /var/lib/monsoon/repos/cert/rails_dev/chef/cookbooks/sap-deploy/providers/rails.rb
70:   deploy_revision new_resource.name do
71:     repository  new_resource.repository
72:     revision    new_resource.revision
73:     user        new_resource.owner
74:     group       new_resource.group
75:     deploy_to   new_resource.deploy_to
76:     ssh_wrapper "#{new_resource.deploy_to}/deploy-ssh-wrapper" if new_resource.deploy_key
77:     environment({
78:       'RAILS_ENV' => new_resource.rails_env,
79:       'PATH' => "#{node[:ruby][:bin]}:#{ENV['PATH']}"
80:     })
81:     symlinks    new_resource.symlinks
82:     migrate     new_resource.migrate
83:     migration_command      new_resource.migration_command
84:     symlink_before_migrate new_resource.symlink_before_migrate
85:   
86:     notifies    :send_notification, new_resource, :immediately
87:
88:     # A local variable with the actual new_resource for callbacks
89:     local_resource = new_resource
90:   
91:     before_migrate do
92:       link "#{release_path}/vendor/bundle" do
93:         to "#{local_resource.deploy_to}/shared/vendor_bundle"
94:       end
95:
96:       common_groups  = %w{development test cucumber staging production osx genesis} - [local_resource.rails_env]
97:       bash "bundle install" do
98:         cwd         release_path
99:         user        local_resource.owner
100:         group     
101:         environment ({'GIT_SSH' => "#{local_resource.deploy_to}/deploy-ssh-wrapper"}) if  local_resource.deploy_key
102:         code <<-EOH
103:           echo Installling Dependencies
104:           #{node[:ruby][:bin]}/bundle install --deployment --binstubs --shebang #{node[:ruby][:bin]}/ruby --without #{common_groups.join(' ')}
105:         EOH
106:       end
107:     end
108:
109:     if new_resource.precompile_assets
110:       before_symlink do
111:         bash "assets precompile" do
112:           cwd         release_path
113:           user        local_resource.owner
114:           group       local_resource.group
115:           code <<-EOH
116:             echo Precompiling Assets
117:             RAILS_ENV=production PATH=#{node[:ruby][:bin]}:$PATH bin/rake assets:precompile
118:           EOH
119:         end
120:       end
121:     end
122:
[0m
[0m
Compiled Resource: [0m
------------------ [0m
# Declared in /var/lib/monsoon/repos/cert/rails_dev/chef/cookbooks/sap-deploy/providers/rails.rb:70:in `block in class_from_file'
deploy_revision("advisory-service") do
  provider Chef::Provider::Deploy::Revision
  action :deploy
  retries 0
  retry_delay 2
  deploy_to "/srv/www/advisory-service"
  environment {"RAILS_ENV"=>"production", "PATH"=>"/opt/ruby/1.9.3-p374/bin:/opt/chef/embedded/bin::/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin", "LC_ALL"=>"C"}
  repository_cache "cached-copy"
  purge_before_symlink ["log", "tmp/pids", "public/system"]
  create_dirs_before_symlink ["tmp", "public", "config"]
  symlinks {"system"=>"public/system", "pids"=>"tmp/pids", "log"=>"log"}
  revision "refs/heads/master"
  migrate true
  remote "origin"
  scm_provider Chef::Provider::Git
  keep_releases 5
  cookbook_name :advisory_service
  repo "https://github.wdf.sap.corp/D062286/advisory-service.git"
  user "nginx"
  group "nginx"
  migration_command "bin/rake db:migrate"
  before_migrate #  before_symlink #  restart_command #  after_restart #
  shared_path "/srv/www/advisory-service/shared"
  destination "/srv/www/advisory-service/shared/cached-copy"
  current_path "/srv/www/advisory-service/current"
end
[0m
[0m
[2014-08-21T15:31:02+00:00] INFO: Running queued delayed notifications before re-raising exception
[2014-08-21T15:31:02+00:00] ERROR: Running exception handlers
[2014-08-21T15:31:02+00:00] ERROR: Exception handlers complete
[2014-08-21T15:31:02+00:00] FATAL: Stacktrace dumped to /var/chef/cache/chef-stacktrace.out
[2014-08-21T15:31:03+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
Command failed with exit code 1: /opt/chef/bin/chef-solo

i get the following message:
Chef::Exceptions::Exec: deploy_revision[advisory-service] (/var/lib/monsoon/repos/cert/rails_dev/chef/cookbooks/sap-deploy/providers/rails.rb line 70) had an error: Chef::Exceptions::Exec: bin/rake db:migrate --trace returned 1, expected 0
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/mixin/command.rb:128:in `handle_command_failures'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/mixin/command.rb:75:in `run_command'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:204:in `block in migrate'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/mixin/why_run.rb:52:in `call'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/mixin/why_run.rb:52:in `add_action'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider.rb:149:in `converge_by'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:202:in `migrate'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:160:in `deploy'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:109:in `block in action_deploy'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:443:in `with_rollback_on_error'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy.rb:108:in `action_deploy'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider/deploy/revision.rb:37:in `action_deploy'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/provider.rb:114:in `run_action'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource.rb:625:in `run_action'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/runner.rb:49:in `run_action'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/runner.rb:81:in `block (2 levels) in converge'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/runner.rb:81:in `each'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/runner.rb:81:in `block in converge'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection.rb:98:in `block in execute_each_resource'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection/stepable_iterator.rb:116:in `call'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection/stepable_iterator.rb:116:in `call_iterator_block'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection/stepable_iterator.rb:85:in `step'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection/stepable_iterator.rb:104:in `iterate'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection/stepable_iterator.rb:55:in `each_with_index'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/resource_collection.rb:96:in `execute_each_resource'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/runner.rb:80:in `converge'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/client.rb:429:in `converge'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/client.rb:494:in `do_run'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/client.rb:199:in `block in run'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/client.rb:193:in `fork'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/client.rb:193:in `run'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/application.rb:183:in `run_chef_client'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/application/solo.rb:239:in `block in run_application'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/application/solo.rb:231:in `loop'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/application/solo.rb:231:in `run_application'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/lib/chef/application.rb:66:in `run'
/opt/chef/embedded/lib/ruby/gems/1.9.1/gems/chef-11.6.0/bin/chef-solo:25:in `<top (required)>'
/opt/chef/bin/chef-solo:23:in `load'

Similar Messages

  • Error deploying app to 10g 1.3 with SQLServer drivers...

    I developed a web application using JDeveloper 10.1.3 using Microsofts SQL Drivers to access SQLServer databases. The defined data sources work fine under the built in OC4j in Jedeveloper (10.1.3). The problem I encounter is when I try to deploy it to the llive server. It is encountering an error when trying to define the data sources. The error follows:
    [Oct 11, 2006 1:18:58 PM] Initializing ClassLoader(s)
    [Oct 11, 2006 1:18:58 PM] Initializing EJB container
    [Oct 11, 2006 1:18:58 PM] Loading connector(s)
    [Oct 11, 2006 1:18:58 PM] Starting up resource adapters
    [Oct 11, 2006 1:18:58 PM] Warning. Unable to set up connection factory to location valspar-intranet for a resource adapter in {1}
    [Oct 11, 2006 1:18:58 PM] application : valspar-intranet is in failed state
    [Oct 11, 2006 1:18:58 PM] Operation failed with error: Error occurred initializing connectors. Exception is: Exception creating connection pool. Exception: oracle.oc4j.sql.config.DataSourceConfigException: Unable to create : com.microsoft.jdbc.sqlserver.SQLServerDriver
    I have uploaded the libraries necessary to use the drivers. Can anyone shed any light on this issue?
    Thanks in advance.

    i think you only want to add the Sql deriver jars to the library of the OC4J and this can be done as follow
    In a text editor, edit the application.xml file in <OracleHome>/j2ee/home/config/.
    Add <library> tags pointing to msbase.jar , msutil.jar, and mssqlserever.jar The syntax is <library path="<path>">
    For example, if you used the default installation path, you would add the following tags to the application.xml file:
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar"/>
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar"/>
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar"/>
    for more Information
    http://www.oracle.com/webapps/online-help/jdeveloper/10.1.2/state/content/navId.4/navSetId._/vtTopicFile.bc4j%7Cforeign_db%7Cbc_psqlserver%7Ehtml/

  • Gift an App problem: can't pay with itunes credit!

    Hello, this morning i tried to gift an app to a friend of mine, i've put his email adress in the gift an app page but then itunes asked me to put a new payment option... the problem is that i have 13€ on my itunes account and the app costs only 0,79 cent.
    Why i can't pay with my itunes credit?

    had the same problem last week and was very disappointed because of it... have the same wish
    http://www.sccs.swarthmore.edu/xmlrpc/13/map.html
    http://www.sccs.swarthmore.edu/xmlrpc/14/map.html
    http://www.anthro.umass.edu/joomla15/licence/copyright/13/map.html
    http://www.anthro.umass.edu/joomla15/licence/copyright/14/map.html
    http://psychology.clas.asu.edu/files/u19/color/14/map.html
    http://psychology.clas.asu.edu/files/u19/color/15/map.html
    http://www.sccs.swarthmore.edu/xmlrpc/13/index.html
    http://www.sccs.swarthmore.edu/xmlrpc/14/index.html
    http://www.anthro.umass.edu/joomla15/licence/copyright/13/index.html
    http://www.anthro.umass.edu/joomla15/licence/copyright/14/index.html
    http://psychology.clas.asu.edu/files/u19/color/14/index.html
    http://psychology.clas.asu.edu/files/u19/color/15/index.html

  • SharePoint 365 Deploy App -- "another App with the same version and product ID."

    Hi all
    When I want to deploy App I got this message:
    2>Active Deployment Configuration: Deploy App for SharePoint
    2>  Skipping deployment step because a pre-deployment command is not specified.
    2>  Skipping the uninstall step because the app for SharePoint is not installed on the server.
    2>  Install app for SharePoint:
    2>  Uploading the app for SharePoint...
    2>Error occurred in deployment step 'Install app for SharePoint': The provided App differs from another App with the same version and product ID.
    If the App exist why it doesn't uninstall it. And also its not possible to Retract:
    Skipping the uninstall step because the app for SharePoint is not installed on the server.
    I solved my problem by changing ProductID manually but I don't want to make the server with dirty small apps.
    Any idea?
    Thanks

    Hi,
    Check the Site URL in project properties to which the app is installed.
    You have to choose the right path first where the app is installed and then Build>Retract.
    Then change the path to new one and try build. It looks like you are trying to retract from wrong Site URL.
    Thanks
    Jashandeep K

  • Deployment (Ejb and third party jars with portal app)

    My problem is that I'm trying to set up the development env for a portal project.
    I have an ejb and a third party jar in my portal app. My portlets have some java
    classes associated with them. The ejb needs to reference(instantiate) the java
    classes in the portlets.
    Right now the only way I can get it to work is to put the ejb, third party jar
    and the portlet classes(jarred up) into the classpath of the server.
    I think there should be a way to deploy these things without putting them in the
    class path. I've read all the manual sections about deploying.
    Can anyone help me with this. It would be much appreciated.
    Thanks
    Rob Castle
    Principal
    NuWave Solutions, LLC
    12510 Prosperity Drive
    Suite 300
    Silver Spring, MD 20904
    office phone: (301) 625-3000 ext. 2003
    mobile phone: (410) 340-5529
    email: [email protected]
    website: www.nuwavesolutions.com

    On 01/10/2002 06:40 AM, Rob Castle wrote:
    My problem is that I'm trying to set up the development env for a portal project.
    I have an ejb and a third party jar in my portal app. My portlets have some java
    classes associated with them. The ejb needs to reference(instantiate) the java
    classes in the portlets.
    Right now the only way I can get it to work is to put the ejb, third party jar
    and the portlet classes(jarred up) into the classpath of the server.
    I think there should be a way to deploy these things without putting them in the
    class path. I've read all the manual sections about deploying.
    Refer to the portal deployment guide
    (http://edocs.bea.com/wlp/docs40/deploygd/index.htm). Also refer to
    http://edocs.bea.com/wls/docs61/ejb/deploy.html for more general
    information on deployment of ejbs.
    Regards,
    Subbu

  • Exception when running deployed app in standalone WLS

    When running the deployed app in a standalone WLS, I get the following exception, and nothing gets shown in the browser. Running in jdev/integratedWebLogicServer is fine though. I deployed the app in jdev to the standalone WLS.
    ]] Root cause of ServletException.
    javax.faces.FacesException: oracle.adf.controller.ControllerException: ADFC-10001: cannot instantiate class 'com.oracle.pm.eai.supporttool.ui.bean.SupportToolBean'
         at oracle.adfinternal.controller.util.Utils.createAndLogFacesException(Utils.java:192)
         at oracle.adfinternal.controller.beans.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:180)
         at oracle.adfinternal.controller.beans.ManagedBeanFactory.instantiateBean(ManagedBeanFactory.java:860)
         at oracle.adfinternal.controller.application.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:112)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
         at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:68)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:107)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:251)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:486)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:670)Following are the WLS and Jdeveloper versions I used.
    WebLogic 10.3.3.0
    Jdeveloper 11.1.1.3.0

    some problem here
    ADFC-10001: cannot instantiate class 'com.oracle.pm.eai.supporttool.ui.bean.SupportToolBean'is this your owned bean?.. try to debug and see whts the problem..
    make sure the class is ientified.. while running.. if not clean and rebuild the project and try..

  • I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. HELP PLS

    I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. Even my bookmarks won't load. I don't know what the problem is can someone please help

    I have an iphone5 which is currently off ( network I use to have with sprint) but now I'm using wifi. All of my apps work fine except my safari (web). When I'm ready to search suggestions won't pop up and my screen will freeze and go blank. Even my bookmarks won't load. I don't know what the problem is can someone please help

  • Office Web Apps Server 2013 - Word Web App - Problem with Tab space

    Hello We have Office Web Apps Server 2013 running with SharePoint 2013.  Users Editing a Word document with Office Web Apps, can't use "Tabs", any Word document with Tabs; the tabs are replaced with a single space.
    Has anyone noticed this?  Is this a bug?
    -thanks
    thomas
    -Tom

    Yes, currently the Word Web App does not support
    Tab Keyboard shortcut for editing document content .
    For more information, you can have a look at
    the article:
    http://office.microsoft.com/en-us/office-online-help/keyboard-shortcuts-in-word-online-HA010378332.aspx?CTT=5&origin=HA010380212
    http://social.technet.microsoft.com/Forums/en-US/3f5978d3-67a1-4c8c-981f-32493d72610b/office-web-apps-server-2013-word-web-app-problem-with-tab-space?forum=sharepointgeneral

  • Getting app-store-import-exception with FIM-MA Full Imports SQL Timeouts

    Hi,
    Any idea whats going on here? Full Import on FIM-MA leads to app-store-import-exception.
    Here is a quick profile of the situation:
    FIM Sync, FIM Service & FIM Portal all are instaled on the same machine with 24GB RAM hosted as a Virtual Machine.
    FIM-MA Full Import leads to app-store-import-exception
    Event log reports "Timeout expired.  The timeout period elapsed prior to completion of the operation or the server is not responding"
    Here is a screen shot: http://www.freeimagehosting.net/image.php?e5570db7f6.jpg
    As you can see, FIM-MA imported close to 118500 objects before timing out.
    Here are the things I have tried:
    Extended FIM timeout on the services as per
    Darryl's Blog
    Provided FIM MA's password as per
    Ahmed's suggestion
    Restricted SQL Service Max RAM to 15 GB (Machine has 24GB) as per
    David Lundell's suggestion
    Thanks for your help in advance.
    Thanks,
    Here is the Application Event Log
    Log Name: Application
    Source: FIMSynchronizationService
    Date: 1/6/2011 11:29:00 AM
    Event ID: 6500
    Task Category: None
    Level: Error
    Keywords: Classic
    User: N/A
    Computer: fimsrv.fimdev.pvt
    Description:
    The description for Event ID 6500 from source FIMSynchronizationService 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:
    There is an error executing ILM MA full import.
    Type: System.Data.SqlClient.SqlException
    Message: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    Stack Trace: at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
    at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
    at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
    at System.Data.SqlClient.SqlDataReader.get_MetaData()
    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
    at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
    at System.Data.SqlClient.SqlCommand.ExecuteReader()
    at Microsoft.ResourceManagement.Data.Sync.FullImportGetNext(Int64 beginObjectKey, Int64 maxObjectKey, Int32 batchSize)
    at MIIS.ManagementAgent.RavenMA.FullImportGetNextBatch(Int64 maxObjectKey, Int32 batchSize)
    the message resource is present but the message is not found in the string/message table
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="FIMSynchronizationService" />
    <EventID Qualifiers="0">6500</EventID>
    <Level>2</Level>
    <Task>0</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2011-01-06T17:29:00.000000000Z" />
    <EventRecordID>1582399</EventRecordID>
    <Channel>Application</Channel>
    <Computer>fimsrv.fimdev.pvt</Computer>
    <Security />
    </System>
    <EventData>
    <Data>There is an error executing ILM MA full import.
    Type: System.Data.SqlClient.SqlException
    Message: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    Stack Trace: at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
    at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
    at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
    at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()
    at System.Data.SqlClient.SqlDataReader.get_MetaData()
    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
    at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
    at System.Data.SqlClient.SqlCommand.ExecuteReader()
    at Microsoft.ResourceManagement.Data.Sync.FullImportGetNext(Int64 beginObjectKey, Int64 maxObjectKey, Int32 batchSize)
    at MIIS.ManagementAgent.RavenMA.FullImportGetNextBatch(Int64 maxObjectKey, Int32 batchSize)</Data>
    </EventData>
    </Event>
    Thanks,
    Jameel Syed |
    Identity & Security Strategist | [email protected] |
    Simplified Identity and Access Management

    That is unusual. I suggest checking for database integrity and peforming index maintenance, on both the FIMService and FIMSync databases.
    You could also increase the following timeout (see link below for more settings)
    The values in Table 17 are located in the registry key: SOFTWARE\Microsoft\Forefront Identity Manager\2010\Synchronization Service.
    Table 17
    Registry value name
    Value type
    Class
    Created by
    Notes
    ReadTimeOut
    <dword>
    HKLM
    Admin
    The default value is 58, specified in seconds.
    Note
    Only used by the management agent for FIM (FIM MA) for reading from the FIM Service data base.
    http://technet.microsoft.com/en-us/library/ff800821(WS.10).aspx
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Problem in background task with Control channel trigger in Windows 8.1 app

    Hi,
    I created app with control channel trigger as background task.
    This is working fine in windows 8.1 desktop whenever app in background and switching from my app to other apps.
    But this same behavior is not working fine in windows tab, whenever app switching the notification associated with background task is not working. And some times it throws delayed notifications.
    As assumption based, is there any problem in tab to initiate the background task in suspended mode? or is there any regulations for control channel trigger using?
    Expecting your feedback!!! thanks

    Hello Kabir,
    Since this issue is related windows store apps, I move it to the
    store app forum for getting better help.
    Rgeards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unexpected problem: uncaught exception when working with audio files in Soundtrack Pro

    Hey,
    Whenever I double click an audio file in the timeline to work on it, I end up getting the Error message: "Unexpected problem: uncaught exception" and Soundtrack Pro eventually crashes.  Also, this happens when I try to work with audio files in the file editor.  I have Leopard and am using Logic Studio 8.  Any insight would be much appreciated. Thanks
    Matt

    Didnt know how to remove the original clip from the STP arrange window - or whatever it's called in STPro.  So I could go no further in my perverse science experiment. 
    It also appeared that I could only import an aif but not a wav? 
    I gave up on STPro and did what I needed to do in Logic, which I use regularly.    
    Thank you for folowing up on this. 
    PS.  I used to use an old PowerPC version (1.0.3) of STPro and loved the way it visually showed the change in the waveform when you added each efffect.  It appears that the new version (3.0.1) does not allow you to do this anymore?  You can render or flatten the effects to see the final waveform, but then you are dead in the water and cant make changes?  
    Im such a newbie at STPro that I am probably not using it right? 

  • Naming Exception when deploying app

    Hi, I hope someone can point me in the right direction.
    Ths app was deploying and working fine until I added the user-manager to the orion-application.xml. The I use the data source in the main app so I know that is defined okay but I get the following error.
    Deployment failed: Nested exception
    Root Cause: deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: Error initializing userManager 'com.evermind.sql.DataSourceUserManager': NamingException: jdbc/FooDB not found
    Resolution: . deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: Error initializing userManager 'com.evermind.sql.DataSourceUserManager': NamingException: jdbc/FooDB not found
    Here is the user-manager tags
    <user-manager class="com.evermind.sql.DataSourceUserManager">
    <property name="dataSource" value="jdbc/FooDB" />
    <property name="table" value="users" />
    <property name="usernameField" value="user_name" />
    <property name="passwordField" value="user_pass" />
    <property name="defaultGroups" value="oracle_groups" />
    <property name="staleness" value="0" />
    </user-manager>
    Thanks in advance

    Now I'm getting the following error, but I've tried to 100 different ways of setting up the xml config files to get rid of the error and I can't
    05/01/19 17:00:47 Error instantiating application at file:/C:/OraHome1/j2ee/Development/applications/Foo.ear: Error initializing
    userManager 'com.evermind.sql.DataSourceUserManager': NamingException: Need to specify class name in environment or system property, or
    as an applet parameter, or in an application resource file: java.naming.factory.initial
    I've added the datasource (that works from within the application) to the "Development" instance using the Enterprise Manager 10g (9.0.4)
    <data-source location="jdbc/FooBarDB" class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource" password="FooBar" max-connect-attempts="20" xa-location="jdbc/FooBarXADB" ejb-location="jdbc/FooBarEJBDB" wait-timeout="10" schema="database-schemas/mysql.xml" connection-driver="com.mysql.jdbc.Driver" username="FooBar" min-connections="5" max-connections="100" url="jdbc:mysql://172.16.120.6/FooBar" inactivity-timeout="200" name="jdbc/FooBarDB"><description>defined in app for security</description></data-source>
    I've just run out of ideas, or got confused or both, any help great before I lose all my hair

  • Please Help Me With My Yahoo App Problem

    Please Help Me With My Yahoo App Problem, Everytime I Want To Log In To Yahoo With Yahoo Application This Messege Appears, Please Help Me With this

    Do you have a blackberry data plan as opposed to a standard carrier data plan? 

  • When I am downloading a free application (foursquare) in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to fix this problem?

    I am currently using iPhone 3GS and when I am going to download foursquare which is a FREE application in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to solve the problem? For further informations, I am currently using Windows running Vista. Special thanks to those who replied.

    Your iTunes account sounds like it does not have a credit card or payment attached to it. Even free apps require that you have entered payment information even though you won't be charged for the app.

  • Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    Good day I need the solution to the problem presented my iphone with ios upgrade from 7 to access any app, I get a message that says "log on to itunes to receive notifications"

    After the iOS 7.0.2 update words with friends is not working for me either. When I attempt to open the app it just closes itself after a few seconds of being open. This happens every time I attempt to open it.

Maybe you are looking for

  • Logical system in CLEAN_REQREQ_UP and BBP_GET_STATUS

    Hi experts, Just a very simple question : do you confirm the logical system we have to put in CLEAN_REQREQ_UP and BBP_GET_STATUS variants are that of SRM? Thanks in advance.

  • Moving Values to fields of different data types- Conversion

    I'm having trouble figuring out how to move a value from a field of a <b>char type</b> to a field of <b>structure RSDSSELOPT</b> type in a different itab. I'll show you what I have so far. DATA: BEGIN OF ITABAPI OCCURS 0,       SEARCHFLD LIKE ZDOLTAR

  • Since i intalled mountain lion on my macbook pro it keeps crashing and rebooting

    Since i installed mountain lion it keeps crashing and reeboting here is the crash report i would be so grateful if anybody could help : Interval Since Last Panic Report:  67951 sec Panics Since Last Report:          11 Anonymous UUID:                

  • Call of an external web service out of the ABAP-Stack

    Hi experts, i have to implement a call of an external webservice out of the ABAP-stack. Directly from an ABAP-report, not using any PI/XI. The only thing the one implemented the service could give me was a description of the SOAP-call which should ta

  • Problem when quitting the application flash cs4

    Just having a trouble when i quit the application, it seems the application is blocked and i am obliged to click (ctrl-alt-delete) and stop the processor of flash... I hope someone can help me out in this problem...