Question on running using agent

The following is the explaination on agent in the startscen.sh. I don't quite understand it. If I want to run a scenario thought agent, how do I pass the agent name? It looks like it is not neither physical agent name nor the logical agent name. What is that?
-NAME=<agent_name>
Agent name that will appear in the execution log for this
session.
Caution: This agent name does not correspond to a
logical or physical agent in the topology. This parameter
does not enable to run a session on a remote agent. The
SnpsStartScen API provides this feature

When you use startscen it does not delegate the scenario to the named agent, it runs an agent in your process, and gives the agent that name. If you want to run a task from the command line on a running agent, you must create a scenario which takes the arguments and it can use the OdiStartScen Tool, which CAN set off the execution on another agent.
Craig

Similar Messages

  • Getting error while running the Interface using AGENT

    Hi All,
    i am not able to run the interface using Agent service which running in the another machine, while running i am getting error message like
    java.lang.Exception: Error during Session launching
         at com.sunopsis.dwg.dbobj.SnpSession.remoteExecute(SnpSession.java)
         at com.sunopsis.graphical.l.or.e(or.java)
         at com.sunopsis.graphical.r.z.actionPerformed(z.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    i ran the Agent services in Comment prompt, there i am getting the error like follows
    java.lang.NullPointerException
    at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
    at com.sunopsis.dwg.cmd.DwgCommandBase.prepare(DwgCommandBase.java)
    at com.sunopsis.dwg.cmd.e.t(e.java)
    at com.sunopsis.dwg.cmd.h.y(h.java)
    at com.sunopsis.dwg.cmd.e.run(e.java)
    at java.lang.Thread.run(Unknown Source)
    here i have mentioned the steps which i followed for creating agent service.
    i have two machine namely A and B both having the ODI
    i am going to use the B machine as a centralized server. so i edited the odiparams.bat file in B machine in ODI locaiton and filled the repository information
    from A machine i opened the Topology and created the Agent service there i mentioned the HOST name as "B" and port number 20300. and i configure the logical agent aswell
    from B machine i started the Agent service like agentscheduler "-port=20300".
    Agent service launched seccessfully.
    From A machine i tested the Agent. that also shown the successful window message.
    then i started running the interface using the agent i am getting the error which i have mention in the beginging.
    Interface which i ran will do the text file to table loading, so i kept that file in particular location in B machine( i have configure this location when i created the file data store in topology in A machine).
    Please help me to solve the problem...
    thanks
    nidhi
    Edited by: knidhi on Nov 26, 2009 6:54 PM

    Thanks For your Reply,
    I ran the agent as you said. here is my observation
    from the Machine B where agent is actually running, i could able to run the interface using agent service.
    but from the machine A while running the interface i am getting the following error message
    java.lang.Exception: Error during Session launching : Error during Session Preparation : You are trying to execute a session with an agent that is undefined in your repository. Please check the agent -NAME parameter.
         at com.sunopsis.dwg.dbobj.SnpSession.remoteExecute(SnpSession.java)
         at com.sunopsis.graphical.l.or.e(or.java)
         at com.sunopsis.graphical.r.z.actionPerformed(z.java)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    i have created both physical and logical agent with the same name "DEMO_AGENT", and i ran the agent in the Machine B like
    agentscheduler "-port=20301" "-name=DEMO_AGENT"
    Please help me to solvethe issue...
    Thanks
    Nidhi
    Edited by: knidhi on Nov 27, 2009 11:04 AM
    Edited by: knidhi on Nov 27, 2009 11:04 AM
    Edited by: knidhi on Nov 27, 2009 11:05 AM

  • Is there a way to get long running SQL Agent jobs information using powershell?

    Hi All,
    Is there a way to get long running SQL Agent jobs information using powershell for multiple SQL servers in the environment?
    Thanks in Advance.
    --Hunt

    I'm running SQL's to fetch the required details and store it in centralized table. 
    foreach ($svr in get-content "f:\PowerSQL\Input\LongRunningJobsPowerSQLServers.txt"){
    $dt = new-object "System.Data.DataTable"
    $cn = new-object System.Data.SqlClient.SqlConnection "server=$svr;database=master;Integrated Security=sspi"
    $cn.Open()
    $sql = $cn.CreateCommand()
    $sql.CommandText = "SELECT
    @@SERVERNAME servername,
    j.job_id AS 'JobId',
    name AS 'JobName',
    max(start_execution_date) AS 'StartTime',
    max(stop_execution_date)AS 'StopTime',
    max(avgruntimeonsucceed),
    max(DATEDIFF(s,start_execution_date,GETDATE())) AS 'CurrentRunTime',
    max(CASE WHEN stop_execution_date IS NULL THEN
    DATEDIFF(ss,start_execution_date,stop_execution_date) ELSE 0 END) 'ActualRunTime',
    max(CASE
    WHEN stop_execution_date IS NULL THEN 'JobRunning'
    WHEN DATEDIFF(ss,start_execution_date,stop_execution_date)
    > (AvgRunTimeOnSucceed + AvgRunTimeOnSucceed * .05) THEN 'LongRunning-History'
    ELSE 'NormalRunning-History'
    END) 'JobRun',
    max(CASE
    WHEN stop_execution_date IS NULL THEN
    CASE WHEN DATEDIFF(ss,start_execution_date,GETDATE())
    > (AvgRunTimeOnSucceed + AvgRunTimeOnSucceed * .05) THEN 'LongRunning-NOW'
    ELSE 'NormalRunning-NOW'
    END
    ELSE 'JobAlreadyDone'
    END)AS 'JobRunning'
    FROM msdb.dbo.sysjobactivity ja
    INNER JOIN msdb.dbo.sysjobs j ON ja.job_id = j.job_id
    INNER JOIN (
    SELECT job_id,
    AVG
    ((run_duration/10000 * 3600) + ((run_duration%10000)/100*60) + (run_duration%10000)%100)
    +
    STDEV
    ((run_duration/10000 * 3600) + ((run_duration%10000)/100*60) + (run_duration%10000)%100) AS 'AvgRuntimeOnSucceed'
    FROM msdb.dbo.sysjobhistory
    WHERE step_id = 0 AND run_status = 1
    GROUP BY job_id) art
    ON j.job_id = art.job_id
    WHERE
    (stop_execution_date IS NULL and start_execution_date is NOT NULL) OR
    (DATEDIFF(ss,start_execution_date,stop_execution_date) > 60 and DATEDIFF(MINUTE,start_execution_date,GETDATE())>60
    AND
    CAST(LEFT(start_execution_date,11) AS DATETIME) = CAST(LEFT(GETDATE(),11) AS DATETIME) )
    --ORDER BY start_execution_date DESC
    group by j.job_id,name
    $rdr = $sql.ExecuteReader()
    $dt.Load($rdr)
    $cn.Close()
    $dt|out-Datatable
    Write-DataTable -ServerInstance 'test124' -Database "PowerSQL" -TableName "TLOG_JobLongRunning" -Data $dt}
    You can refer the below link to refer out-datatable and write-dataTable function.
    http://blogs.technet.com/b/heyscriptingguy/archive/2010/11/01/use-powershell-to-collect-server-data-and-write-to-sql.aspx
    Once we've the table details, I'm sending one consolidated email to automatically.
    --Prashanth

  • Can not use stored windows credential when running merge agent with agent proxy

    I have an account ACCT_A and create a windows credential
    CRED_B target to server DISTRIBUTOR_1 (with cmdkey). 
    And I setup a pull subscription to DISTRIBUTOR_1 and set merge agent run under agent proxy with credential of account
    ACCT_A (The sql server agent is running as LocalSystem or Network Service). Then the merge agent job will failed and complain "Failed to connect to distributor
    DISTRIBUTOR_1".
    However if I change the sql server agent to run as ACCT_A and let merge agent job run as SQL Server Agent Service Account it will successfully connect to distributor
    DISTRIBUTOR_1 with credential CRED_B, with other setting unchanged. 
    Here are the questions:
    Is it possible to grant other accounts to access one's stored windows credential in Credential Manager?
    I suppose merge agent job will get full security context of ACCT_A when it runs under agent proxy with credential of ACCT_A and should be able to access stored credential CRED_B and
    successfully connect to DISTRIBUTOR_1. But nowCRED_B seems can not be accessed by merge agent. Could somebody explain what's the problem here? 

    Hello,
    I am currently looking into this issue and will give you an update as soon as possible.
    Thank you for your understanding and support.
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • I got a question regarding running iOs and Windows using virtual software.

    Greetings!
    I got a question regarding running iOs and Windows using virtual software. I recently bought a monitor so I can display Windows on it and run both OS at the same time.Now,I'm using BootCamp. I downloaded VirtualBox for "tranferring" Windows on it. Since I'm a new iOs user , what do I need to do in order to make work?
    Do I need to un-install Windows from BootCamp,install VirtualBox and then install them again?
    Any information would be appreciate it!

    That should work to use OS X, you can run MS Windows using Virtual Box and use a seperate display for the Virtual Box window. That way you can run OS X and MS Windows simultaneously. However remember Virtual Box is freeware and not a commercial application like Parallels or VMWare Fusion and may not have the features of a commercial application. Support for Windows run in any virtualization application (Virtual Box, Parallels or Fusion) is not generally done on this forum as they are not OS X related. To get help on those apps you usually will need to go to their forums.
    Remember IOS will not run on either OS X or MS Windows, it only works on IOS devices.
    Good luck with your installation.

  • SQL server agent job running as Agent Service Account whose service account does not have r/w access but is still able to write?

    Hi. I am newer to SQL server security and am reviewing some of our SQL server's configuration to make sure the services are running under accounts with least privilege.  I have a SQL server 2012 instance whose Agent service is configured to run
    under an AD user account named 'SQLServices'.  The jobs on this server are configured to run as 'SQL server agent service account', which means they should execute as user 'SQLServices'.  The jobs are set up to execute SSIS packages which read and
    write to a database on the same server where the agent job is scheduled and SSIS package installed (all on same server).  The jobs are currently executing without error and are reading writing data correctly.  Upon close examination, it turns out the
    SQLServices account is not assigned to the 'sysadmin' role and had no users mapped to any databases on this server.  How are these jobs working?  I verified in profiler that the login name indeed is 'SqlServices'.  I also verified
    that SQLServices login has no database access by remote-ing onto the server and trying to log into the DB, and access was denied as expected.  According to the literature, the Agent service needs to be a member of 'sysadmin role' but I am reading
    some cases where that is not necessarily the case.  So this is not so concerning.  What is concerning is that the login 'SQLServices' had no access to the databases on that server yet it is reading and writing to the databases as if it does. 
    The only thing I can think of is maybe jobs run as 'SQL server agent service account' on the same server as the databases it r/w to somehow has some kind of default access.  What am I missing here?  Any input would be helpful.

    After 2 days on this forum I found the answer to my own question.  In retrospect, I should have posted this under 'SQL Server Security', but I didn't know it existed.
    The 2 threads below explain that Sql agent actually runs using SID (service) NT SERVICE\SQLSERVERAGENT if you chose that when you installed.  This will automatically create an associated login NT SERVICE\SQLSERVERAGENT in SQL server with sqladmin
    role.  This is the login that Agent uses to connect to the local instance of SQL server.  If you changed to domain account to run the service during install or after using config manager, basically NT SERVICE\SQLSERVERAGENT is still
    used to connect to your local instance behind the scenes (even though you will still see your domain user as account), and the domain account is used to reach outside the server. 
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/9e6bb2de-8fd0-45de-ab02-d59bbe05f72e/servicedatabase-accounts-nt-servicemssqlserver-nt-servicesqlserveragent-what-are-they-for
    https://social.technet.microsoft.com/Forums/sqlserver/en-US/b83a52fd-fe11-4c28-a27b-88be8ae79f2a/how-do-i-change-sql-server-agent-service-account-to-nt-servicesqlserveragent?forum=sqlsecurity

  • Questions on running an Arch Mirror

    Questions on running an Arch Mirror
    Does anyone here run a public arch mirror that can give me any idea of bandwith they use ?
    Is there any issues with running the Current and Extra mirrors in the US ?
    Is there any issues with running the Community mirror in the US ?
    Mostly I would like to know what bandwidth consumption on a public mirror is for the mirrors that are normally used.  Any help with this would be greatly appreciated. 

    I don't think he would mind this info being posted... i emailed him asking for the bandwidth info for the server for a one month period.... an average.......
    - we dont have
    a record of actual data transferred, just the amount requested (which
    stands at 5440.17 GB).
    My server only allows approx 2500 GB transfer per month... so, until i can find a way to upgrade that, I won't make it a public server.... if i did, i'd owe WAY too much money at the end of every month

  • Writing agents o/p to external file and if i run the agent again it should

    Hi All,
    i want to run a agent and that result should be displayed in external file system.and i achieved this by using writing VB script and in agents i used actions in that we have invoke server script.And i got the perfect output but what 's my scenario is when i run the agnent again it should create another file with below requirements.
    The file name must contain a suffix containing the date in yyyymmdd format. In cases where the file stored more than once per day, a sequence number must also be provided within the filename.
    (i.e. v1_yyyymmdd, v2_yyyymmdd, v3_yyyymmdd, v4_yyyymmdd, v5_yyyymmdd…)
    And my VB script is like below
    '#####=========================================================================
    '## Title: Export Report
    '## Rev: 1.0
    '## Author: Paul McGarrick
    '## Company: Total Business Intelligence / http://total-bi.com
    '## Purpose:
    '## 1. This script takes a file from OBIEE and saves to the file system
    '## 2. Creates a reporting subdirectory if not already present
    '## 3. Creates a further subdirectory with name based on current date
    '## Inputs (specified in Actions tab of OBIEE Delivers Agent):
    '## 1. Parameter(0) - This actual file to be exported
    '## 2. Parameter(1) - The filename specified within OBIEE
    '## 3. Parameter(2) - Report sub directory name specified within OBIEE
    '#####=========================================================================
    Dim sBasePath
    sBasePath = "E:\reports\reports"
    Dim sMasterPath
    sMasterPath = sBasePath & "\" & Parameter(2)
    Dim objFSO
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    'check whether master directory exists, if not create
    Dim objMasterDir
    If Not objFSO.FolderExists(sMasterPath) Then
         Set objMasterDir = objFSO.CreateFolder(sMasterPath)
    End If
    Set objMasterDir = Nothing
    'build string to get date in yyyy-mm-dd format
    Dim sDate, sDateFull
    sDate = Now
    sDateFull = DatePart("yyyy", sDate) & "-"
    If Len(DatePart("m", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("m", sDate) & "-"
    If Len(DatePart("d", sDate))=1 Then sDateFull = sDateFull & "0" End If
    sDateFull = sDateFull & DatePart("d", sDate)
    Dim sDir
    sDir = sMasterPath & "\" & sDateFull
    Dim objDir
    If Not objFSO.FolderExists(sDir) Then
         Set objDir = objFSO.CreateFolder(sDir)
    End If
    Set objDir = Nothing
    Dim sFileName
    sFileName = sDir & "\" & Parameter(1)
    Dim objFile
    objFSO.CopyFile Parameter(0), sFileName, True
    Set objFile = Nothing
    Set objFSO = Nothing
    could you please any body help me out from this....

    I assume you are using Windows. Try to write a batch file so that that would look for the ibot name when ever its finds rename the file name as required.
    This would be easiest way..
    http://lmgtfy.com/?q=rename+a+file+to+current+date+using+batch+file
    Edited by: Srini VEERAVALLI on Apr 8, 2013 7:23 AM
    Can you updates all your posts?
    Edited by: Srini VEERAVALLI on May 13, 2013 6:44 AM

  • Unable to Execute Packages using Agent

    Hi,
    When i am trying to run packages using Agent which is situated on other machine it is giving the following error.
    *" unable to executethe selected logical agent is not assosciated to a physical agent in desired context."*
    java.util.NoSuchElementException
         at java.util.AbstractList$Itr.next(AbstractList.java:350)
         at com.sunopsis.graphical.dialog.SnpsDialogExecution.getAgent(SnpsDialogExecution.java:1436)
         at com.sunopsis.graphical.dialog.SnpsDialogExecution.doScenarioExecuter(SnpsDialogExecution.java:1104)
         at oracle.odi.ui.action.SnpsPopupActionExecuteHandler.actionPerformed(SnpsPopupActionExecuteHandler.java:64)
         at oracle.odi.ui.SnpsActionControler.handleEvent(SnpsActionControler.java:75)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:809)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:850)
         at java.awt.Component.processMouseEvent(Component.java:6267)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6032)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4630)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4460)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

    Hi mahesh,
    check your agent with test connection, and have a look on your context while executing time it asks context and agent.
    if u have various agents and contexts please choice correct logical agent name related to context...
    in this case also you not able to find solution, then got to topology manager--->go to logical architecture and open your agent, see your logical agent name in different contexts,please check like this under physical schema window in contexts also.
    Regards,
    surya.

  • Will Acrobat 9 Pro run using Windows 7?

    Will Acrobat 9 Pro run using Windows 7?

    This machine is Win7, 32-bit, and AA 9 has run on it from day one. Folks have even reported AA 8 running on both 32 and 64-bit versions of Win7, though there were some issues with the 64-bit version. Win7 is not one of the certified versions for AA 9, but I suspect you would have no problems. Win8.1 might be a different story. It sounds like you are considering upgrading your machine. I can not say without question you will have no problems, but my guess is that it will work fine. It would be a good idea to consider upgrading if you have a chance and the cash.

  • Install agent on solaris 10 using agent deploy application?

    Hi all,
    I have installed 10g grid control on solaris 10 with new repository database on same machine.
    The OMS, and agent is running on grid host.
    Now I want to add other hosts (targets) into grid. For this, I have to install agent on target hosts. I am using agent deploy application method for installation of agent.
    It is giving error
    Istall --> Failed
    "Pre-Install Script is Not Executed, Install is Failed, Run root.sh is Not Executed, Post-Install Script is Not Executed, Collection of Logs is Success"
    version for agent and OMS is 10.2.0.1 and for repository database is 10.1.04
    any idea, how to troubleshoot this?

    Did you get answer? I had same problem on agent 10.2.0.4 deployment on linux 2.6.9-55.ELsmp.

  • Error while installing Agent using Agent Push Method

    Hi All,
    I have installed Oracle EM Grid 10.2.0.1 on Linux 4 (Enterprise). I have moved my repository database to another host. Grid(oms,repo db,agent) is working fine. But i am trying to install one agent in remote host using Agent push method. I am getting the error
    Manual Fixes (1)
    The following corrective actions need to be taken before proceeding. For your convinience check mark each item when you have fixed that issue.
    There are some targets that cannot be monitered by the Agent.Hostname IP Address Details
    *<host> <ip-addr> PROBLEM : There are some targets on the host which agent can not monitor since they are installed by different group.*
    ERROR : Check complete. The overall result of this check is: Failed <<<<
    RECOMMENDATION : Your Oracle Home is incompatible.
    I verified SSH connectivity,TZ...
    In remote host, 2 oracle application instances are running and repository DB. I have created one directory in repository db location and installing in that directory. This error is coming in Install Stage. I checked the oracle inventory permission and other 2 instance installed directory permission. Inventory owner is oracle. Oracle EBS mount point owner is root. But it is having read, write permission.
    Is this a bug? Will this resolve after applying 10.2.0.5 patch.
    Please let me know a solution for this.
    Thanks,
    Manikandan

    Hi Rob/Nazim,
    Thanks for the Replay.... I will try to update to patch 10.2.0.5
    Regards,
    Manikandan.

  • DESS_ES_HOME: null When Running ODI agent scheduler

    Hi Experts ,
    I have scheduled a 2 scenario's in ODI 10g with 15 Mins interval and started the agentscheduler.bat, Once after the first scenario is executed, I am getting the below error on the agent and the next scenario is not getting executed.
    Could you please guide on this.
    Agent scheduler.bat :
    OracleDI: Starting Scheduler Agent ...
    Starting Oracle Data Integrator Agent...
    Version : 10.1.3.5 - 10/11/2008
    Agent in scheduling mode
    Number of items for scheduled executions:2
    09/02/2013 12:57:59 AM(main): Server Launche
    [INFO] s - Start Thread[4010@2013/09/02_01:0
    49 AM
    Initalizing the essbase wrapper and connecti
    Error accessing the properties file. essbase
    system cannot find the file specified). Usi
    Hyperion Provider Services - Release 9.3.1.1
    Copyright (c) 1991, 2007 Oracle and / or its
    connection mode : EMBEDDED
    essbase.properties: essbase.properties
    domain.db location: domain.db
    console log enable : false
    file log enable : false
    logRequest : false
    logLevel : ERROR
    java System properties -DESS_ES_HOME: null
    Thanks
    Alex

    According to this post
    Essbase Users: Setting -DESS_ES_HOME in Eclipse for EssbaseJAPI
    i suppose you aren't finding DESS_ES_HOME value. Just a question: are you using an agent based on your essbase machine?

  • Problem using agent-update.bin to roll out SunMC agents

    Greetings,
    I want to use agent-update.bin to roll out SUNMC agents to solaris 9 and 10 hosts. I use the es-agentupdate.sh tool to create the installation package and the seed file on the SunMC server in /var/opt/SUNWsymon/agentupdate.
    I copy the binary /opt/SUNWsymon/base/bin/agent-update.bin to the root on a test server.
    I run the following commands - each fails - unable to find the seed file. Can anyone suggest an -f argument which might work as I need the rollout to occur without user intervention to enter secrets.
    ./agent-update.bin -s oranc1 -r 8080 -p DPI_BasicAgent -f seed-file
    or
    ./agent-update.bin -s oranc1 -r 8080 -p DPI_BasicAgent -f ./seed-file
    or
    ./agent-update.bin -s oranc1 -r 8080 -p DPI_BasicAgent -f /var/opt/SUNWsymon/agentupdate/seed-file
    Standard out from the last of these commands is as follows:
    sbin_archive downloaded
    SUNWessmu package installed
    Running InstallClient : /tmp/agentupdate/DPI_BasicAgent/bin/sparc-sun-solaris/InstallClient -s oranc1 -p 8080 -u DPI_BasicAgent/upgrade-policy_sparc.xml -f /var/opt/SUNWsymon/agentupdate/seed-file
    InstallClient started
    upgrade policy downloaded
    Argument file /var/opt/SUNWsymon/agentupdate/seed-file absent. Exiting...
    Error: running InstallClient
    Error: running InstallClient with error code 1
    ERROR: information for "SUNWescom" was not found
    ERROR: information for "SUNWescom" was not found
    On the SUNMC server:
    root@oranc1# pwd
    /var/opt/SUNWsymon/agentupdate
    root@oranc1# ls -l
    total 6
    drwxr-xr-x 4 root root 512 Feb 5 13:59 DPI_BasicAgent
    -rw------- 1 root root 54 Nov 23 13:44 seed-file
    drwxr-xr-x 4 root root 1024 Nov 23 12:46 SunMC36_Generic
    I have also tried
    -r-------- 1 root root 54 Nov 23 13:44 seed-file
    Thanks in advance for your help
    Tony

    Greetings Mike,
    I copied the seed-file from my SUNMC server to the host being updated and put it in the same directory as agent-update.bin. Ran the following:
    ./agent-update.bin -s oranc1 -r 8080 -p DPI_BasicAgent -s ./seed-file
    The result is:
    Error: getting sbin_archive
    Web server is listening on port 8080 and accessible through a browser. Agent package directory name and seedfile name are OK.
    any additonal help appreciated.
    Regards
    Tony

  • How to undo "This solved my question" on this Using iPhone forum?

    How to undo "This solved my question" on this "Using iPhone" forum?
    new to this forum... how do you undo this?

    **** lol, In that case they should give a warning or some type of "You sure?" yes/no. I clicked completely by mistake. anyways...

