Error 17058 Unable to start a service account on MSSQLServer and SQL Agent

hi
I am intalling SQL 2008 standard with SP1 on a Windows Server 2003 R2 SP2.
I installed as  "local service account" for MSSQLServer (SQL database engine) and SQL agent.
But I want to change to "service account" as [domain\svc_XXX] for MSSQLserver and SQL agent.
I add the [domain\svc_XXX]  in local security policy - "Log as a service"
and also add in SSMS - Security - New Login (windows authentication.
When I started the MSSQLserver and SQL agent using the [domain\svc_XXX], I got an error 17058.  Initerrlog: could not open error log file."  Operating system error=3 (The system cannot find the path specified).
I don't know where else to look at..
Also, how do I find the cumulative service pack for SQL server 2008 standard?
thanks
Irene

Hi Irene:
By seeing your error message "When I started the MSSQLserver and SQL agent using the [domain\svc_XXX],
I got an error 17058.  Initerrlog: could not open error log file."  Operating system error=3 (The system cannot find the path specified)."
Please provide access to domain\svc_XXX on
log file directory.
Thanks,
Satish Kumar.
Thanks, Satish Kumar. Please mark as this post as answered if my anser helps you to resolves your issue :)

Similar Messages

  • Error DOM_10079 : Unable to start service on any node

    hi
    i am getting below error after i have created dwh tables using 64 bit data base client . table screated successfully.
    but when i try to login to informatica and trying to start the repository services i am getting below error
    Error DOM_10079 : Unable to start service [INT_OBI_DES] on any node specified for the service .
    in the log it says unable to connect to database orcl.
    but i am able to connect to database using sql developer . but when i try it from sql plus it is giving eror saying tns error uanble to connect to connection identifier specified some thing.
    before it use to work soon after i have installed 32 and 64 bit clients to create dwh tables from dac it is not working.

    Hi Sai,
    Yes I have installed oracle client in the same box.
    Edited by: MKC on Apr 12, 2012 8:19 AM

  • Unable to start ifs service after database is restarted

    Hi All,
    I am getting this weird problem with iFS. I have web application where I connect to iFS to read some of the documents. The problem is when the database is stopped and started with App server still running (ifs is also up and running)... I am getting the following error message.
    Any help will be greatly appreciated. I have also attached the java class which I am using to get connection...
    oracle.ifs.common.IfsException: IFS-21008: Unable to connect to iFS service
    oracle.ifs.common.IfsException: IFS-11013: Unable to start inter-service event exchanger
    java.sql.SQLException: No more data to read from socket
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:168)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:210)
         at oracle.jdbc.dbaccess.DBError.check_error(DBError.java:857)
         at oracle.jdbc.ttc7.MAREngine.unmarshalUB1(MAREngine.java:731)
         at oracle.jdbc.ttc7.MAREngine.unmarshalSB1(MAREngine.java:690)
         at oracle.jdbc.ttc7.Oopen.receive(Oopen.java:103)
         at oracle.jdbc.ttc7.TTC7Protocol.open(TTC7Protocol.java:466)
         at oracle.jdbc.driver.OracleStatement.<init>(OracleStatement.java:413)
         at oracle.jdbc.driver.OracleConnection.privateCreateStatement(OracleConnection.java:470)
         at oracle.jdbc.driver.OracleConnection.createStatement(OracleConnection.java:379)
         at oracle.ifs.server.S_LibraryServiceRdbmsEventExchanger.start(S_LibraryServiceRdbmsEventExchanger.java:243)
         at oracle.ifs.server.S_LibraryService.addSession(S_LibraryService.java:2695)
         at oracle.ifs.server.S_LibrarySession.<init>(S_LibrarySession.java:1961)
         at java.lang.reflect.Constructor.newInstance(Native Method)
         at oracle.ifs.server.S_LibraryService.constructSession(S_LibraryService.java:2566)
         at oracle.ifs.server.S_LibraryService.connect(S_LibraryService.java:2359)
         at oracle.ifs.beans.LibraryService.connect(LibraryService.java:977)
         at com.comp.test.utils.iFSSession.getIfsConnection(iFSSession.java:73)
         at com.comp.test.controller.ReportRequestAction.processRequest(ReportRequestAction.java:95)
         at com.comp.test.controller.ReportRequestAction.execute(ReportRequestAction.java:64)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    --java code
              if(!LibraryService.isServiceStarted(serviceName)) {
              service = LibraryService.startService(serviceName,servicepasswd);
              } else {
              service = LibraryService.findService(serviceName);
                   //CredentialManager to authenticate a user
              CleartextCredential cred = new CleartextCredential(name, password);
              ConnectOptions connectOpt = new ConnectOptions();
                   //Sets and gets the Locale of the new session.
              connectOpt.setLocale(Locale.getDefault());
                   //Connects to iFS, establishing a new LibrarySession
              ifsSession = service.connect(cred, connectOpt);
                   //Set the administrator mode state for this session
                   ifsSession.setAdministrationMode(true);
                   return ifsSession;

    I am using the following class to get ifs session from IfsHttpLogin
    public class TestIfsSession implements IfsHttpLogin {
    * The <code>LibrarySession</code>.
    private LibrarySession m_session;
    * The <code>FolderPathResolver</code>.
    private FolderPathResolver m_resolver;
    * Default constructor required by the jsp spec for the USEBEAN tag
    * @exception IfsException
    public TestIfsSession() throws IfsException {
    public void init(LibrarySession libSession)
         this.m_session = libSession;
    * Return the login's session object.
    * @return The <code>LibrarySession</code> object.
    public LibrarySession getSession() {
    return m_session;
    * Return the login's path resolver.
    * @return The <code>FolderPathResolver</code> object.
    public FolderPathResolver getResolver() {
    return m_resolver;
    * Called when this object is bound to the HTTP session object.
    * @param event
    * The event when the object is bound to the Http session.
    public void valueBound(HttpSessionBindingEvent event) {
    // do nothing
    m_category.debug("value bound : ");
    * Called when this object is unbound from the HTTP session object.
    * @param event
    * The event when the object is unbound to the Http session.
    public void valueUnbound(HttpSessionBindingEvent event) {
    m_resolver = null;
    try {
    if (m_session != null) {
    m_category.debug("removing connection: valueUnbound " + m_session);
    m_session.disconnect();
    } catch (IfsException e) {
    e.printStackTrace();
    } finally {
    m_session = null; // release the resources
    System.gc();

  • [SOLVED] Network Configuration -- unable to start a service file

    I am following this wiki page (Using Static IP address step) and created /etc/systemd/system/network.service as instructed
    [Unit]
    Description=Connect to the other pc
    Wants=network.target
    Before=network.target
    BindsTo=sys-subsystem-net-devices-lan.device
    After=sys-subsystem-net-devices-lan.device
    [Service]
    Type=oneshot
    RemainAfterExit=yes
    EnvironmentFile=/etc/conf.d/network
    ExecStart=/sbin/ip link set dev lan up
    ExecStart=/sbin/ip addr add 192.168.1.2/24 dev lan
    ExecStart=/sbin/ip route add default via 192.168.1.1
    ExecStop=/sbin/ip addr flush dev lan
    ExecStop=/sbin/ip link set dev lan down
    [Install]
    WantedBy=multi-user.target
    But I am unable to start network.service
    $ sudo systemctl start network
    Job for network.service failed. See 'systemctl status network.service' and 'journalctl -xn' for details.
    $ systemctl status network.service
    network.service - Connect to voice
    Loaded: loaded (/etc/systemd/system/network.service; enabled)
    Active: failed (Result: resources)
    $ sudo journalctl -xn
    -- Logs begin at Sat 2013-03-30 03:48:02 AMT, end at Thu 2013-04-04 18:17:46 AMT. --
    Apr 04 18:17:26 work sudo[24774]: pam_unix(sudo:session): session closed for user root
    Apr 04 18:17:44 work sudo[25354]: void : TTY=pts/0 ; PWD=/etc/systemd/system ; USER=root ; COMMAND=/usr/bin/systemctl start network
    Apr 04 18:17:44 work sudo[25354]: pam_unix(sudo:session): session opened for user root by void(uid=0)
    Apr 04 18:17:44 work systemd[1]: Starting Connect to the other pc...
    -- Subject: Unit network.service has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Software/systemd/catalog/7d4958e842da4a758f6c1cdc7b36dcc5
    -- Unit network.service has begun starting up.
    Apr 04 18:17:44 work systemd[1]: Failed to load environment files: No such file or directory
    Apr 04 18:17:44 work systemd[1]: network.service failed to run 'start' task: No such file or directory
    Apr 04 18:17:44 work systemd[1]: Failed to start Connect to the other pc.
    -- Subject: Unit network.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Software/systemd/catalog/be02cf6855d2428ba40df7e9d022f03d
    -- Unit network.service has failed.
    -- The result is failed.
    Apr 04 18:17:44 work sudo[25354]: pam_unix(sudo:session): session closed for user root
    Apr 04 18:17:46 work sudo[25421]: void : TTY=pts/0 ; PWD=/etc/systemd/system ; USER=root ; COMMAND=/usr/bin/journalctl -xn
    Apr 04 18:17:46 work sudo[25421]: pam_unix(sudo:session): session opened for user root by void(uid=0)
    Additional info:
    I have connected 2 PCs with LAN (Ethernet) cable and want configure them for exchanging files. Both running Arch Linux. I am following the Network Configuration wiki page from the beginning. Didn't have luck with DHCP/dynamic IP, so trying Static IP this time. Restarting the pc with network.service enabled results in same error (in systemctl --failed). Same error message on both PCs.
    Trying to run ExecStart lines one by one:
    $ sudo /sbin/ip link set dev lan up
    $ sudo /sbin/ip addr add 192.168.1.2/24 dev lan
    RTNETLINK answers: File exists
    $ sudo /sbin/ip route add default via 192.168.1.1
    RTNETLINK answers: File exists
    Does this mean there already is IP address and route assigned? If so, how to find out which service has done that? Do I need to remove it? Am I following the right wiki page (didn't find another)?
    What am I doing wrong and how can I correct this error? / Point me in right direction.
    Last edited by axper (2013-04-04 19:26:17)

    henk wrote:
    EnvironmentFile=/etc/conf.d/network
    Apr 04 18:17:44 work systemd[1]: Failed to load environment files: No such file or directory
    have you checked if the network file exists?
    Oh thanks, that line was causing problems! Now I do have network.service(s) running on both PC's with this content:
    [Unit]
    Description=Connect to my desktop/laptop
    Wants=network.target
    Before=network.target
    BindsTo=sys-subsystem-net-devices-lan.device
    After=sys-subsystem-net-devices-lan.device
    [Service]
    Type=oneshot
    RemainAfterExit=yes
    ExecStart=/sbin/ip link set dev lan up
    ExecStart=/sbin/ip addr add 192.168.1.2/24 dev lan
    ExecStart=/sbin/ip route add default via 192.168.1.1
    ExecStop=/sbin/ip addr flush dev lan
    ExecStop=/sbin/ip link set dev lan down
    [Install]
    WantedBy=multi-user.target
    I don't get any errors, and this is network's status (on both PCs) when cable is connected
    $ sudo systemctl restart network
    $ systemctl status network
    network.service - Connect to my desktop
    Loaded: loaded (/etc/systemd/system/network.service; disabled)
    Active: active (exited) since Thu 2013-04-04 22:43:22 AMT; 8s ago
    Process: 9761 ExecStop=/sbin/ip link set dev lan down (code=exited, status=0/SUCCESS)
    Process: 9757 ExecStop=/sbin/ip addr flush dev lan (code=exited, status=0/SUCCESS)
    Process: 9768 ExecStart=/sbin/ip route add default via 192.168.1.1 (code=exited, status=0/SUCCESS)
    Process: 9766 ExecStart=/sbin/ip addr add 192.168.1.2/24 dev lan (code=exited, status=0/SUCCESS)
    Process: 9764 ExecStart=/sbin/ip link set dev lan up (code=exited, status=0/SUCCESS)
    And here wiki page is no more help. How can I test connection?
    I try to ping, and it works on both machines (if it's the right thing to test?)
    $ ping -c3 192.168.1.2
    PING 192.168.1.2 (192.168.1.2) 56(84) bytes of data.
    64 bytes from 192.168.1.2: icmp_seq=1 ttl=64 time=0.039 ms
    64 bytes from 192.168.1.2: icmp_seq=2 ttl=64 time=0.050 ms
    64 bytes from 192.168.1.2: icmp_seq=3 ttl=64 time=0.060 ms
    --- 192.168.1.2 ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 1998ms
    rtt min/avg/max/mdev = 0.039/0.049/0.060/0.011 ms
    Now I need to figure out how to share files. Thanks all.
    Last edited by axper (2013-04-04 19:04:43)

  • Unable to start a service execution

    While uninstalling NW7.02 i came across with an error (while selecting continue with run a new option) of
    unable to start a service execution.
    Please check the following information for the possible reason and inform the installation development.

    Hi Vidushi,
    Remove all the sapinst exe file and sapinst_dir.
    kill all the process of sapinst.
    set the new TEMP variable and start the sapinst.
    With Regards
    Ashutosh Chaturvedi

  • Unable to start presentation services , in OBIEE 11g

    Hi ,
    Unable to start presentation services , in OBIEE 11g :
    [2013-01-18T13:38:49.000+05:30] [OBIPS] [INCIDENT_ERROR:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] Invalid item /system/mktgcache/01HW447397/sawguidstate.[[
    File:catalogimpl.cpp
    Line:660
    Location:
         saw.webextensionbase.init
         saw.sawserver
         saw.sawserver.initializesawserver
         saw.sawserver

    Follow the steps below:
    1.Shutdown all OBIEE services.
    2.Replace the files sawguidstate and sawguidstate.atrin the location:
    <Instance_Home>\instances\<instance_name>\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalog\<project>\root\system\mktgcache\<name>
    with the same files from a backup or from another working instance.
    3.Restart all OBIEE services.

  • Unable to start Oracle Service Registry 10.3

    Hi,
    I have tried a number of times to get the service registry working on mylaptop to no avail.
    Environment: Windows Vista
    Service Registry: Version 10.3
    Embedded Jetty Option
    JDK: Sun JDK 1.6
    JDBC Jar file: <Weblogic 11 Home>\server\ext\jdbc\oracle\11g\ojdbc6.jar
    When I try to start the file using the serverstart.bat, I get the following error
    INFO: uddi.WaspUDDIModule - Starting registry services
    INFO: uddi.WaspUDDI - Oracle Service Registry 10.3 #OR-10.3-20081024-1216
    INFO: module.LimitsLoggingModule - The number of business services is not limited.
    Exception: null
    java.lang.ExceptionInInitializerError
    at com.systinet.uddi.inquiry.v1.validation.cache.TModelCache.<clinit>(TModelCache.java:24)
    at com.systinet.uddi.inquiry.v1.validation.FindContentsValidator.<init>(FindContentsValidator.java:77)
    at com.systinet.uddi.inquiry.v1.validation.FindContentsValidator.getInstance(FindContentsValidator.java:70)
    at com.systinet.uddi.inquiry.v1.InquiryApiImplCore.init(InquiryApiImplCore.java:90)
    at com.systinet.uddi.inquiry.v1.InquiryApiImplCore.<init>(InquiryApiImplCore.java:66)
    at com.systinet.uddi.inquiry.v1.InquiryApiImplCore.getApiInstance(InquiryApiImplCore.java:76)
    at com.systinet.uddi.inquiry.v1.InquiryApiImpl.init(InquiryApiImpl.java:67)
    at com.systinet.uddi.inquiry.v1.InquiryApiImpl.<init>(InquiryApiImpl.java:42)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at com.systinet.uddi.WaspUDDIModule.createApiInstance(WaspUDDIModule.java:90)
    at com.systinet.uddi.WaspUDDIModule.load(WaspUDDIModule.java:53)
    at com.idoox.wasp.ModuleRepository.loadModule(ModuleRepository.java:120)
    at com.idoox.wasp.ModuleRepository.addModule(ModuleRepository.java:71)
    at com.systinet.wasp.admin.PackageRepositoryImpl.notifyRepositories(PackageRepositoryImpl.java:1858)
    at com.systinet.wasp.admin.PackageRepositoryImpl.loadPackage(PackageRepositoryImpl.java:1005)
    at com.systinet.wasp.admin.PackageRepositoryImpl.resolveDependencies(PackageRepositoryImpl.java:1088)
    at com.systinet.wasp.admin.PackageRepositoryImpl.init(PackageRepositoryImpl.java:245)
    at com.idoox.wasp.ModuleRepository.loadModules(ModuleRepository.java:198)
    at com.systinet.wasp.WaspImpl.boot(WaspImpl.java:383)
    at org.systinet.wasp.Wasp.init(Wasp.java:151)
    at org.systinet.wasp.Wasp.init(Wasp.java:62)
    at com.idoox.wasp.server.Main.start(Main.java:26)
    at com.idoox.wasp.server.Main.main(Main.java:126)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.idoox.build.ant.Runner.main(Runner.java:153)
    Caused by: java.lang.NullPointerException
    at com.systinet.uddi.inquiry.v1.validation.cache.TModelCacheFeeder.findInterestingTModels(TModelCacheFeeder.java:208)
    at com.systinet.uddi.inquiry.v1.validation.cache.TModelCacheFeeder.init(TModelCacheFeeder.java:122)
    at com.systinet.uddi.inquiry.v1.validation.cache.TModelCacheFeeder.<init>(TModelCacheFeeder.java:102)
    at com.systinet.uddi.inquiry.v1.validation.cache.TModelCacheFeeder.<clinit>(TModelCacheFeeder.java:76)
    ... 33 more
    Exception in thread "main" java.lang.RuntimeException: Exception: null
    at com.idoox.build.ant.Runner.main(Runner.java:164)
    Any help would be appreciated
    Thanks...VJ

    Hi,
    This is a known issue and just because of wrong JDBC driver. Please refer below links for resolution -
    Service Registry - 500 Error when accessing URL
    http://onlineappsdba.com/index.php/2009/01/23/oracle-uddi-registry-login-issue-500-internal-server-error-when-accessing-url/
    Regards,
    Anuj

  • Error Message " Unable to start Intel My WiFi Technology"

    Setup: Lenovo W520 on Windows 7 Pro
    After Lenovo Software Update, the Intel WiDi was updated.  
    Then I run the program " Intel WiDi". I received an Error Message " Unable to start Intel My WiFi Technology"
    I try to troubleshoot and did the following
    1. Uninstall WiDi in the "Control Panel". However, i received an error message from Windows Installer --"Error opening installation log file. Verify that the specified log file location exists and is writable"
    Any suggestions on how to reinstall the Intel WiDi

    Did resolve it also! But NOT with the LENOVO UPDATE!!!
    Take a look at this Intel webpage:
    http://www.intel.com/support/wireless/wtech/iwd/sb/CS-031109.htm
    it describes what we must do to get it running!
    1. I did download the new PROSET WiFi and the WiDi driver
    2. deinstall the WIDI and PROSET Wireless drivers from LENOVO
    3. then intall the new drivers from INTEL in the order described above!

  • Monitoring Agent installation : Error 25362.Failed to start -2147023843 service

    Hi all,
    I'm facing several issues installing SCOM 2012 R2 agent on one of our servers.
    I've finally installed it, but at the end of installation process, this error is shown :
    Product: Microsoft Monitoring Agent -- Error 25362.Failed to start -2147023843 service
    I've found nothing especially for this error from Internet
    Thank you. Have a good day.
    FXE

    Hi
    Here you find the instructions for tracing
    http://blog.scomskills.com/scom-verbose-tracing/ or
    http://www.scomgod.com/?p=640
    For Fixing the Agent Installation try this (still applies to scom 2012, except certain path)
    http://blogs.technet.com/b/kevinholman/archive/2009/10/01/fixing-troubled-agents.aspx or this might also help
    http://www.bictt.com/blogs/bictt.php/2009/09/10/scom-agent-not-starting-after-installati
    Cheers,
    Stefan
    Blog: http://stefanroth.net If my post helped you, please take a moment to vote as helpful and\or mark as an answer

  • After change port for TCPIP PORT for default SQL Server instance (MSSQLSERVER), sql service and sql agent service did not started again

    Hi 
    -when i install default instance MSSQLSERVER i added a domain account as a service account,
    - when i change port for TCPIP PORT , and after sql service and sql agent service did not started again.
    it thrown error 
    The SQL Server (MSSQLSERVER) service failed to start due to the following error: 
    The service did not start due to a logon failure.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7000</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
    but when i add domain\sqservice account in administrators group these services started,
    1) here  why this change behavior  happened
    2i changed the port 1500
    adil

    HI
    the sql instance service is running with domain/sqlservice account , 
    - i stopped the sql service service
    - when i start it not started again and i found below error message
    Domain and account: MOJPORTAL\spsqlservice
    This service account does not have the required user right "Log on as a service."
    User Action
    Assign "Log on as a service" to the service account on this computer. You can use Local Security Settings (Secpol.msc) to do this.
     If this computer is a node in a cluster, check that this user right is assigned to the Cluster service account on all nodes in the cluster.
    If you have already assigned this user right to the service account, and the user right appears to be removed, 
    check with your domain administrator to find out if a Group Policy object associated with this node might be removing the right.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Service Control Manager" Guid="{555908d1-a6d7-4695-8e1e-26931d2012f4}" EventSourceName="Service Control Manager" />
        <EventID Qualifiers="49152">7041</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2015-04-24T17:12:58.326973300Z" />
        <EventRecordID>2177</EventRecordID>
        <Correlation />
        <Execution ProcessID="520" ThreadID="4044" />
        <Channel>System</Channel>
        <Computer>PORTALSQL1.mojportal.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="param1">MSSQL$xSQL</Data>
        <Data Name="param2">xxxL\spsqlservice</Data>
      </EventData>
    </Event>
    adil

  • The iTunes upgrade didn't complete.  Message comes up that says:  "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start.  Verify that you have sufficient privideges to start system services."  ...And neither Abort, Retry, or Ignore work.

    The iTunes upgrade didn't complete.  Message comes up that says:  "Service 'Apple Mobile Device' (Apple Mobile Device) failed to start.  Verify that you have sufficient privideges to start system services."  ...And neither Abort, Retry, or Ignore work.

    Hi DaHare,
    Thanks for using Apple Support Communities.  If you are having trouble with Apple Mobile Device Service starting correctly, this article has steps you can take:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/ts1567
    Cheers,
    - Ari

  • SQL server service and SQL agent service

    Hi all. If I am going to use a Domain User to start SQl server service and SQL agent service,
    does the domain user need to  be SYSADMIN ????

    No. not at all required.
    Service account should have below permissions to start SQL service and Agent services.
    Log on as a service (SeServiceLogonRight)
    Replace a process-level token (SeAssignPrimaryTokenPrivilege)
    Bypass traverse checking (SeChangeNotifyPrivilege)
    Adjust memory quotas for a process (SeIncreaseQuotaPrivilege)
    Permission to start SQL Writer
    Permission to read the Event Log service
    Permission to read the Remote Procedure Call service
    Also please go though the below URL for more information:
    http://msdn.microsoft.com/en-us/library/ms143504.aspx#Windows

  • Error: Unable to start the services !!!!!!!

    After restarting the  Sww QA server  i am getting the below error message ,I am not able to start the services
    Below is the error :
    <u><b>ERROR:</b></u>
    The database
        DRIVER=SQL
    Server;SERVER=SWWSQLPRVSR1;UID=WindowsBGinfo;PWD-tricky;APP=BGInfo;WSID=FLMIRLET10373XP;DATABASE=WindowsBGinfo cannot be opened
    Please ensure the database exists and is accessible
    Regards,
    Mag.

    Hi,
    Following string
    PWD-tricky
    Should be:
    PWD=tricky
    Regards,
    Marcin

  • Unable to start vmms service as an domain admin user

    I am not able to bring up the Hyper-V manager service on 2012 ssytem as a domain admin user Failure encountered is "Error 1297: A privilege that the service requires to function properly does not exist in the service account configuration".
    Secondly,
    If we bring up Hyper-V manager service as local system user then connection from SCVMM2012R2 is failing with  "Contact the virtual machine manager administrator to verify that your account is a member of a valid user role and then try the oepration
    again ID:1604"

    Hi,
    "If we bring up Hyper-V manager service as local system user then "
    You set the VMM service  logon as "local system account "  then the service can run but scvmm can not connect to it ?
    Please check :
    1 . if domain admins group exists in local administrators group
    2.  this service should be set to start automatically and logon as "local system account"
    Then please refe to following link :
    http://www.itguy.gr/2011/12/anoying-you-cannot-access-vmm.html
    Hope this helps
    Best Regards
    Elton Ji
    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.

  • Unable to start crs services

    Hi,
    I have completed installation of Oracle Clusterware 10.2.0.1 on Linux X86, RHEL 4 (using OCFS2). This is a two node system.
    After running a few tests we had some disk corruption on the shared storage system and hence we had to reformat the shared filesystem (only the shared FS not the local filesystems on the nodes). I copied the backup OCR and VDISK files into their original directories after the formating, and moved the mirror backups into their original directory. But I am unable to start the cluster services, I have tried the following
    $./crsctl start crs
    Attempting to start CRS stack
    The CRS stack will be started shortly
    $
    Didn't work, no services started up.
    I then tried the following command
    $ ./init.crs start
    Startup will be queued to init within 90 seconds.
    But again I don't see the crs daemons up and running.
    I don't see anything in the logs (crsd, css, evmd etc) the last lines there were before we shutdown everything and then formated the shared storage.
    If anyone has come across a similar issue then please advice on possible errors I could look for or how to work around this to get the crs services started so that I can install the database software. Any help/advice will be appreciated
    Thanks.

    Hi,
    since you mention the reformatting of the shared disks:
    Check /var/log/messages for things like
    "Cluster Ready Services waiting on dependencies. Diagnostics in /tmp/crsctl.xxxx",
    best use cat /var/log/message | grep crsctl.
    After that the mentioned /tmp/crsctl.xxxx file.
    You might find Oracle Error PROC-0026 there:
    "Error while accessing the physical storage".
    What is meant is the OCR.
    Check if user/group of the raw devices is still oracle:oinstall, it might have changed to root:disk by reformatting.
    I myself had this case unexpectedly now some times even WITHOUT any reformatting, I suspect that touching the raw devices with Linux LVM might change ownership.
    regards
    Robert

Maybe you are looking for

  • Kerberos auth. not working..with VDI 3.1 EA

    Guys, krb5.conf file is configured correctly. command line utilities nslookup and kinit are working fine.. Kerberos auth. giving following error in cacao logs.. com.sun.directoryservices.service.ConnectionException: Failed to connect to ad://COMPANY/

  • SSH / ARD no longer working on 10.6 Server

    This happens quite often. Too much for my liking actually. Randomly SSH or ARD will stop working. SSH, Port 22 Connection Refused. ARD Not Active. Makes no sense. Both Remote Login and Remote Management are on in Sharing Prefs Pane. SSH should never,

  • Impdp - ORA-39126: Worker unexpected fatal error in KUPW$WORKER.LOAD_METADA

    Hi, I am trying to refresh my local DB and getting this error. I have recreated(drop and create) the SR user and tried importing the fresh copy. Import is working fine on the new Database i.e Deleting and creating the database. pl. help me finding th

  • 10.6.6 Update Not Showing Up for 10.6.5

    On 10.6.5 here. Software update keeps saying I'm up to date. Anyone else?

  • J2EE "Security Provider" not updating

    Hello All, I am currently running XI 3.0 with SP14.  I can not get the J2EE engine to update with the users on the ABAP side.  Here is what I have run tried: 1.  The "Assign Applications Roles to user groups" button says it is successful but no users