Create user not working!

Hello Everybody:
I am a beginner here. I was trying to create a user named turner, password as tur. I had following code.
SQL> connect scott/tiger;
Connected.
SQL> CREATE USER turner IDENTIFIED BY tur;
CREATE USER turner IDENTIFIED BY tur
*ERROR at line 1:ORA-01031: insufficient privileges
SQL>
System did not like it. It says scott has insufficient privileges. How can I look what privilege does scott have?
How can I add create user privileges to scott. Any response in this regards highly apprciated.
Thanks. -Bal

SQL>connect system/manager
SQL>grant dba to scott
So, scott can work as dba.
Sys and system are the default database administrator users.
Both users are created automatically when database is created.
and They are granted the DBA role.
Sys is owner of the database data dictionary.
and his(her) password is change_on_install.
System is owner of additional internal tables and views used by Oracle tool.
Both sys and system are regual users, which are stored in the data dictionary.

Similar Messages

  • Error while creating user - not authorized to assign profiles or roles

    I have configured CUA according to the help.sap.com instructions.  I am getting this error (in TCODE SCUL)..
    +You are not authorized to assign profiles
    Message no. 01589
    You are not authorized to assign profiles to users or to cancel the authorization.+
    I can create the user, change the address data, and initial password.
    I get errors on assigning to a group, parameters, or the role and profiles. 
    We are on NW Mobile 7.1 (ABAP stack only) SP05.
    I've read Note "492589 - CUA:  Minimum authorizations for communications users."
    It mentions SP07.  Is this not compatible?

    > Run SU53 (immediately after you receive the error message) and check which authorizations that failed. You probably miss S_USER_PRO with activity 01 or 02 from your own roles.
    I think that will not work in his situation. The errors show up in SCUL so they may come from one or more of the CUA children. Running SU53 in the CUA master will (if that is the case) not provide the necessary info.

  • SAP* user not working in new client

    Hi,
    I created a new client from SCC4. And now I am trying to login with SAP* user and pass password but it is not allowing. Note provided in SAP Config Guide is not working.
    I installed SAP Solution Manager 7.0 SP12 and then created a client.
    Please let me know how to solve this issue.
    Points will be awarded.
    Regards.

    Hi!
    I agree that the issue is probably due to the parameters for the automatic user SAP* - not sure about the Masterpassword though - the newly created client is only an entry in a table at this stage, so I don't think the system will know any password but the hardcoded one...
    Something you should be very careful about is the Java-Stack, which is part of SolMan7 and which runs SMD. The Java stack can only interface with one client properly, so I am not sure what's the idea behind the newly created client.
    Regards,
    Jörg

  • "create user" not same as creating user from Administration?

    I have created users both from scripts and from the Administration pages and am getting different results.
    I created a user from a command line script (e.g., "create user <name> identified by <password>"), and then later granted the user all the privileges from the Administration -> Database users -> Manage Users page.
    I created a second user from within the Admin pages - this user has all the privileges and works fine.
    The user I created from the command line and then granted all privileges (including "DBA" and all explicit privileges) is NOT working correctly.
    Specifically:
    1. "select ... from ALL_OBJECTS" returns no records. (ALL_TABLES, ALL_INDEXES, and everything else that I try seem to work ok, but in order to see "ALL_OBJECTS", I have to explicitly qualify it with "SYS.ALL_OBJECTS".)
    2. When compiling PL/SQL procedures, etc. in that user schema, the built-in packages are not visible unless I explicitly GRANT EXECUTE on each package to the user (from a system account). At that point, they are accessible.
    I tried searching the forums for similar topics and didn't find any. I apologize if this is a redundant post, but it is driving me crazy.
    Can someone tell me how to make sure the script-created users get all the appropriate rights, and why when they are granted rights from the Admin screens, they still don't appear to have all the rights?
    I would strongly prefer not to drop the user account and rebuild it, as there are already 2200 existing objects (tables, procedures, indexes, etc.) in the user account.

    Please disregard this post. While investigating another issue, I discovered that the user account from which I had migrated 600+ tables had (for some unknown reason) empty copies of ALL_OBJECTS, USER_INDEXES, and USER_IND_COLUMNS in the user tablespace, so these got copied over with the other valid tables. Having "local" (and empty) copies was causing most of the issues.

  • Java Program to Create Spatial not working after upgrade from 8.1.6 to 8.1.7

    First let me say I am totally new to Oracle. I did a new installation of 8.1.7 and created the user and tablespace as follows:
    -- Create a new tablespace - AT 14 Jan 2000
    DROP TABLESPACE gis INCLUDING CONTENTS;
    CREATE TABLESPACE gis DATAFILE 'c:\oracle\oradata\dev\gis.dbf'
    SIZE 1000M REUSE
    DEFAULT STORAGE ( INITIAL 20K NEXT 10K MINEXTENTS 1 MAXEXTENTS UNLIMITED PCTINCREASE 0 );
    -- Create the user
    DROP USER gis cascade;
    CREATE USER gis IDENTIFIED BY tutorial1 DEFAULT TABLESPACE tutorial1 TEMPORARY TABLESPACE TEMP PROFILE DEFAULT ACCOUNT UNLOCK;
    GRANT DBA TO gis;
    GRANT EXP_FULL_DATABASE TO gis;
    GRANT IMP_FULL_DATABASE TO gis;
    GRANT CONNECT TO gis;
    GRANT UNLIMITED TABLESPACE TO gis;
    ALTER USER gis DEFAULT ROLE ALL;
    A Java script is then run that worked when it was run against our 8.1.6 version.
    The SQL statement works until it hits the 581st geometry. This particular geometry contains 17 line segments.
    The java bombs with the following output:
    UPDATE mtrtemp2 set GEOMETRY = (SELECT SDO_GEOM.SDO_UNION(a.geometry, b.geometry, .00000001) FROM mtrtemp2 a, mtrbuffer b WHE
    b.sdo_gid = 580)
    hhhhh
    c is: 57
    581
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    582
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    583
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    584
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    585
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    586
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    587
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    588
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    589
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    590
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    591
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    592
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    593
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    594
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    595
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    596
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    597
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    598
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    599
    java.sql.SQLException: Io exception: End of TNS data channel
    hhhhh
    c is: 57
    600
    IR111
    Exception in thread "main" java.sql.SQLException: Io exception: End of TNS data channel
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java)
    at oracle.jdbc.driver.OracleStatement.execute(OracleStatement.java)
    at mtroutline.loaddb(mtroutline.java:72)
    at mtroutline.main(mtroutline.java:107)
    Can anyone please help me resolve?

    Can you explain this some more?
    One of the problems when using bfiles is that you must keep the filesystem files in sync with the database yourself.
    Are you sure the file information in the bfiles don't contain images?
    I wonder what you mean by "stran machine symbols"?
    Are these machine image icons?

  • After SPNEGO is activated other existing services with Technical user not working

    Hi All,
    We have activated SPNEGO, One of our existing service with Technical user is not working.
    When SPNEGO is disabled it works.
    Regards
    Ram

    Hi Patrick
    We are using SSO. and domain controller has service user. We are in 7.31 PI as Java so user mapping is not done but have same users in Active directory.
    SSO is working fine. But, once specific service is not working where we are using technical user when SSO is active and it is working when SSO is inactive.
    Regards
    Gangula

  • Accessing Synchronizer Web Admin as a User not working

    Hello,
    We use DS Mobility 1.2.2.
    Users cannot configure personnal settings from https://ds:8120/
    They can successfully log, but the "Manage My Connectors" section is empty.
    These users all synchronize their smartphones with GW.
    Thanks for any help.

    The tree looks like somethings as :
    t=mytree
    o=myOrg1
    o=myOrg2
    ou=myou1,o=myOrg1
    ou=myou2,o=myOrg2
    I add users only per groups.
    These groups are in cn=myDSGroup1,ou=groups,ou=myou2,o=myOrg2
    Users that are in the same o that the groups can access Connectors Settings. For example, cn=myuser,ou=users,ou=dep,ou=myou2,o=myOrg2 is working.
    But cn=mybaduser,ou=users,ou=dep,ou=myou1,o=myOrg1 is not working.
    There is no others difference between users.

  • Sender Agreement - Assigned Users not work

    Hi Experts,
    I have a scenario SOAP - XI and I want to establish authorization to certain users. I am trying to assign user to the Sender Agreement but it does not work.
    I am using in the URL the next prefix /sap/xi/engine?type=entry, but if I use the prefix /XISOAPAdapter/MessageServlet, it works fine.
    Is it possible to assign users to Sender Agreement using the prefix /sap/xi/engine?type=entry?
    Thanks,

    Hi,
    There are two ways of sending a message to XI using SOAP Adapter. The first one is to the adapter engine via ./XISOAPAdapter/MessageServlet. The second one is to the integration engine via propose URL. The first one will use the sender agreement because it is considered a java call but the second one will not (same with PlainHTTPAdapter).
    Hope this helps,
    Mark

  • UME Create user not  possible

    Portal 7.0 sp10 2004s
    ECC 6.0 sp 10  ERP 2005
    Portal is connected to ABAP backend for user authenticity,
    Data source configuration file is dataSourceConfiguration_abap.xml which should allow users created in the portal to be in the UME database only.
    Problem, When creating users on the Portal they are automatically being created with a datasource of ABAP and are created in the ECC abap backend.
    I have tried creating the users using the Visual Admin tool and it also created the users in the ECC abap backend
    I have in the past been able to create users in the UME only in fact I could not create Backend ABAP users from the POrtal
    Any help would be appreciated.
    Thanks
    sarah

    Haydn
    Thanks for your suggestion, I am still having problems
    I changed the SAPJSF user that communicates from the portal to the abap backend to read only. I got an error, it is still trying to create an ABAP backend user
    An error occurred in the persistence. The original message (possibly not translated) was: "BAPI_USER_CREATE1@RS2CLNT100: ID=01, NUMBER=491, MESSAGE=You are not authorized to create users in group". Contact your system administrator
    From the SAP Note 718383 it states the following:
    Supported changes to the data source configuration
    The allowed change options depend on the currently active data source configuration. You can determine the current data source configuration with the J2EE ConfigTool.
    In "cluster-data -> Global server configuration -> services -> com.sap.security.core.ume.service" check the property "ume.persistence.data_source_configuration".
    Depending on the data source configuration file you use, the following changes are possible:
    dataSourceConfiguration_abap.xml
    No change is possible.
    This configuration supports all usages (especially SAP Exchange Infrastructure and SAP Enterprise Portal) by making ABAP users and ABAP roles available as users and groups in the UME, and supports the creation of new groups in the UME (which are then stored in the local database) as well.
    Any other suggestions would be appreciated,
    Thanks
    Sarah

  • Mpd --create-db not work?

    $ mpd --create-db
    $ cmdline: invalid option: --create-db
    why?--create-db did not work for mpd anymore?

    Its unbelievable. this option is gone for 6 years now. and people still complain

  • Guest user not working at all (Mavericks Ver.10.9.4)

    I am currently using a 2011 MacBook Pro running OS X Mavericks Version 10.9.4.
    I'm having an annoying problem regarding the guest user, I just can't seem to get it to work. I got to User and Groups in the System Preferences, check the box "Allow guests to log in to this computer" and it doesn't work. I've tried turning it off, restarting my computer, then turning it back on and yet the guest account still doesn't show up in the login page or in the faster user switching menu. It's crazy how there's barely any information on how to fix this. I've searched google and the only results are how to enable guest user or how to get rid of it, nothing pops up on that the guest user is not working so I've come to the Mac community to see if I can get any help here. I have updated everything in my software update by the way.

    This procedure is a diagnostic test. It makes no changes to your data.
    Please triple-click anywhere in the line below on this page to select it:
    dscl . -list /Users | grep Guest | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message.
    The Terminal window doesn't show the output. Please don't copy anything from there.
    If any personal information appears in the output, anonymize before posting.

  • Lync Mobile for external users not working

    Hello,
    We have Lync Server Enterprise pool with 2 front end server, 2 edge server & TMG for reverse proxy.
    PC client internally & externally working. Internal mobile users are working. But not working for external mobile users.
    I used 2 tools to check this.
    Web based connectivity analyser, it runs without any error.
    But when I use installed version of lync connectivity analyser its throws error that. Server discovery failed for secured internal channel against
    https://lyncdiscoverinternal.mydomain.com
    Also, I am able to download a .json file when you access
    https://lyncdiscover.mydomain.com

    Hello,
    Sorry for late response. My TMG server was not functioning, now it is working for lync mobile is still having problem. I am pasting the lync analyser full reports:
    Network access: NetworkAccessExternal
    Logging test parameters:
    SIP Uri: [email protected]
    User Name:
    Discovery Type: Automatic Discovery
    Selected client: ApplicationLyncMobile2013
    Starting Lync server autodiscovery
    Please wait; this test may take several minutes to complete...
    Starting automatic discovery for secure (HTTPS) internal channel
    Sending HTTP request to
    https://lyncdiscoverinternal.contoso.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 403, ReasonPhrase: 'Forbidden ( The server denied the specified Uniform Resource Locator (URL). Contact the server administrator.  )', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: close
      Pragma: no-cache
      Cache-Control: no-cache
      Content-Length: 2040
      Content-Type: text/html
    Autodiscover: SendRequest(): the URL
    https://lyncdiscoverinternal.contoso.com/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Couldn't connect to URL
    https://lyncdiscoverinternal.contoso.com/[email protected] (HTTP status code Forbidden)
    System.Exception: Couldn't connect to URL
    https://lyncdiscoverinternal.contoso.com/[email protected] (HTTP status code Forbidden)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for secured internal channel against
    https://lyncdiscoverinternal.contoso.com/
    Starting automatic discovery for unsecure (HTTP) internal channel
    Sending HTTP request to
    http://lyncdiscoverinternal.contoso.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 403, ReasonPhrase: 'Forbidden ( The server denied the specified Uniform Resource Locator (URL). Contact the server administrator.  )', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: close
      Pragma: no-cache
      Cache-Control: no-cache
      Content-Length: 2040
      Content-Type: text/html
    Autodiscover: SendRequest(): the URL
    http://lyncdiscoverinternal.contoso.com/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Couldn't connect to URL
    http://lyncdiscoverinternal.contoso.com/[email protected] (HTTP status code Forbidden)
    System.Exception: Couldn't connect to URL
    http://lyncdiscoverinternal.contoso.com/[email protected] (HTTP status code Forbidden)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for unsecured internal channel against
    http://lyncdiscoverinternal.contoso.com/
    Starting automatic discovery for secure (HTTPS) external channel
    Sending HTTP request to
    https://lyncdiscover.contoso.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: Keep-Alive
      Pragma: no-cache
      X-MS-Server-Fqdn: SGRFLYNC1.contoso.com
      X-Content-Type-Options: nosniff
      Cache-Control: no-cache
      Date: Mon, 24 Nov 2014 13:36:49 GMT
      Server: Microsoft-IIS/8.0
      X-AspNet-Version: 4.0.30319
      X-Powered-By: ASP.NET
      Content-Length: 1065
      Content-Type: application/vnd.microsoft.rtc.autodiscover+xml; v=1
      Expires: -1
    Parsing the response for URL
    https://lyncdiscover.contoso.com/[email protected].  Full response: <?xml version="1.0" encoding="utf-8"?><AutodiscoverResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" AccessLocation="External"><Root><Link token="Domain" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/domain?originalDomain=contoso.com"
    /><Link token="User" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/user?originalDomain=contoso.com"
    /><Link token="Self" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root?originalDomain=contoso.com"
    /><Link token="OAuth" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/oauth/user?originalDomain=contoso.com"
    /><Link token="External/XFrame" href="https://lyncdiscover.contoso.com/Autodiscover/XFrame/XFrame.html" /><Link token="Internal/XFrame"
    href="https://lync.contoso.com/Autodiscover/XFrame/XFrame.html" /><Link token="XFrame" href="https://lyncdiscover.contoso.com/Autodiscover/XFrame/XFrame.html"
    /></Root></AutodiscoverResponse>
    Autodiscover URL
    https://lyncdiscover.contoso.com/[email protected] redirected to
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/user?originalDomain=contoso.com
    Sending HTTP request to
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected]
    Cookie  found in autodiscover response: StatusCode: 403, ReasonPhrase: 'Forbidden ( The server denied the specified Uniform Resource Locator (URL). Contact the server administrator.  )', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: close
      Pragma: no-cache
      Cache-Control: no-cache
      Content-Length: 2040
      Content-Type: text/html
    Autodiscover: SendRequest(): the URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Couldn't connect to URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] (HTTP status code Forbidden)
    System.Exception: Couldn't connect to URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] (HTTP status code Forbidden)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<ParseResponse>d__16.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for secured external channel against
    https://lyncdiscover.contoso.com/
    Starting automatic discovery for unsecure (HTTP) external channel
    Sending HTTP request to
    http://lyncdiscover.contoso.com/[email protected]
    Cookie  found in autodiscover response: StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: Keep-Alive
      Pragma: no-cache
      X-MS-Server-Fqdn: SGRFLYNC1.contoso.com
      X-Content-Type-Options: nosniff
      Cache-Control: no-cache
      Date: Mon, 24 Nov 2014 13:36:49 GMT
      Server: Microsoft-IIS/8.0
      X-AspNet-Version: 4.0.30319
      X-Powered-By: ASP.NET
      Content-Length: 1065
      Content-Type: application/vnd.microsoft.rtc.autodiscover+xml; v=1
      Expires: -1
    Parsing the response for URL
    http://lyncdiscover.contoso.com/[email protected].  Full response: <?xml version="1.0" encoding="utf-8"?><AutodiscoverResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" AccessLocation="External"><Root><Link token="Domain" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/domain?originalDomain=contoso.com"
    /><Link token="User" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/user?originalDomain=contoso.com"
    /><Link token="Self" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root?originalDomain=contoso.com"
    /><Link token="OAuth" href="https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/oauth/user?originalDomain=contoso.com"
    /><Link token="External/XFrame" href="https://lyncdiscover.contoso.com/Autodiscover/XFrame/XFrame.html" /><Link token="Internal/XFrame"
    href="https://lync.contoso.com/Autodiscover/XFrame/XFrame.html" /><Link token="XFrame" href="https://lyncdiscover.contoso.com/Autodiscover/XFrame/XFrame.html"
    /></Root></AutodiscoverResponse>
    Autodiscover URL
    http://lyncdiscover.contoso.com/[email protected] redirected to
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/user?originalDomain=contoso.com
    Sending HTTP request to
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected]
    Cookie  found in autodiscover response: StatusCode: 403, ReasonPhrase: 'Forbidden ( The server denied the specified Uniform Resource Locator (URL). Contact the server administrator.  )', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
      Connection: close
      Pragma: no-cache
      Cache-Control: no-cache
      Content-Length: 2040
      Content-Type: text/html
    Autodiscover: SendRequest(): the URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] couldn't be connected.  Complete HTTP headers:\r\n Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Couldn't connect to URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] (HTTP status code Forbidden)
    System.Exception: Couldn't connect to URL
    https://lyncdiscover.contoso.com/Autodiscover/AutodiscoverService.svc/root/[email protected] (HTTP status code Forbidden)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.TerminateAD(String mesg)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<SendRequest>d__d.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<ParseResponse>d__16.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<TryNextUrl>d__3.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.LyncServer.WebServices.AutoDiscoverManager.<StartDiscoveryJourney>d__0.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at LyncConnectivityAnalyzerCore.Utilities.<RetrieveUserLocation>d__3e.MoveNext()
    Server discovery failed for unsecured external channel against
    http://lyncdiscover.contoso.com/
    None, AutoInternalSecureD, AutoInternalUnsecureD, AutoExternalSecureD, AutoExternalUnsecureD, ManualDNSFail, ManualSecureD, ManualUnsecureD, AuthBrokerInternalLMXCheckGET, AuthBrokerInternalLMXCheckPOST, AuthBrokerExternalLMXCheckGET, AuthBrokerExternalLMXCheckPOST,
    MobilityMCXInternalLMXCheckGET, MobilityMCXInternalLMXCheckPOST, MobilityMCXExternalLMXCheckGET, MobilityMCXExternalLMXCheckPOST, LMXSIPServerInternalDNS, LMXSIPServerExternalDNS, MobilityUCWAInternalCheckPOST, MobilityUCWAExternalCheckPOST
    Automatic discovery of the Lync server failed. Please verify the server requirements at
    http://go.microsoft.com/fwlink/?LinkId=278998 . Lync mobile apps do not require automatic discovery. You could enter the server FQDN manually and test connectivity again.
    Microsoft Lync Connectivity Analyzer cannot analyze deployment readiness until a discovery test has completed successfully.

  • 'kmosx: I lost my admin user'  Not working Unix Guru required!

    Hi,
    My Dual G5 decided (by itself) that I was no longer qualified to administer it and has removed the admin privileges from my account demoting me to a standard user.
    I tried Michael's 'kmosx: I lost my admin user' guide but am getting a Unix error after trying the 'nicl -raw /var/db/netinfo/local.nidb -create /groups/admin gid 80' command.
    The error is 'create: invalid path'
    I've successfully repaired the disk using the fsck - fy command and have no errors. I've also have write privileges on the disk.
    Basically if there is a Unix guru that could assist it would be most appreciated.
    Cheers

    Ok, thanks for the support so far. I've ran the nidump -r /groups / command and it just hung there doing nothing. I had to ctrl+c to stop it. The same thing for the users.
    I had a look in the local.nidb directory and I have a range of 'Store.xxxx' files with various dates. Would it be possible to revert back to a previous netinfo db? I'm assuming that these files are previous versions. The most recent is yesterdays Store.672 when I noticed the problem.
    Also, in single user mode is it possible to create a new user with admin privileges? I could then use that user to change my login to admin and then remove the newly created user. Or does it have to have a record in the netinfo db?
    If I remove the .AppleSetupDone file and re-run the setup program what will I lose? Will this overwrite any personal files (I have 30Gb of photos and databases that although backed up would I can still access through the standard user)?
    Thanks in advance.

  • Save for all users not working

    I created a query in the rich client and selected "save for all users", but still cannot open it on another server.  Has anyone else experienced this?  I am on version 12.3.1 build 684.

    I just did a Save As and checked the "Save for all users" box.  I think I have to check "Remove document security", but that's grayed out); Deski only had the one option and it worked fine.  There error I received is:
    The document has been secured on another cluster. You cannot open this document on the current cluster. To open it, log on the right cluster and save it as unsecured. If the cluster is not reachable, try to connect to the following system : '<server>'. If this system is not reachable or not online, try the previous offline session with the connection ''. (WIS 30910)

  • I reinstalled Elements 12 after a crash.  Editor and Create does not work.  Getting "you must purchase" message.  It was purchased already.  What should I do?

    Please help....purchased Elements 12 and Premiere Elements 12 in August.  My hard drive crashed and I had to reinstall.  Now Elements does not allow me to use editor or Create and keeps telling me to purchase the software I already have.  What do I do?

    Peggy-D
    This is not Adobe. Rather user to user.
    From whom did you purchase Premiere Elements 12? Or, did you purchase from an authorize reseller?
    Either way, you are well beyond the typical money back within 30 days of purchase type of arrangement.
    But, as I said, this is not Adobe with whom you are communicating here. If you purchased from Adobe, then refund decisions are from Adobe.
    If you purchased from an authorized reseller, then you need to deal with that company's refund policy.
    I am surprised but glad that you got through to Adobe/Chat/Tech Support people. Typically they will only deal with current version/purchased/registered, and it is well into version 13 by now (13 was released September 24, 2014). When did you contact Adobe? Do you have a case number with Adobe Tech? Did it give you a troubleshooting scheme to follow? Were you supposed to get back to it? Did it work after your interaction with Adobe Tech?
    Post 2 of this thread highlights the things that worked for me when I was in situations such as your with Photoshop Elements 12 and Premiere Elements 12.
    Have you gone through the drills
    a. determining if the problem exists with and without the antivirus and firewall(s) disabled
    b. creating a new User Account with Administrative Privileges and installing and running Premiere Elements 12 from there.
    If you purchased from Adobe direct and want to get an official decision on a refund, you can try using the following link to Adobe Chat Orders
    Contact Customer Care
    Premiere Elements
    Membership, Account, Payment
    Payments, invoices, orders
    Chat Panel
    As of a few moments ago, the Chat Panel was visible. If the link set does not hold, then you will need to navigate to the Chat Panel using the above titles as guides.
    We will be watching for your decision on how you want to proceed.
    ATR

Maybe you are looking for

  • Comparing 2 PDF documents text - differnet results in 8.2 and 9.0 versions of Professional

    I am trying to compare 2 PDF Documents - Text. When I compare it in Version 8.2 of Adobe Professional using the right Options and selecting text compare. It compares the two documents perfectly fine and give me the right difference results. When I co

  • Avoiding a bridge too far on new Mac

    Hello I have Design Standard CS4 and the upgrade to CS5. I'd like to install CS5 on a new Mac, but also install InDesign CS4 from the previous suite (since I may still need the older version). To do this I was planning to first install CS4 on the new

  • Addition of new tab (reasons) on me21n (item level)

    Hi friends, My requirement is to add the new tab reasons on item level me21n. This will be maintained in : spro->material management -> purchasing -> purchase order ->define order for reasoning. So Iam using ME_GUI_PO_CUST &  ME_PROCESS_PO_CUST badi,

  • How do I see the URL when I mouse over a link?

    how do I see the URL when I mouse over a link?

  • Problem with Adobe Download Assistant

    Every time I am trying to sign into my Adobe Download Assistant it says I have an Error 100 because my account can't connect with Adobe.com.It is saying to check my connection(4 bars and direct connect) and to restart Adobe Download Assistant. How do