Maybe you are looking for

  • ITunes Store wont open. Only thing appears is the white screen with Apple Logo

    iTunes Store won't opeen. Only thing appears is white screen with Apple Logo and takes really, really long to load.

  • Can I use IOBIT to remove ITUNES?

         I have followed every suggestion, work around etc. to uninstall Itunes on my computer. Nothing works. Since all of my music is backed up, in mutiple places, I am ready to just erase Itunes from my computer and start again. Again, Windows Uninsta

  • A question about some of the features

    I have Vista so therefore am unable to use the trial version of photoshop elements. Before I go ahead and purchase the software, I had a few questions about its features. I'll mainly be using photoshop to create digital scrapbooks. I know that photos

  • After MIGO

    Dear All,      I HAVE MADE A PO FOR MATERIAL .AFTER THAT I HAVE DONE GR(movement type 101). BEFORE THIS I HAVE MADE FOLLOWING  ADD UPS IN MATERIAL MASTER WM1 AND WM2 VIEWS :- BASE UNIT OF MEASURE = KG STOCK PLACEMENT =- FIX TICK TO u2013 ALLOW ADDN T

  • Cancel My Subscription to Creative Cloud (Company is paying for it now)

    I'm attempting to open a chat discussion in 'Learn & Support' to cancel my Creative Cloud membership. The company I work for is now paying for my subscription (along with many other licenses) and I no longer need to pay for one personally. However, i