Validation error when trying to schedule a backup.

Hello,
I'm trying to preform a backup in my oracle 10g.
when trying to start a backup i'm receiving the following message:
Validation Error
Examine and correct the following errors, then retry the operation:
Error - Connection to host as user admin failed: IOException in sending Request :: Connection refused: connect
I've searched all over google for an answer and hasn't come up with anything.
I've tried the Batch Job solution - didn't work.
Tried to add the local user to OEM - Administrators - didn't work as well.
I've added a new user with admin privileges and did the same procedure as well for that user, with no success.
Any help will be appreciated.
Thank you.

Hi,
Try to google it first
You have to provide the ‘Log on as a batch job’ privilege:
1. Go to control panel/administrative tools
a. click on “local security policy”
b. click on “local policies”
c. click on “user rights assignments”
d. double click on “log on as a batch job”
e. click on “add” and add the user that was entered in the “normal username” or “privileged username” section of the EM Console.
2. Go to the Preferences link in the EM GUI
a. click on Preferred Credentials (link on the left menu)
b. under “Target Type: Host” click on “set credentials”
c. enter the OS user who has logon as a batch job privilege into the “normal username” and “normal password” fields
3. Test the connection
a. while in the Set Credentials window, click on “Test”
Refer the following link:
Error - Connection to host as user xxxxxxxx failed.
https://kr.forums.oracle.com/forums/thread.jspa?threadID=2362207
Edited by: Varma on Jul 23, 2012 1:32 PM

