RD Gateway Manager - Unable to read RD Gateway Server Settings

I'm trying to install a Remote Desktop Gateway into my domain, but I am running into a serious road-block... when I load RD Gateway Manager to configure the service, there is nothing to configure because it won't load my server into the console. When I try
to connect to it manually, it returns the following error:
"Unable to read RD Gateway Server Settings"
There are no errors or warnings in Event Viewer. I can verify that C:\Windows\System32\tsgateway\rap.xml exists and is readable. I can verify that Network Policy does have a TS_CAP_01 policy and it is enabled. A valid certificate was applied during setup
(and I've also tried choosing ask me later).
I have already tried uninstalling and reinstalling the role service (including manually verifying that the policies are removed). I also have this working on another domain server, so I'm at a loss for what to look for... How can I resolve this so that I
can finish configuring the service?

Hello,
Thanks for your post.
From your description, I understand that you’re trying to install the RD Gateway role on a Windows Server 2008 R2-based domain computer. However, after the role
is install, the RD Gateway Manager cannot be loaded into the RD Gateway Manager. The error prompts “Unable to read RD Gateway Server Settings”.
Based on my experience, the issue may be caused by problematic installation or startup of the RD Gateway role. Before we troubleshoot the issue further, I recommend
you to enable the Audit level logging in the Event Viewer and double-check the related clues in the event viewer. To do that, please use the following steps:
1.    
On the RD Gateway server open RD Gateway Manager. To open RD Gateway Manager, click
Start, point to Administrative Tools, point to
Remote Desktop Services, and then click RD Gateway Manager.
2.    
In the console tree, right-click the node that represents your RD Gateway server, which is named for the computer on which the RD Gateway server is running, and then
click Properties.
3.    
On the
Auditing tab, select or clear the appropriate check boxes to specify the events that you want to monitor for RD Gateway, and then click
OK.
When these events occur, you can monitor the corresponding events by using Windows Event Viewer. RD Gateway Manager server events are stored in Event Viewer under
Application and Services Logs\Microsoft\Windows\Terminal Services-Gateway\.
Let us know the result if possible. We’d like to help further based on your information replied. Thanks.
Lionel Chen
TechNet
Subscriber Support in forum
If you have any feedback on our support, please contact
[email protected]
This posting is provided "AS IS" with no warranties, and confers no rights.

Similar Messages

  • RD Gateway Manager fails with "Unable to read RD Gateway Server Settings"

    The question is: Why can't I connect RD Gateway Manager on the local RD Gateway server?
    A month ago, I successfully configured a RD Gateway and to work with a RD Session Host.  I set up the RDG CAP and RAP policies.  I successfully tested connectivity through the gateway.
    Today, I tried to access the RD Gateway Manager and now I'm getting the following pop-up message:
    "Unable to read RD Gateway Server Settings"
    Everything still works and I am able to confirm that NPS is running the CAP policy that I configured in RD Gateway Manager.
    The certificate is from a trusted source.  The Event Log does not show any errors.

    Hi,
    Thank you for posting in Windows Server Forum.
    Please let us know some more information.
    Did you make any change after setting up the server correctly?
    Have you make any changes in IIS?
    Please recheck your connection setting again with following link and provide us the result.
    1. How To Work with RD Gateway in Windows Server 2012
    2. Deploying Remote Desktop Gateway RDS 2012
    Also go through this thread once.
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Gateway Manager is looking for a Gateway Controller

    I have installed Apple Service Toolkit and cannot get the  Gateway Manager to open.  It is prompting me for a password and the directions ask me to use 'apple'.  It says that it is an invalid password.  I try the password from the last time I setup the Apple Service Toolkit and it is invalid as well.  I chatted with tech support and they gave me some plist to delete and reinstall the tools.  I did that and got the same result.  I have installed this three previous times with success but I am not sure what the issue is with this time.  Any help would be appreciated.  I have emailed [email protected] 

    This is what was most helpful to me in this situation
    http://www.verschoren.com/blog/2014/10/31/searching-for-gateway-controller-updat e
    Basically...
    Open /Library/Preferences/com.apple.gateway.plist with textwrangler (or the like)
    Change "en0" to whatever network interface is connected the diagnostic network (in our case, en4, the thunderbolt to enet adapter that connects to the switch our UUTs connect to)
    Reboot
    YMMV, but that's what finally worked for us.

  • Unable to read output from server on a socket

    Hello everyone,
    I am trying to re-develop and application that traditionally is developed in VB.
    Traditional program does following: communicates with host using telnet; login, send some text, read the output from server, validates output and terminated telnet connection.
    I am trying to build same kind of application in Java using sockets, but I do not get any response from the server.
    Any Suggestions ?
    Thanks,
    Code below:
    String hostName="ip address here";
    int portNum=23; //Verified that server's telnet runs on port 23
    try
    socket=new Socket(hostName,portNum);
    out=new PrintWriter(socket.getOutputStream(),true);
    in=new BufferedReader(new InputStreamReader(socket.getInputStream()));
    }catch(UnknownHostException e){
    System.err.println ("Host not found: " + hostName);
    System.exit(1);
    }catch(IOException e){
    System.err.println("Could not get I/O for host: " + hostName + "on port: " + portNum);
    System.exit(1);
    BufferedReader stdin=new BufferedReader(new InputStreamReader(System.in));
    String userInput;
    try{
    while ((userInput=stdin.readLine()) != null)
    out.println(userInput);
    while (in.readLine() != null){
    System.out.println("echo: "+in.readLine()); // I Expect server's output here but nothing happens.
    }catch(IOException e){
    System.err.println("User Input not read.");

    while (in.readLine() != null){
    System.out.println("echo: "+in.readLine()); // I Expect server's output here but nothing happens.I see two problems here:
    1) in.readLine() only returns null if the socket is closed. You will be forever in that loop.
    2) you are losing every second line of your input. If your telnet server sends only one line at the beginning, the readline() call in the while statement will swollow that.
    If you want to do this in a single thread, you will have to use a method which won't block until input is available, such as the read(char[], int, int) method of BufferedReader.
    You could also use two threads, of which one is printing the output and the other is taking user input. This has the advantage, that you are able to handle any connection errors immediatley instead of only when the user entered a command.
    Does telnet send information about the end of an input sequence (like the end of the welcome message and the end of the answer to any issued command? If not, I'd say that you should use two threads, as you would have to do polling all the time otherwise.
    Hope it helps.

  • Unable to read external configuration (server)

    I use Albpm (fuego) 5.7 mp3, while developing a catalog component which needs to use a url configured in external configuration created for type server. similar to DynamicJMS reads JMS & Server configuration from external configuration using configuration string argument
    DynamicJMS.sendObjectMessage(configuration : "CallbackQueue", messageObject : msgMap);.
    I need to a way to read such external configuration created on the server.
    Please help.
    Edited by: user11835607 on Aug 27, 2009 2:23 PM

    Would initializing the disk erasing all the data???
    It would erase all the data so don't do that (yet).
    Try using an application such as [Data Rescue II|http://www.prosofteng.com/products/data_rescue.php] or [FileSalvage|http://subrosasoft.com/OSXSoftware/index.php?mainpage=product_info&productsid=1]. Both have free trial versions that let you see if the software will help before you decide to buy. You will also need a second hard drive equal to or larger in size than your first drive as a destination drive for recovered files.

  • RD Gateway Manager cannot connect to local server

    Hi,
    I've come across a problem today where I'm unable to connect to our locally hosted RD Gateway server. We have one Server 2012 R2 machine with the Remote Desktop Services installed. The system was setup following the configuration wizard in Remote Desktop
    Services section of Server Manager. One of our users has gone to connect to the main remote app hosted by this setup and received an expired certificate error. No problem I thought, checked the certificate on the server and it does indeed expire today. I'll
    re-issue a self signed certificate through the RD Gateway Manager and all should be ok. On loading the RD Gateway Manager, clicking Connect to RD Gateway Server and selecting Local Server I get the following error.
    "The RD Gateway Manager snap-in console cannot connect to the server "SERVER" because it is not a RD Gateway server."
    I've checked that the services for remote desktop are running which they are, and I can connect to the server using standard RDP remote desktop.  Any ideas on where to go next to solve this problem?
    Rob

    Hi Rob,
    It seems the issue related to certificate as can’t properly configured. You need to import the certificate and store in local computer/personal store. Please check below article and verify the steps for certificate and other related setting,
    RDS: The RD Gateway server must be configured to use a valid SSL certificate
    https://technet.microsoft.com/en-us/library/dd320340(v=ws.10).aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Unable to read iCloud sent mail in Mail.app

    Hello, starting about 1week ago my Mail.app gives me an exclamation mark in iCloud mail in Sent items.
    Clicking on it Mail gives me the error:
    Unable to access "iCloud":
    Unable to read data from server “p01-imap.mail.me.com”.
    If i go to Mail-Window-COnnection status, i get all positive results, in fact i can recieve mails but can't access Sent items folder.
    What's the problem?

    Hi Amit,
    To save the sent items in
    “Sent Items Folder” follow the given path (Outlook 2007):
    Tools
    >> Options >> Preference Tab >> E-Mail Options
    In E-Mail options, choose the
    “save copies of
    messages in sent items folder” check box and finally click on
    “Ok” button.
    Exchange server automatically creates the copy of the entire database.
    For
    brief:
    http://office.microsoft.com/en-in/outlook-help/change-where-sent-e-mail-messages-are-saved-HA010164216.aspx
    Note: Improve community discussions by marking the answers helpful.
    Thanks
    Clark Kent

  • While starting up portal server gateway I get an error "cannot read from rp.keystore, unable to read the PKCS key".

    The OS is solaris 8 and portal server 3. The first installation went through properly and we had installed many other applications also along with portal server. Then we had to ship the machine to some other city and restarted with same IP address, host address and domain, and also made a LAN without hooking onto the main network. From then on we are facing this problem. Even tried reinstallation a couple of times, after uninstall and deleting/renaming rp.keystore. The main problem looks like gateway not being able to read rp.keystore. The password required for reading it is the admin password which works fine the admin console.By invoking certstore also I am getting the same error.

    There is a couple of things I can think of here, one is the permission, you need to install the gateway as root , make sure the gateway and relevant files are installed as root and have the right access permissions.
    There should be file called .rppass and this contains the password and this should match the same password that you have used for the admin console.
    I would recommend you to use 3.0sp3a instead of 3.0 for better performance and scalability.
    HTH ..

  • AST Gateway Manager Server not available

    I have installed the latest AST (new install, not an upgrade) without any issues.  The Gateway Manager, however, is unable to connect to the server.  The ADR Server URL was pre-populated and is https://adr.apple.com/services/ws/capture.  After entering in my information and clicking save, the Authentication Status goes from Authenticating to Server Not Available, and I get a giant red bar across the screen saying ADR Server Not Available.
    The computer is running Mountain Lion Server with all of the latest patches.  The machine is online.  I can browse to any website I want.  I can't figure out why it can't contact the ADR Server.  Does anyone have any ideas?

    I realize this is an older thread, but I happened upon it when searching for an answer. I noticed that my MRI results weren't getting uploaded to Apple.  I also had the giant red bar across the screen saying ADR Server Not Available.
    My problem was that I had updated my password for GSX recently and had not put the new password into the settings of the dianostic Gateway.  As soon as I updated the password I was able to authenticate and my problems dissapeared.

  • While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14

    Hi
    While Configuring Siebel Server we are getting "Unable to Connect to Gateway server" error in siebel 8.2.2.14
    Our OS is windows 2008 R2 64 bit,Orcale client is 11g 32 bit and Oracle DB is in 11g.We are also able to connect to DB using ODBCSQL.
    Please help.
    Regards
    Shuvendu

    Hello Shuvendu,
    Thanks for using Oracle Communities.
    About your error, there could be many reasons, To start with, please have following knowledge article to know possible reasons.
    C028: "Unable to Connect to the Siebel Gateway Name Server" Logged By Configuration Wizard (Doc ID 1391312.1)
    I hope it helps.
    Best Regards,
    Chetan
    P.S. If any one of the provided responses has been correct or helpful it would be great if you could mark them as appropriate.

  • Is there a way to Report out Remote Desktop Gateway Manager Monitor data?

    We are running Windows Server 2012 R2 Remote Desktop Services configured to provide a managed pool of VMs through a RD Gateway server. Everything is working well. We would like to generate a regular report on the information that shows up in the Gateway
    Monitoring window about connections and users etc. Is there any way to generate such a report without purchasing 3rd party software?

    Hi,
    Based on my experience, you can use Remote Desktop Gateway Manager to view information about active connections from Remote Desktop Services clients to internal network resources through an RD Gateway server. However, there is no such options in
    RD gateway manager to create reports for that.
    It seems that System Center Operations Manager can monitor Remote Desktop Gateway Service and the number of sessions that run through the RD Gateway are monitored.
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Netlet - unable to connect to gateway

    Issue with Netlet.
    Trying to define the following rule so non-browser application can do
    http requests over secure tunnel:
    WebTest|null|false|30011|<host>|80
    (where <host> is the relevant webserver)
    Getting the following error:
    Unable to connect to Gateway: default:443
    Any assistance greatly appreciated.

    It seems that this problem is stemming from the variable "WT.gateway"
    (stored in the com.iplanet.portalserver.session.Session object) being set
    to "default". This causes the applet parameters of the Netlet to be
    incorrect. The "remoteHost_x" parameter is being taken literally and the
    Netlet is trying to connect to default:443.
    In my example, the applet tag looks as follows:
    <html>
    <head>
    <HEAD><TITLE>Netlet</TITLE></HEAD>
    <script language=javascript>
    var needToSleep = true;
    </script>
    </head>
    <BODY TEXT="#000000" BGCOLOR="#FFFFFF">
    <p><applet
    codebase="https://algol.solnet.com.au:443/http://algol.solnet.com.au:8080/netlet"
    archive="ips_netlet.jar" code="SServer.class" width=1 height=1 MAYSCRIPT>
    <param name="cabbase" value="ips_netlet.cab">
    <param name="configURL"
    value="https://algol.solnet.com.au:443/http://algol.solnet.com.au:8080/NetletConfig">
    <param name="resourcesURL" value="/NetletConfig?func=loadResources">
    <param name=listenPort_0 value=8000>
    <param name=remoteHost_0 value=default>
    <param name=remotePort_0 value=443>
    <param name=serverPort_0 value=8080>
    <param name=serverHost_0 value=algol.solnet.com.au>
    <param name=listenPort_1 value=30011>
    <param name=remoteHost_1 value=default>
    <param name=remotePort_1 value=443>
    <param name=serverPort_1 value=80>
    <param name=serverHost_1 value=david.mel.solnet.com.au>
    <param name=sessionID
    value=43345sdafxcspdbliqvfxipuglbqoqr14sp5r6@[email protected]@8080@/UbyqraGrfg>
    <param name=numParms value=2>
    <param name=doPortWarning value=true>
    <param name=netletKeepAliveInterval value=0>
    </applet>
    </body>
    </html>
    David Broeren wrote:
    Issue with Netlet.
    Trying to define the following rule so non-browser application can do
    http requests over secure tunnel:
    WebTest|null|false|30011|<host>|80
    (where <host> is the relevant webserver)
    Getting the following error:
    Unable to connect to Gateway: default:443
    Any assistance greatly appreciated.

  • Gateway Manager no longer working after upgrade from 10.6.8 to 10.9

    Since upgrading my 10.6.8 Server to 10.9, Gateway Manager for Apple Service Toolkit no longer functions.  I cannot NETBOOT into AST from either subnet that I have and when opening Gateway Manager, it just says "Searching for Gateway Controller".  Does anyone have any suggestions?
    Thank you!

    I would suggest turning off one of the interfaces to test.  Always leave DNS on!   
    We ran into this when we were running Xsan.  Our way around this was to stop Xsan, deactivate the metadata LAN, launch AST to allow it to bind to primary LAN.  Then once it acquired the connection, enable your secondary LAN.
    R-
    Apple Consultants Network
    Apple Professional Services
    Author:  "Mavericks Server – Foundation Services" :: Exclusively available in the Apple iBooks Store

  • Problem with RD gateway manager

    Hi,
    Have some problems with manager. It used to work, but suddenly I can't connect to local server.
    Get this error:
    "The RD Gateway Managment snap-in console cannot connect to the server. To connect to this server, you must be a memeber of the local administrators group on the server."
    The user account that i'm using is a member of the local administrator group.
    Any ideas?
    The RDS server is a Win2012 server. The AD server is a win 2008 R2 server.
    Thanks
    \Kent

    Hi Kent,
    Thanks for your comment.
    For this you need to create RD Rap and RD CAP policies. When you create the RD RAP, add the user groups that you defined in the RD CAP. Also, create a new RD Gateway-managed computer group that contains both the NetBIOS names and the fully qualified domain
    names (FQDNs) of the RD Session Host servers or the RD Session Host server farm that hosts the RemoteApp programs.
    Please check below article for information.
    1. Remote Desktop Gateway Manager
    2.How To Work with RD Gateway in Windows Server 2012
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • I changed my Adobe user ID when we changed from Windows PC to Mac and now I am unable to read previously downloaded ebooks on my Sony Reader device due to Digital Rights Management.  Can I resolve this?

    I changed my Adobe user ID when we changed from Windows PC to Mac and now I am unable to read previously downloaded ebooks on my Sony Reader device due to Digital Rights Management.  Any ideas how I can get access to these now?

    Hi Blotontheland,
    Thanks for the prompt reply. The interesting thing is that my Macbook Pro was upgraded today to Yosemite and I still have the spinning wheel on the start up screen before the login page comes up.

Maybe you are looking for