Similar Messages

  • Unknown validation error when trying to publish Iweb

    Im trying to publish my iweb page but it sends me to a mobile me login page. This has never happened since i first set up my mobile me. When I type in my password which is 7 characters then click on the login the password jumps to 12 characters and I get an unknown validation error. Any ideas
    Message was edited by: WorshipPastor

    This is from the Account page of the MobileMe website. I'm unable to update my website right now and I believe this must be the reason.
    System Status
    * MobileMe System Preferences on Mac OS X
    * MobileMe members may be unable to sign in to MobileMe in Mac OS X System Preferences. Normal service will be restored ASAP. We apologize for any inconvenience.

  • Error When Trying to Schedule Webi report using SAP authentication

    Hii,
    We are trying to Schedule Webi report in CMC for Group of Users using SAP authentication(SSO) ,While Trying this we are geting error Unable to Connect to SAP BW server Incomplete Logon Data ..(IES 10901) .
    Authorization done at BI side and Its working properly.Users are able to login into BI Launchpad and View Report as per authorization
    Some Webi reports are created using BICS connection and some  are created using Universe Design Tool (.UNV) which are migrated from BO 3.1 to BO 4.0
    Server Status:
    BO server and Client Tools-:BO 4.0 SP6
    BW System-7.01
    Please refer attach Screen Shot

    Hi Rupesh,
    Please check the below note:
    Seems issue with SNC/STS settings.
    1798197 - Schedules fails with error "Database error: Unable to connect to SAP BW server Incomplete logon data.. (IES 10901)" in BI 4.0
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361…

  • Error when trying to schedule a workbook

    Hello,
    I'm trying to schedule a workbook, and Discoverer Plus is reporting an error :
    ORA-04608: existing state of packages has been discarded
    ORA-04603: package body "ACAIQPROD.EUL5_BATCH_USER" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    In USER_ERRORS, I get :
    EUL5_BATCH_USER, line 1110, position 67, PL/SQL: ORA-00942: table or view does not exist
    EUL5_BATCH_REP_SECURE, line 1139, position 67, PL/SQL: ORA-00942: table or view does not exist
    But both packages do exist the ACAIQPROD (a user with full DBA privileges). ACAIQPROD.EUL5_BATCH_USER has 11 functions in it.
    Yes, I did enabled the DBMS_JOB package, I set 'job_queue_processes' to 2, and I ran the 'batchusr.sql' script. Using Discoverer 10gR2 and Oracle Database 9.2.02.

    The user is a full DBA so it already has access to v$parameter, but I have to use sys.v_$parameter :
    SQL> select count(*) from sys.v_$parameter;
    COUNT(*)
    258
    SQL> select count(*) from v_$parameter;
    select count(*) from v_$parameter
    ERROR at line 1:
    ORA-00942: table or view does not exist

  • "Subscriptions limit reached for same user" validation error when trying to create a subscription to a product - wha can cause this?

    Hi,
    I've created a third product level called "partner" other than the two that come as standard.
    I'm running through the process of taking an existing user from the starter product to the partner product, and am subscribing the user to partner before removing the starter subscription. There seems no problem with a user having both a starter and unlimited
    subscription, but am getting the following error when subscribing to partner.
    "Subscriptions limit reached for same user"
    This is using a subscriptions put. The same code works fine when upgrading to unlimited.
    What can cause this?
    Andy

    Hi Miao,
    The function to promote someone to partner is:
    public async Task<ActionResult> ToPartner(string id)
    //add partner subscription
    var prodId = await APIMHandler.GetProductIdFromName("Partner");
    var subscriptionId = Guid.NewGuid().ToString();
    //set apim role to partner
    var partnerId = (await APIMHandler.GetGroups()).First(a => a.name == "Partners").id;
    await APIMHandler.AddUserToGroup(id, partnerId);
    if (await APIMHandler.SubscribeToProduct(subscriptionId, id, prodId))
    //disable starter subscription
    await ApimDelegationController.HandleFreeSubscriptionRemoval(id);
    //set local role to partner
    await UserManager.AddToRoleAsync(id, "Partners");
    return RedirectToAction("Index");
    Where subscribetoproduct is:
    public static async Task<bool> SubscribeToProduct(string subscriptionId, string UserId, string productId)
    //The REST API and the delegation are inconsistent in how they represent ids.
    if (!UserId.StartsWith("/users/"))
    UserId = "/users/" + UserId;
    if (!productId.StartsWith("/products/"))
    productId = "/products/" + productId;
    var client = new HttpClient();
    client.DefaultRequestHeaders.TryAddWithoutValidation("Authorization", "SharedAccessSignature " + CalculateAcessToken(ApimIdentifier, ApimPrimaryKey));
    var uri = ApimBaseUrl + "subscriptions/" + subscriptionId.ToString() + "?api-version=" + ApiVersion;
    var response = await client.PutAsJsonAsync(uri, new { userId = UserId, productId = productId, state = "active" });
    if (response.StatusCode == System.Net.HttpStatusCode.Created)
    return true;
    if (response.StatusCode == System.Net.HttpStatusCode.Conflict)
    var error = await response.Content.ReadAsStringAsync();
    return false;
    if (response.StatusCode == System.Net.HttpStatusCode.BadRequest)
    var error = await response.Content.ReadAsStringAsync();
    return false;
    var errorf = await response.Content.ReadAsStringAsync();
    throw new Exception(string.Format("Error in SubscribeToProduct: return status {0}. Content: {1}", response.StatusCode.ToString(), errorf));
    The status code is "BadRequest" and the error provided earler is returned.
    So at this time the user is added to the "partners" group, but I can't subscribe them to the Partner subscription, which is accessible to members of the partner group.
    Andy

  • Error when trying to restore from backup

    I just received an iPod replacement and when I go to restore from backup it gives me an error. The photos are restored but no music or video. Any suggestions? Thanks

    lllaass wrote:
      If they are not in the iTunes library they can be synced to the iPod.
    They CANNOT be synced to the iPod.
    B-rock

  • Error when trying to export GPO Backup Folder

     Setting Default file format has following errors:
    Rule Save Word files as has error: The string is missing with ID: '
                  ' in setting 'Default file format'.
    I am trying to export a Group Policy using Microsoft Security Compliance Manager and I get this error
    Any ideas as to what is wrong??
    thanks
    many thanks

    Hi Martin,
    We are using OAM also. So, It might cause these errors. We will try to Install it from the beginning....
    Thanks....
    But, I have another issue.
    1) We put our new changes by running patch_jboss.cmd file. After doing this, if we run xlStartServer.bat on <OIM_HOME>\bin directory, we can see all the changes.
    But, if we start jBoss using <JBoss>\bin\run.bat file, we can not see any changes. I try to clear cache using PurgeCache.bat file. But, it is still not working....
    2) When we start Jboss using xlStartServer.bat file, loggs are not written into <JBOSS>\server\default\log\server.log file. I try to configure using best practice guide. But, it is still not working...If I start JBoss using run.bat file on jboss, it writes loggs to server.log file..
    3) Earlier, when we are doing development, we did not use OAM server to connecto to web site. So, for some customizations, I get the current user's userLogin from
    <bean:define id="userLogin" name = "userMemberOfForm" property="userID" type="java.lang.String"/>..This works fine..
    But, since we are going to use OAM or Windows authentication to connect to OIM web in live, it returns null or empty for "userLogin"....(if we use the above code)...How can I get the userLogin of the current login user....???
    Regards,
    Chaturanga

  • Error when trying to schedule a report in infoview

    If i try to schedule a report and set the format to PDF and destination to specific email recipients and click the schedule button. i get the following error An error has occurred: Object reference not set to an instance of an object.
    my .NET version is 2.0.50727
    Business objects XI R2

    I'm having the same problem in Business Objects 4 BI Launch Pad with reports that were created in CR 2011.
    The viewer could not process an event. Error in File Buyer Status:
    Encapsulating page failed. []
    Error code:0 [CRWEB00000119]
    The interesting thing is that I have a test platform where all my reports work correctly.  However, all these reports fail with the error message on my production platform.
    On the production platform, I can run these reports from CMC without any errors.  I suspect that something about my Single Sign-On to database configuration is not correct.
    So far, I have been unable to detect any significant differences between the working test platform and the failing production platform.

  • Logon error when trying to schedule a report

    Hi,
    We are using Crystal Reportd 2008 server and designer. The reports has dyanmic parameters which are created in the Business Infoview manager. The Default Database Configuration is set for all reports and can be scheduled sucessfullly most of the time. However, I get the following error randomly:
    An error has occurred: The database logon inofrmation for this report is either incomplete or incorrect.
    I have made sure that logon inofrmation is correct for the report and Database connnection in Business Infoview manager.
    Please advise ASAP as this is impacting users worldwide.

    Hi Natalie,
    since this is a production critical error I would first to install the latest fixes available for CRS 2008 and see if the problem remainds. In this case I would suggest to open a case by SAP support.  Please keep in mind that the described error can be also an indication that there is a problem accessing salesforce.com for your BOBJ server (network connectivity, overload on the salesforce.com side etc).
    Regards,
    Stratos

  • HT3546 I get an error when trying to back up on my TC. Message says - The backup disk image "/Volumes/Data/Macintosh.sparsebundle" could not be accessed (error -1).

    I get an error when trying to back up on my TC. Message says - The backup disk image “/Volumes/Data/Macintosh.sparsebundle” could not be accessed (error -1).
    Any suggestions

    See here...
    https://discussions.apple.com/message/20933934#20933934

  • I have switched offices and computer. may I still access my old tunes? next, I get an error when trying to download Itunes to my new compuet: c:\DocumentsandSettings\aabugattas\desktop\itunessetup.exe is not a valid Win32 application  How can i download i

    I have switched offices and computer. may I still access my old tunes? next, I get an error when trying to download Itunes to my new compuet: c:\DocumentsandSettings\aabugattas\desktop\itunessetup.exe is not a valid Win32 application  How can i download it?

    In the course of your troubleshooting to date have you worked through the following document?
    iTunes: Windows reports that "iTunesSetup.exe is not a valid Win32 application"

  • I keep getting this error when trying to backup time capsule with time machine. The backup disk image "/Volumes/Data-1/Dan's iMac.sparsebundle" is already in use.

    I keep getting this error when trying to backup time capsule with time machine. The backup disk image “/Volumes/Data-1/Dan’s iMac.sparsebundle” is already in use.

    Make sure that no other Macs are backing up at the time.
    Pull the power cable from the back of the Time Capsule
    Count to ten
    Plug the power cable back into the back of the Tme Capsule
    Wait a few minutes, then try a backup again.

  • "Operation is not valid due to the current state of the object" error when trying to create a link for a shared folder in OneDrive

    I'm trying to share a folder in OneDrive with another user in my organization, and create a link so that people outside of the company can see the folder. Whenever I try to create a link I get an error that says: "Couldn't create the link sorry something
    went wrong operation is not valid due to the current state of the object" How do I resolve this?

    Hi,
    Sorry for replying late and I noticed that you posted another thread in this forum:
    http://social.technet.microsoft.com/Forums/en-US/2b8c6f54-9c59-4b37-b28f-1d49a1b7913b/operation-is-not-valid-due-to-the-current-state-of-the-object-error-when-trying-to-create-a-link?forum=officeitpro
    I've replied and kindly refer to it to see if it is helpful.
    Regards,
    Melon Chen
    TechNet Community Support

  • "please use setup.exe for installati​on instead of blackberry desktop software.m​si" error when trying to install the software through 610_b038_m​ultilangua​ge.exe

    "please use setup.exe for installation instead of blackberry desktop software.msi" error when trying to install the software through 610_b038_multilanguage.exe
    I need to install this so that i can transfer my contacts and calendar to my laptop

    Hi and Welcome to the Community!
    Sorry to be dense, but what happens when you do exactly as the message instructs?
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • On Windows Platform, encounters error when trying to open an Indesign document created from MAC

    Hi all,
    On Windows Platform, encounters error when trying to open an Indesign document in INDD format created from Mac. Error received "Either the file does not exist, you do not have permission, or the file may be in use by other application". I am currently using Adobe Indesign CC 9.2 Trial version.
    Kindly advise how can i open this document on windows platform and allows me to edit the document.
    Thanks!
    With Rgds,
    Fiona Choy

    Normally there is no problem to open any INDD opening on Windows, when created on the Mac.
    But Mac user are often not aware on the naming limitations. A file name must not contain /, \, |, :
    It should not contain any extended character, it is not a primary problem but will be, if something links to that file, so avoid also: ÄÖÜäöüß+&
    You can use all other non A-Z a-z, 0-9 and - and  _
    I personally would also recommend to avoid spaces.
    This is valid for the INDD file itself but also for all linked content.

Maybe you are looking for