CA MDM MOBILE DEVICE MANAGEMENT

Size: px
Start display at page:

Download "CA MDM MOBILE DEVICE MANAGEMENT"

Transcription

1 CA MDM MOBILE DEVICE MANAGEMENT Introduction, Setup and Troubleshooting of the Relay server and RSOE CAMDM Versions: 2014Q1, 2014Q1 SP1 Introduction to Relay Server and RSOE (relay server outbound enabler) Relay Server The Relay Server enables secure and load balanced communication between mobile devices and the backend CAMDM servers. The CAMDM solution supports using a Relay Server to operate as a reverse proxy for HTTP and HTTPS sessions between the CAMDM Server and its CAMDM mobile clients. In order to connect mobile devices to a server located within company s intranet, a Relay Server is a landscape component that is used to add this functionality in a safe and secure way. The Relay Server typically sits in a corporate De-Militarized Zone, often called as DMZ in network terms, which is secured by two layers of Firewalls, internal and external. Using a Relay Server enables you to further secure your enterprise network by moving the session connection point from within your firewall to a location outside of your firewall, to your Demilitarized Zone (DMZ). The Relay Server serves two purposes: 1. Reverse Proxy the Sybase Relay Server, hides the CAMDM servers from direct access by malicious attackers 2. Load Balancer the Sybase relay server distributes the load of the incoming traffic over multiple CAMDM nodes RSOE Relay Server Outbound Enablers are commonly known as the RSOE, and they run on the same computer as the CAMDM server. Its purpose is to open a connection from CAMDM server to the Relay Server running in the DMZ. It forwards requests received from Relay Server to backend server e.g. CAMDM. When the Outbound Enabler starts, it makes an HTTP request to retrieve the list of Relay Servers running in the farm. Before starting an RSOE you must validate that the Relay Server is started, CAMDM services are started, and that the Relay Server configuration is setup on Relay Server. The RSOE connects with the Relay Server using the server URL that maps to the web server extension component of the Relay Server.

2 The Relay Server that receives the request from the Outbound Enabler returns the connection information for all Relay Servers in the farm. The Outbound Enabler then creates two outbound connections, called channels, to each Relay Server returned. One channel, called the up channel, is created using an HTTP request with an essentially infinite response. The response is a continuous stream of client requests from the Relay Server to the Outbound Enabler. The second channel, called the down channel, is created using an HTTP request with an essentially infinite content length. The request is formed by a continuous stream of server responses to client requests. Simple Architecture of Relay server and CAMDM As shown in the diagram, the Relay Server is acting as reverse proxy where request comes from the mobile device and lands on to the Relay Server. Next, the RSOE which acts as an agent for the backend MDM server, goes and fetches that request on behalf of MDM server. Complex Architecture of Relay server and CAMDM The following diagram shows more complex architecture, where multiple relay servers are working together and acting as both a load balancer and a reverse proxy both:

3 Installing and configuring Relay server 1. Installing the Relay Server The following steps summarize the procedure for installing and configuring a Relay Server on an existing Windows Server 2008 R2 (x64) system running IIS 7.5: a. Login on CA support site and download latest copy of CAMDM that includes relay server binary. The following folder structure includes the relay server install directories (note you may have a different source folder name for the install media):..\gen e\relay_server\64 Bit\ias_relay_server\ b. Now copy ias_relay_server directory in root directory of IIS server, for e.g...\inetpub\wwwroot

4 Copy from folder..\gen e\relay_server\64 Bit\ias_relay_server to C:\inetpub\wwwroot\ c. Create the following directory structure in c:\inetpub\wwwroot\ C:\inetpub\wwwroot\ias_relay_server C:\inetpub\wwwroot\ias_relay_server\Server C:\inetpub\wwwroot\ias_relay_server\Client 2. Modify the System Path variable to include C:\inetpub\wwwroot\ias_relay_server\server.

5 3. Make sure following components are installed in IIS 7.X, if not then install them: a. Open Server Manager to verify both IIS Role and o Web Server Service o Common HTTP Features o Static Content o Default Document o Directory Browsing o HTTP Errors o ISAPI Extensions o Health and Diagnostics o HTTP Logging o Request Monitor o Request Filtering o Performence o Static Content Compression o Management Tools o IIS Management Console o IIS Management Scripts and Tool

6 o IIS 6 Management Compatibility o IIS 6 Metabase Compatibility o IIS 6 WMI Compatibility o IIS 6 Scripting Tools o IIS 6 Management Console b. Install any missing Role Features from the above list. c. Reboot the system if required by Windows. 4. Create an IIS application pool on the Relay Server. a. Open the internet information server (IIS) Manager. b. Add a new Application Pool with the following attributes: Name: RelayServer 1. NET Framework Version:.NET Framework v Managed pipeline mode: Integrated 3. Check Start Application pool immediately 4. Open the advanced Settings for the new Application Pool and set the following attributes: (General).Queue Length: (CPU).Limit Interval (minutes): 0 (Process Model).Idle Time-out (minutes): 0 (Process Model).Ping Enabled: false (Process Model).Ping Period (seconds): 30 (Process Model).Ping Maximum Response Time (seconds) 90 (Process Model).Identity: ApplicationPoolIdentity (Process Model).Maximum Worker Processes: 20

7 (Rapid-Fail Protection).Enabled: false (Recycling).Regular Time Interval (minutes): 0 (Recycling).Disable Overlapped Recycle: True 5. Create an application directory for the server application pool Open the internet Information Server IIS Manager. There are two default Options 1. User the Default Web Site with the default Port. 2. Create a new Website only for Relay Server with a different port than the Default Web Site. Highlight the web site you want to use (Default or your own custom web site) and add a new Application with following attributes: Open the Request Filtering settings and go to Edit Feature Settings, and change the following attributes:

8 Maximum allowed content length (bytes): Maximum query string (bytes): Open the Handler Mappings and go to Edit Feature Permissions, change the following attributes:

9 Note Make sure only script and Execute are checked. Open the SSL settings and make sure that Require SSL is NOT checked. 6. Configure ISAPI and CGI Restrictions Highlight the server entry and open the ISAPI and CGI restriction and add two new entries with the following settings: a. Path: C:\inetpub\wwwroot\ias_relay_server\server\rs_server.dll Description: RS Server DLL Check Allow extension path to execute b. Path: C:\inetpub\wwwroot\ias_relay_server\client\rs_client.dll Description: RS Client DLL Check Allow extension path to execute

10 7. Update IIS configuration for the Relay Server It is required to run relay server s IIS adsutil.vbs script, so that IIS configuration can be updated with the application pool changes you have made. Note: - This must be run from command prompt running with administrative privileges. Open the command prompt and run the following commands: > cd C:\Inetpub\AdminScripts >c:\inetpub\adminscripts > cscript adsutil.vbs set w3svc/1/uploadreadaheadsize 0

11 The command prompt will return updated value of uploadreadaheadsize. If you are running a custom named website for the Relay Server (in our case we are not running custom named site), it is necessary to find out the Web Site ID first before running the above command. e.g. of Custom named web site and non_custom named website Non custom named site (our case) Custom named site

12 Note : - Web site id would change for custom website i.e. 2, as shown in the above diagram. 8. Now install the windows service Note : - The following commands must be run with administrative privileges: a. cd C:\inetpub\wwwroot\ias_relay_server\server b. C:\inetpub\wwwroot\ias_relay_server\server> dbsvc -as -s auto -t rshost -w CAMDMRelayServer "C:\inetpub\wwwroot\ias_relay_server\server\rshost.exe" -q - qc f "C:\inetpub\wwwroot\ias_relay_server\server\rs.config" o "C:\Sybase\rs.log" Now you have a service named SQL Anywhere CAMDMRelayServer. Start this service in the Windows Services Console. Start > Administrative Tools > services Note: - It is very important to change service login account to Local Administrator Group or use a Domain Administrator Group. Use a Domain Administrator account only if all other systems in the CAMDM are using same domain account.

13 9. The Relay Server is now installed. We now need to configure it so that the CAMDM server can successfully communicate with it. Configuring a relay server is a very important task which should be done very carefully. A sample configuration file rs.config.sample is provided with the Relay server in the folder: C:\Inetpub\wwwroot\ias_relay_server\server\ Save a copy of that file in the same folder as: rs.config.

14 Use a text editor (notepad or notepad++) to edit the file. # # Relay server with auto start option # [options] verbosity = 5 # Note: When auto start is used, the default log file is # %temp%\ias_relay_server.log while rshost is active and it will # be renamed using YYMMDDNN.olg filename format upon shutdown. # # Relay server peers # [relay_server] enable = yes host = http_port = 80 https_port = 443 description = relay server 1 in dmz # # Backend farms # [backend_farm] enable = yes id = app7

15 client_security = off backend_security= on description = app007 camdm for ios [backend_farm] enable = yes id = app7a client_security = off backend_security= off description = app007a camdm for Android # # Backend servers # [backend_server] enable = yes farm = app7 id = r3kp mac = b-4a-9a token = tkn4ios [backend_server] enable = yes farm = app7a id = r3kp mac = b-4a-9a token = tkn4iandroid This sample configuration is for our SAAS CAMDM architecture, where CAMDM server farm and RS server farm is setup. The following screen capture of CAMDM server shows registry where to check for [backend_server] id value:

16 Note:- Please use the exact same server transmitterid as shown in CAMDM s registry entry. The exact same steps should be taken for setting up and configuring CAMDM relay server on another relay server. 10. Relay Server Configuration file (rs.config) section reference If there is any change to the rs.config file then its mandatory to restart the Relay Server service, so that the changes can take effect. The Relay server configuration file rs.config consists of several sections, each indicated by the [section]. They are described as follows: Note All values here are case sensitive. [options] Header for section that sets general options for Relay Server operations. start Set value to auto to automatically start the Relay Server engine when an Afaria Server connects successfully. - For Windows Server 2008 R2 (IIS7.5) this value is normally set to = NO when the Relay Server is installed as a Windows Service. This keyword can be removed from the file in this case. verbosity Controls the level of logging. Logs always include errors. The log levels 1-5 always include warnings. 0 = No logging 1 = Session-level logging 2 = Request-level logging

17 3 = Packet-level logging, terse 4 = Packet-level logging, verbose 5 = Transport-level logging [relay_server] Header for section that identifies your Relay Server and its respective ports for HTTP and HTTPS communications. The Relay Server s ports must match IIS server s ports. enable Valid values are yes or no. Set to yes to operate the Relay Server engine and no to prohibit Relay Server operations. host Relay server s own IP address or host name. The IP Address must be the internal IP Address or DNS name which can be reached by the Afaria Server or other Afaria component that is running the Relay Server Outbound Enabler. http_port Set value to match the Relay Server s IIS setting for HTTP communications. The TCP Port must be the internal TCP port which can be reached by the Afaria Server or other Afaria component that is running the Relay Server Outbound Enabler. https_port Set value to match the Relay Server s IIS setting for SSL communications. description User-defined description for your own reference. [backend_farm] Creates a single, case-sensitive identifier for a single Afaria environment, regardless of whether you are operating a single Afaria Server or an Afaria Server farm. The farm ID you define in the configuration file must match the farm ID you define in the Afaria Administrator Server configuration Relay Server settings. [backend_server] Identifies an Afaria Server to the Relay Server. You must have at least one. [backend_server] repeat this section for each Server in your Afaria environment. farm the case-sensitive farm value is the same for each Afaria Server. Use the same farm ID as from section [backend_farm]. ID the ID value is unique for each Afaria Server. The ID value is defined in each Afaria Server s registry key HKLM\Software\Afaria\Afaria\Server\TransmitterId. token the token is any string that you create. Use the same token value for each Afaria Server in a farm. The farm token you define in the configuration file must match the farm token you define in the Afaria Administrator Server configuration Relay Server settings. This value is optional. But we have configured SI environment using this value. 11. Restarting Relay Server (from the command line) It is required by the Relay Server to restart any time there is a change made to the relay server configuration file.

18 It is possible to restart the relay server without restarting IIS and without causing any disruption to other IIS applications. Note: - This service must be started from command prompt running with Administrative privileges. C:\inetpub\wwwroot\ias_relay_server\server\rshost.exe u qc f C:\inetpub\wwwroot\ias_relay_server\server\rs.config Installing and configuring RSOE (Relay Server Outbound Enabler) The intent of this section is to outline the communication between the Relay Server Outbound Enabler (RSOE) and the CAMDM component server. The Relay Server Outbound Enabler is a special connector which facilitates all connection between the backend server and the Relay server using HTTP or HTTPS. Given that all of the communication with the Relay Server is established on an outbound connection from within the internal corporate firewall, there are no required ports to be open on the internal corporate firewall. This provides increased security as the internal corporate firewall remains intact, without the requirement of opening inbound ports for communication. Prerequisites before installing the RSOE o The CAMDM server should be installed o The Relay Server should be installed o The rs.config file should be created and farm ID s are known Relay server Configuration within CAMDM By default an RSOE gets installed with CAMDM, which can be configured and started by using the CAMDM admin console.

19 If Start the outbound enabler with the CA MDM service option is selected, an rsoe.config file is created within the <CAMDMInstallDir>\bin\RSOutboundEnabler folder on the CAMDM server. Each CAMDM component (i.e. Provisioning server, Package server etc.) should have its own RSOE instance locally on the machine where the component is installed. There are two ways to start an RSOE: 1. Through MDM Console Example of starting RSOE through admin console is shown in a diagram. 2. Through Window service Id we don t want to start RSOE through admin console, we can create a windows Service to Start RSOE. e.g. scenario When we have multiple RS s to connect, the Admin console does not allow you to enter multiple RS addresses through the admin console. Before starting the RSOE as a windows service, it is necessary to install the RSOE on the MDM server. Steps for Installing RSOE - Create a directory named RSOutboundEnabler in C:\. - Copy the content from..\gen e\relay_server\64 Bit\RSOutboundEnabler to the c:\ drive of your CAMDM machine. - Edit request filtering settings for Default Web Site on MDM master and Slave machines.

20 o Open Internet Information Services (IIS) Manager o Open Request Filtering option Then Click on Edit Request Filtering Settings. o Change maximum query string (bytes) value to Now system is ready for starting RSOE as windows service. - Start two RSOE services on each MDM server 1. CAMDMRSOEMaster for ios devices, and 2. CAMDMRSOEMasterAndroid for Android devices. Sample command for setting up RSOE as windows service for ios device: dbsvc -as -s auto -t rsoe -w CAMDMRSOEMaster "C:\RSOutboundEnabler\rsoe.exe" -cr "host= ;port=443;https=1;url_suffix=/ias_relay_server/server/rs_server.dll","host= ;port=443;https=1;url_suffix=/ias_relay_server/server/rs_server.dll " -cs "host= ;port=443;https=1" -f app7 -id r3kp -t test1 -o "C:\Sybase\rsoe.log" -v 5 Sample command for setting up RSOE as windows service for Android device: dbsvc -as -s auto -t rsoe -w CAMDMRSOEMasterAndroid "C:\RSOutboundEnabler\rsoe.exe" -cr "host= ;port=80;url_suffix=/ias_relay_server/server/rs_server.dll","host= ;port=80;url_suffix=/ias_relay_server/server/rs_server.dll" -cs "host= ;port=8001;" -f app7a -id r3kp -t test1a -o "C:\Sybase\rsoe_masterAndroid.log" -v 5 Description of RSOE service parameters cr parameter for the Relay Server connection.

21 -cr parameters - host > Relay server IP - port > Relay server port - url_suffix > relay server s service -cr parameters - host > CAMDM server or any other components - port > CAMDM server port f server component farm ID, as defined in the Relay Server configuration file (rs.config) id unique ID identifying the server component, as defined in the Relay Server configuration file. cs parameter for the backend server (CAMDM component server) connection. Configuring relay server for Enrollment server There are two items here: 1. Use Relay server This will enable RS settings. Under this checkbox we have to provide exact farm id that we have given in the rs.config file. 2. Server address* - Here we have to provide server address of relay server. Where devices will be hitting. Configure Package server Select package server option from Server settings > Component > Package Server.

22 1. Use Relay Server This will enable RS settings and under this checkbox we have to provide exact farm id that we have given in RS config file. 2. Server address In server address box we have to provide external rs url through which device will connect RS. Testing Relay Server and RSOE Description of relay server solution component is as follows

23 A Windows IIS will be used to host the Sybase Relay Server solution. The executable and dll s that make up the Sybase Relay Server solution are served up by this IIS. rs_client.dll : this is the dll that mobile devices will connect to when communicating with the Relay Server rs_server.dll : this is the dll that CAMDM nodes will connect to when communicating with the Relay Server rshost.exe : the executable that runs the Sybase Relay Server functionality The Relay Server Windows Service: the aforementioned rshost.exe will be run as a Windows Service that can be configured to start up manually or automatically when the Windows host server starts. After installing CAMDM, RS, and RSOE, following two links can be used for testing the configuration of RS and RSOE. # For RSOE connection or fqdn>/ias_relay_server/server/rs_server.dll If this link is put in browser and try to be accessed from outside the RS machine User should see of Overall availability: Full

24 For MDM Device Client or fqdn>/ias_relay_server/client/rs_client.dll If this link is put in browser and try to be accessed from outside the RS machine User should see of Overall availability: Full Note : - If RS server is supposed to communicate on secure ports, then SSL certificate is needed to be set in IIS server. Refer : Setup https on IIS 7.5.docx Setup https on IIS 7.5 Open IISManager (Start > Run > type inetmgr, Hit Enter) IISManager > Select <SERVERNAME> on left pane, select Server Certificates on middle pane.

25 Setup https on IIS 7.5 Open IISManager (Start > Run > type inetmgr, Hit Enter) IISManager > Select <SERVERNAME> on left pane, select Server Certificates on middle pane. Click on Open Feature on right pane

26

27 Troubleshooting the Relay Server and Relay Server Outbound Enabler The troubleshooting process consists of a sequence of steps: 1. Verify First verify if the Relay Server was installed correctly as a plug-in in IIS. 2. Test Next, perform some basic tests which should give already an idea if there is a problem with the Relay Server installation, the communication between the device and the Relay Server or the communication between the MDM server and the Relay Server 3. Check Logs The Relay Server and Relay Server Outbound Enabler logs will provide the most useful information when troubleshooting the Relay Server. It is advised to check the logs before and after each test. If you followed the instructions earlier in this document, the log files will be under C:\Sybase\ on the Relay and MDM Servers. 4. Check Settings Some settings can be validated in addition to the installation settings checked in the first phase. 5. Run Traces As a final resort, trace the mobile data as it travels from the device to the Relay Server to the MDM server on the internal network. DEVICE RELAY SERVER MDM VERIFY TEST CHECK LOGS CHECK SETTINGS Verify IIS Components. Verify Application Pool. Verify ISAPI and CGI Check IIS Configuration. Test IIS Home Page. Test URL: rs_client.dll. Test IIS Home Page. Test URL rs_client.dll. Test URL: rs_server.dll Test IIS Home Page. Test URL rs_server.dll. MDM Logs. rs.log. IIS Logs. MS Event Logs. RSOE Log. MDM Log. MS Event Logs. Check Firewall / Antivirus. Check DEP. Check Account. Check Application Host. Check RS Version. Check Multiple NIC cards. Check Firewall / Antivirus. Check RSOE version. NETWORK Firewall logs. Check Firewall ports and proxies. RUN TRACES Run Wireshark. Run netstat. Run Wireshark. Run netstat. Run tracert.

28 Verify Before starting the troubleshooting, verify the configuration of the Relay Server in IIS. The configuration in this section assumes you have already viewed the other product documentation and the earlier sections of this document. Relay Server: Verify required IIS Components On the host of the Sybase Relay Server, open the Server Manager and open the Features Dialog. You don't need any Features installed for the native Sybase Relay Server function, but if features are selected here, make sure they follow the guidelines below: Net Framework Non-HTTP Activation Windows Process Activation Service Process Model NET Environment Configuration APIs Open the Server Manager and verify that both the Web Server (IIS) IIS Role and the following IIS Role Features are at least installed: Common HTTP Features Static Content Default Document HTTP Errors Important: Make sure WebDAV Publishing is not installed. Application Development o ISAPI Extensions

29 Health and Diagnostics o HTTP Logging o Request Monitor Security o Request Filtering Performance o Static Content Compression Management Tools o IIS Management Console o IIS Management Scripts and Tool o IIS 6 Management Compatibility o IIS 6 Metabase Compatibility o IIS 6 WMI Compatibility o IIS 6 Scripting Tools o IIS 6 Management Console Relay Server: Verify IIS Application Pool Open the Internet Information Services (IIS) Manager Check that an Application Pool is present with the following attributes: Open the Advanced Settings of this Application Pool and check the following attributes:

30 Relay Server: Verify the IIS Application Note: When installing the Sybase Relay Server, you can choose to install it as part of the Default Web Site (of IIS) or you can create a new web site for the Sybase Relay Server. This guide covers the first option (use the Default Web Site) In the IIS Manager, select the Relay Server application, called ias_relay_server (under the node Default Web Site) and check the properties:

31 Note: The Physical path might be different in your environment. Now, with the ias_relay_server application still selected, open the Request Filtering settings and go to Edit Feature Settings. Verify the following attributes:

32 Now, with the ias_relay_server application still selected, open the Handler Mappings and go to Edit Feature Permissions. Validate the following attributes and verify that only the Script and Execute are checked. Now, with the ias_relay_server application still selected, open the SSL Settings and make sure, if applicable, Require SSL is not checked and Ignore Client Certificates is selected. Relay Server : Verify ISAPI and CGI restrictions In the IIS Manager, highlight the Server Entry and open the ISAPI and CGI Restrictions. Check if following 2 entries are available: RS Server dll o Path: C:\inetpub\wwwroot\ias_relay_server\server\rs_server.dll o Description: RS Server DLL o Check Allow extension path to execute

33 RS Client dll o Path: C:\inetpub\wwwroot\ias_relay_server\client\rs_client.dll o Description: RS Client DLL o Check Allow extension path to execute Relay Server : Update IIS Configuration During the installation, some application pool changes were made on the IIS. To update the IIS server configuration, the adsutil.vbs must be run. To verify that the script was run, you can run this script again here. First, in the IIS Manager, verify the web site ID of the Site that runs the Sybase Relay Server. For example, the web site ID of this installation is 1 Now, on the Sybase Relay Server host, open a command prompt as an Administrator. Look for the adsutil.vbs and execute this script. Script location example: C:\Inetpub\AdminScripts Script command: cscript adsutil.vbs set w3svc/1/uploadreadaheadsize 0 The command returns the current value of the uploadreadaheadsize variable

34

35 Test In order to focus the troubleshooting process, start with some basic tests. The tests that are included in this section should give you an idea if the problem is on the Relay Server itself or in the communication between the mobile device and the Relay Server or in the communication between the SUP server and the Relay Server. Relay Server: Test IIS Home Page On the Relay Server, validate that the default homepage of the IIS can be reached via a web browser. In the browser, navigate to and see if following image is displayed: If this image does not show, there s a problem with the IIS. Continue with concentrating troubleshooting on the IIS. Relay Server: Test URL with rs_server.dll On the Relay Server, navigate to the following URL; Server IIS host>/ias_relay_server/server/rs_server.dll You should see a screen like this:

36 Note: The Overall availability can also be Partial or None. In that case validate if all of the RSOE s are properly running and connected to the Relay Server. If this page does not show, but rather displays an error; there s a problem with the setup of the Sybase Relay Server on the IIS. Continue with concentrating troubleshooting on the IIS or check the Relay Server Windows Service. Tip: To get more information about the cause of the error, turn off Show friendly HTTP Error Messages in the settings of Internet Explorer, for example. One possible reason for errors can be the authorization level of the Windows account that is used to run the IIS service. Validate that this account has proper authorizations to read the folders where the Sybase Relay Server executable and dll s are located. Relay Server : Test URL with rs_client.dll On the Relay Server, navigate to the following URL; Server IIS host>/ias_relay_server/client/rs_client.dll You should see a screen like this:

37 If this does not display, proceed with the suggestions in the previous section for the rs_server.dll test. Mobile Device : Test IIS Home Page It is also important to run the same tests above on the Mobile Device web browser. If this image does not show, there is a problem. Possible reasons could be: Some network setting on the mobile device is blocking access to the homepage of IIS. Port 80 on the outside firewall in front of the Relay Server is blocked (port 80 is the default port). Some rule on the outside firewall is not granting access to the mobile device that is trying to connect over port 80 on the firewall. Mobile Device : Test URL with rs_client.dll Perform the same steps outlined above for accessing the rs_client.dll using the Mobile Device s web browser.

38 MDM Server : Test connection to rs_server.dll and rs_client.dll Be sure to perform the same tests using the web browser on the MDM server. Check Logs Before and after each test, it is recommended to check the Relay Server and RSOE Log files. Relay Server : Check Relay Server log The Sybase Relay Server logs events in a log file called the rs.log. The location of the rs.log is defined during installation of the Sybase Relay Server. (if you don t know where the rs.log is located, just perform a search for rs.log on the IIS host). For the troubleshooting process it s a good idea to elevate the log level of the Sybase Relay Server. This can be done by changing a setting in the rs.config file; this is the configuration file of the Sybase Relay Server. (if you don t know where the rs.config is located, just perform a search for rs.config on the IIS host). In the rs.config, make sure the verbosity is set to 5. Note: If you change the verbosity level, recycle the Sybase Relay Windows Service in the Windows Services console. It should usually be called Relay Server or SQLAnywhere_RelayServer or something similar. In the rs.log file, look for the following information: Error lines start with an E.

39 Other important information may still be logged as an Informational message: I. Also, please consider sections of information regarding incoming communication in the rs.log file; for example when a device sends a message to the Sybase Relay Server, this message will be logged in the rs.log file (when verbosity is set to 5). Look for entries like the following: When testing the Relay Server with a mobile device, check if these kind of communication chunks appear in the rs.log-file. If not, there could be a problem with the outside firewall or the (external) network of the IIS Host. Relay Server: Check IIS log If the rs.log file does not contain helpful information, check the logs of the IIS itself. Two log files are of interest; The W3SVC log; for IIS 7 this file is located in the C:\inetpub\logs\LogFiles\W3SVC- folder. This file will give an overview of HTTP requests that came in, the IP of the sender and the HTTP response code to the request. The HTTPErr log; for IIS 7 this fileis located in the C:\Windows\System32\LogFiles\HTTPERRfolder This file will give an overview of errors that occurred in the HTTP communication with the IIS.

40 Note: When the mobile device connects with the Relay Server it will connect to the following URL, which is hosted on the Relay Server: server hostname>/ias_relay_server/rs_client.dll Relay Server: Check Microsoft Event Logs Other log files of interest on the Windows host of the Sybase Relay Server are the Microsoft Event logs. The following logs are of interest here: Application Security System Verify if these logs show useful information about errors that occurred at the time of testing of the Sybase Relay Server with a mobile device MDM Server: Check RSOE Log In the RSOE log file, look for following information; Error lines, starting with an E.

41 Remember that lines that start with an I. may also have important information. Also look for chunks of communication in the RSOE.log-file; when a device ends a message to the Sybase Relay Server, the Sybase Relay Server will communicate this message to the SUP server. This message will be logged in the RSOE log (with verbosity set to 5). Look for entries like the following: When testing the Sybase Relay Server with a mobile device, check if these kinds of communication chunks appear in the RSOE log file. If not, then there is no communication between the Sybase Relay Server and the MDM Server. Possible causes could be; o The configuration of the RSOE and Relay Server is wrong; for example, mismatches in server node names, farm names, tokens,... o The firewall between the Sybase Relay Server and the SUP blocks traffic on port 80 o There s HTTP packet filtering on the port 80 of the firewall which drops the Sybase mobile traffic o The DNS host name of the Relay Server cannot be resolved when communicating from the SUP to the Relay Server MDM Server: Check MDM logs in the Admin Console Login to the CA MDM Admin Portal page: Navigate to Server > Logs

42 Use the search filter if needed to change the Date/Time, Type to Error, etc as needed. Please do not overlook informational messages which may be very important, despite the fact that they do not appear as an error. Check the Log Option Configuration in the MDM Admin Console You may need to validate that all of the appropriate logging options are enabled. MDM Server Relay Server Configuration in the MDM Admin Console Enrollment Server In the configuration below, the Server Address under the Relay Server should be set appropriately. Please see the earlier sections of this document for Enrollment Server setup.

43 Package Server In the configuration below, the Indirect Access (Relay Server) should be set appropriately. Please see the earlier sections of this document for Package Server setup.

44 MDM Enrollment Policies Validate the Enrollment Policies Validate that each of the MDM Enrollment Policies (for each device type). Open the policy detail. Click the checkbox next to the enrollment code. Click the Inspect button. As we can see from the screenshot above, the address included the Relay Server address. If a Relay Server was not configured, this would typically show the MDM address. Go back to the Enrollment Policy, and click the General link on the left:

45 Validate the Server Address, Reset to Default if necessary:

46 Additional Troubleshooting tools: 1- Fiddler: This tool can trace HTTP traffic on a desktop or server machine if there is an issue accessing the Relay Server URL in a web browser. The data can show more than what a web browser alone might show. For example, in the case below, it shows a better error than the web browser: While fiddler shows: 2- Wireshark from The following CA Technical document TEC shows how it can be used: &intcmp=searchresultclick&resultnum=1

47 Additional Documentation: o CA MDM Product Documentation on wiki.ca.com: o Sybase Relay Server Documentation: o Internet Search: Relay Server Error codes can be searched on the internet. This will search the CA Knowledge Base and Sybase documentation. Important CA Knowledge Base articles on the Relay Server: Note: These can be searched from TEC Introduction to Relay Server and RSOE (relay server outbound enabler) TEC When starting a Relay Server, the system errors stating "Failed to attach to Relay Server 'ias_relay_server_host' shared memory. TEC What are the different "Overall availability" status of the Relay Server? TEC CA MDM Client connections may time out when using the Relay Server installed under a site other than the "Default Web Site" TEC When attempting to install a Profile on an ios device the process fails while attempting to enroll the certificate with the message "The SCEP Server returned an invalid response". TEC TEC Web Site")? Is it possible to create a Windows Service for the Relay Server? How can point the Relay Server to a different web site in IIS (not the "Default TEC Receive error: "Profile Failed to Install. The profile "Config Payload" could not be installed" or Enrollment failed message received on the ios devices when attempting to enroll ios devices.

Copyright 2011, Sybase, Inc. Relay Server

Copyright 2011, Sybase, Inc. Relay Server Copyright 2011, Sybase, Inc. Relay Server Copyright 2011 by Sybase, Inc. All rights reserved. This publication pertains to Sybase software and to any subsequent release until otherwise indicated in new

More information

Relay Server Installation (X88)

Relay Server Installation (X88) SAP Mobile Secure: SAP Afaria 7 SP5 September 2014 English Relay Server Installation (X88) Building Block Configuration Guide SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP SE or

More information

Introduction to the EIS Guide

Introduction to the EIS Guide Introduction to the EIS Guide The AirWatch Enterprise Integration Service (EIS) provides organizations the ability to securely integrate with back-end enterprise systems from either the AirWatch SaaS environment

More information

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

CUSTOMER Installing SAP Afaria

CUSTOMER Installing SAP Afaria SAP Afaria Document Version: 7 SP05-2014-09-02 CUSTOMER Table of Contents 1....3 1.1 Launching the Afaria Setup Program....3 1.2 Installing the Afaria Server....4 1.2.1 Configuring Afaria to use LDAP....6

More information

XIA Configuration Server

XIA Configuration Server XIA Configuration Server XIA Configuration Server v7 Installation Quick Start Guide Monday, 05 January 2015 1 P a g e X I A C o n f i g u r a t i o n S e r v e r Contents Requirements... 3 XIA Configuration

More information

WatchDox SharePoint Beta Guide. Application Version 1.0.0

WatchDox SharePoint Beta Guide. Application Version 1.0.0 Application Version 1.0.0 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM

PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM White Paper PROXY SETUP WITH IIS USING URL REWRITE, APPLICATION REQUEST ROUTING AND WEB FARM FRAMEWORK OR APACHE HTTP SERVER FOR EMC DOCUMENTUM EROOM Abstract This white paper explains how to setup Proxy

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

PC Monitor Enterprise Server. Setup Guide

PC Monitor Enterprise Server. Setup Guide PC Monitor Enterprise Server Setup Guide Prerequisites Server Requirements - Microsoft Windows Server 2008 R2 or 2012-2GB RAM - IIS 7.5 or IIS 8.0 (with ASP.NET 4.0 installed) - Microsoft SQL Server 2008

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Configuration Guide BES12. Version 12.2

Configuration Guide BES12. Version 12.2 Configuration Guide BES12 Version 12.2 Published: 2015-07-07 SWD-20150630131852557 Contents About this guide... 8 Getting started... 9 Administrator permissions you need to configure BES12... 9 Obtaining

More information

Relay Server. Copyright 2010, ianywhere Solutions, Inc. - SQL Anywhere 12.0.0

Relay Server. Copyright 2010, ianywhere Solutions, Inc. - SQL Anywhere 12.0.0 Relay Server Copyright 2010, ianywhere Solutions, Inc. - SQL Anywhere 12.0.0 Copyright 2010 ianywhere Solutions, Inc. Portions copyright 2010 Sybase, Inc. All rights reserved. This documentation is provided

More information

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C

USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION. www.pesa.com August 2014 Phone: 256.726.9200. Publication: 81-9059-0703-0, Rev. C USER GUIDE WEB-BASED SYSTEM CONTROL APPLICATION Publication: 81-9059-0703-0, Rev. C www.pesa.com Phone: 256.726.9200 Thank You for Choosing PESA!! We appreciate your confidence in our products. PESA produces

More information

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition The installation of Lync Server 2010 is a fairly task-intensive process. In this article, I will walk you through each of the tasks,

More information

FTP, IIS, and Firewall Reference and Troubleshooting

FTP, IIS, and Firewall Reference and Troubleshooting FTP, IIS, and Firewall Reference and Troubleshooting Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the Windows Firewall, the

More information

Reference and Troubleshooting: FTP, IIS, and Firewall Information

Reference and Troubleshooting: FTP, IIS, and Firewall Information APPENDIXC Reference and Troubleshooting: FTP, IIS, and Firewall Information Although Cisco VXC Manager automatically installs and configures everything you need for use with respect to FTP, IIS, and the

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

GlobalSCAPE DMZ Gateway, v1. User Guide

GlobalSCAPE DMZ Gateway, v1. User Guide GlobalSCAPE DMZ Gateway, v1 User Guide GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054 Technical

More information

Configuration Guide BES12. Version 12.3

Configuration Guide BES12. Version 12.3 Configuration Guide BES12 Version 12.3 Published: 2016-01-19 SWD-20160119132230232 Contents About this guide... 7 Getting started... 8 Configuring BES12 for the first time...8 Configuration tasks for managing

More information

CA Mobile Device Management 2014 Q1 Getting Started

CA Mobile Device Management 2014 Q1 Getting Started CA Mobile Device Management 2014 Q1 Getting Started This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Introduction to the Mobile Access Gateway

Introduction to the Mobile Access Gateway Introduction to the Mobile Access Gateway This document provides an overview of the AirWatch Mobile Access Gateway (MAG) architecture and security and explains how to enable MAG functionality in the AirWatch

More information

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER

REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.1.0.XXX Requirements and Implementation Guide (Rev 4-10209) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis Training Series

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

XenDesktop Implementation Guide

XenDesktop Implementation Guide Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Implementation Guide Pooled Desktops (Local and Remote) www.citrix.com Contents Contents... 2 Overview... 4 Initial Architecture... 5 Installation

More information

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123 Instructor Manual Published: 2013-07-02 SWD-20130702091645092 Contents Advance preparation...7 Required materials...7 Topics

More information

Load Balancing. Outlook Web Access. Web Mail Using Equalizer

Load Balancing. Outlook Web Access. Web Mail Using Equalizer Load Balancing Outlook Web Access Web Mail Using Equalizer Copyright 2009 Coyote Point Systems, Inc. Printed in the USA. Publication Date: January 2009 Equalizer is a trademark of Coyote Point Systems

More information

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010

DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010 DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration

More information

NEFSIS DEDICATED SERVER

NEFSIS DEDICATED SERVER NEFSIS TRAINING SERIES Nefsis Dedicated Server version 5.2.0.XXX (DRAFT Document) Requirements and Implementation Guide (Rev5-113009) REQUIREMENTS AND INSTALLATION OF THE NEFSIS DEDICATED SERVER Nefsis

More information

ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER

ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER M-FILES CORPORATION ENABLING RPC OVER HTTPS CONNECTIONS TO M-FILES SERVER VERSION 2.3 DECEMBER 18, 2015 Page 1 of 15 CONTENTS 1. Version history... 3 2. Overview... 3 2.1. System Requirements... 3 3. Network

More information

Installing GFI MailSecurity

Installing GFI MailSecurity Installing GFI MailSecurity Introduction This chapter explains how to install and configure GFI MailSecurity. You can install GFI MailSecurity directly on your mail server or you can choose to install

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

Introduction to Mobile Access Gateway Installation

Introduction to Mobile Access Gateway Installation Introduction to Mobile Access Gateway Installation This document describes the installation process for the Mobile Access Gateway (MAG), which is an enterprise integration component that provides a secure

More information

Desktop Surveillance Help

Desktop Surveillance Help Desktop Surveillance Help Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating from Desktop Surveillance 2.6 to Desktop Surveillance 3.2... 13 Program Structure... 14 Getting

More information

Configuring Microsoft IIS 5.0 With Pramati Server

Configuring Microsoft IIS 5.0 With Pramati Server Configuring Microsoft IIS 5.0 With Pramati Server 46 Microsoft Internet Information Services 5.0 is a built-in web server that comes with Windows 2000 operating system. An earlier version, IIS 4.0, is

More information

How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008.

How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008. 1 How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008. By & Steve Smith, MVP SharePoint Server, MCT Penny Coventry, MVP SharePoint Server, MCT Combined

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

Secure Web Appliance. SSL Intercept

Secure Web Appliance. SSL Intercept Secure Web Appliance SSL Intercept Table of Contents 1. Introduction... 1 1.1. About CYAN Secure Web Appliance... 1 1.2. About SSL Intercept... 1 1.3. About this Manual... 1 1.3.1. Document Conventions...

More information

TIBCO Spotfire Metrics Prerequisites and Installation

TIBCO Spotfire Metrics Prerequisites and Installation TIBCO Spotfire Metrics Prerequisites and Installation Software Release 6.0 November 2013 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF

More information

BusinessObjects Enterprise XI Release 2

BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 How to configure an Internet Information Services server as a front end to a WebLogic application server Overview Contents This document describes the process of

More information

Jive Connects for Microsoft SharePoint: Troubleshooting Tips

Jive Connects for Microsoft SharePoint: Troubleshooting Tips Jive Connects for Microsoft SharePoint: Troubleshooting Tips Contents Troubleshooting Tips... 3 Generic Troubleshooting... 3 SharePoint logs...3 IIS Logs...3 Advanced Network Monitoring... 4 List Widget

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Configuration Guide BES12. Version 12.1

Configuration Guide BES12. Version 12.1 Configuration Guide BES12 Version 12.1 Published: 2015-04-22 SWD-20150422113638568 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12... 8 Product documentation...

More information

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers.

How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. 1 How to Scale out SharePoint Server 2007 from a single server farm to a 3 server farm with Microsoft Network Load Balancing on the Web servers. Back to Basics Series By Steve Smith, MVP SharePoint Server,

More information

Setup Guide Access Manager 3.2 SP3

Setup Guide Access Manager 3.2 SP3 Setup Guide Access Manager 3.2 SP3 August 2014 www.netiq.com/documentation Legal Notice THIS DOCUMENT AND THE SOFTWARE DESCRIBED IN THIS DOCUMENT ARE FURNISHED UNDER AND ARE SUBJECT TO THE TERMS OF A LICENSE

More information

CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module MaaS360 Version 1.0.1. ForeScout Mobile

CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module MaaS360 Version 1.0.1. ForeScout Mobile CounterACT Plugin Configuration Guide for ForeScout Mobile Integration Module Version 1.0.1 ForeScout Mobile Table of Contents About the Integration... 3 ForeScout MDM... 3 Additional Documentation...

More information

Secure Messaging Server Console... 2

Secure Messaging Server Console... 2 Secure Messaging Server Console... 2 Upgrading your PEN Server Console:... 2 Server Console Installation Guide... 2 Prerequisites:... 2 General preparation:... 2 Installing the Server Console... 2 Activating

More information

Configuring Load Balancing

Configuring Load Balancing When you use Cisco VXC Manager to manage thin client devices in a very large enterprise environment, a single Cisco VXC Manager Management Server cannot scale up to manage the large number of devices.

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Fusion Installer Instructions

Fusion Installer Instructions Fusion Installer Instructions This is the installation guide for the Fusion NaviLine installer. This guide provides instructions for installing, updating, and maintaining your Fusion REST web service.

More information

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Table of Contents Table of Contents... 1 I. Introduction... 3 A. ASP.NET Website... 3 B. SQL Server Database... 3 C. Administrative

More information

2X Cloud Portal v10.5

2X Cloud Portal v10.5 2X Cloud Portal v10.5 URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise

More information

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

More information

QMX ios MDM Pre-Requisites and Installation Guide

QMX ios MDM Pre-Requisites and Installation Guide QMX ios MDM Pre-Requisites and Installation Guide QMX System Requirements The following requirements apply to the system that QMX will be installed on. This system will host the QMX MDM Service. These

More information

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual

TIBCO Spotfire Web Player 6.0. Installation and Configuration Manual TIBCO Spotfire Web Player 6.0 Installation and Configuration Manual Revision date: 12 November 2013 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED

More information

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services Using IIS Application Request Routing to Publish Lync Server 2013 Web Services DISCLAIMER 2014 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Hyper-V, Internet Explorer, Lync,

More information

VMware Identity Manager Connector Installation and Configuration

VMware Identity Manager Connector Installation and Configuration VMware Identity Manager Connector Installation and Configuration VMware Identity Manager This document supports the version of each product listed and supports all subsequent versions until the document

More information

Configuration Guide. BlackBerry Enterprise Service 12. Version 12.0

Configuration Guide. BlackBerry Enterprise Service 12. Version 12.0 Configuration Guide BlackBerry Enterprise Service 12 Version 12.0 Published: 2014-12-19 SWD-20141219132902639 Contents Introduction... 7 About this guide...7 What is BES12?...7 Key features of BES12...

More information

Server Installation Manual 4.4.1

Server Installation Manual 4.4.1 Server Installation Manual 4.4.1 1. Product Information Product: BackupAgent Server Version: 4.4.1 2. Introduction BackupAgent Server has several features. The application is a web application and offers:

More information

WEBCONNECT INSTALLATION GUIDE. Version 1.96

WEBCONNECT INSTALLATION GUIDE. Version 1.96 WEBCONNECT INSTALLATION GUIDE Version 1.96 Copyright 1981-2015 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop Business

More information

This document describes the installation of the Web Server for Bosch Recording Station 8.10.

This document describes the installation of the Web Server for Bosch Recording Station 8.10. Description Content 1 Introduction... 1 2 Web Server for BRS running on Windows 7... 2 3 Web Server for BRS running on Windows Server 2008... 15 4 Web Server for BRS running on Windows XP... 29 5 Web Server

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

Citrix Access Gateway Plug-in for Windows User Guide

Citrix Access Gateway Plug-in for Windows User Guide Citrix Access Gateway Plug-in for Windows User Guide Access Gateway 9.2, Enterprise Edition Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior acceptance

More information

Migrating TimeForce To A New Server

Migrating TimeForce To A New Server Rev. 4/28/14 Migrating TimeForce To A New Server Table of Contents 1. Installation Prerequisites... 2 Required... 2 Recommended... 3 2. Update to a Migration Compatible Version... 3 Determine the Database

More information

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved.

Tenrox. Single Sign-On (SSO) Setup Guide. January, 2012. 2012 Tenrox. All rights reserved. Tenrox Single Sign-On (SSO) Setup Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide provides a high-level technical overview of the Tenrox Single Sign-On (SSO) architecture,

More information

Sharp Remote Device Manager (SRDM) Server Software Setup Guide

Sharp Remote Device Manager (SRDM) Server Software Setup Guide Sharp Remote Device Manager (SRDM) Server Software Setup Guide This Guide explains how to install the software which is required in order to use Sharp Remote Device Manager (SRDM). SRDM is a web-based

More information

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com FrontDesk (Server Software Installation) Ver. 1.0.1 www.frontdeskhealth.com This document is the installation manual for installing the FrontDesk Server, Kiosk/Touch Screen, and License Management Tool

More information

HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE

HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE HELP DOCUMENTATION SSRPM WEB INTERFACE GUIDE Copyright 1998-2013 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9

More information

NetSpective Global Proxy Configuration Guide

NetSpective Global Proxy Configuration Guide NetSpective Global Proxy Configuration Guide Table of Contents NetSpective Global Proxy Deployment... 3 Configuring NetSpective for Global Proxy... 5 Restrict Admin Access... 5 Networking... 6 Apply a

More information

DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD

DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD DEPLOYMENT GUIDE CONFIGURING THE BIG-IP LTM SYSTEM WITH FIREPASS CONTROLLERS FOR LOAD BALANCING AND SSL OFFLOAD Configuring the BIG-IP LTM system for use with FirePass controllers Welcome to the Configuring

More information

Ekran System Help File

Ekran System Help File Ekran System Help File Table of Contents About... 9 What s New... 10 System Requirements... 11 Updating Ekran to version 4.1... 13 Program Structure... 14 Getting Started... 15 Deployment Process... 15

More information

Issue Tracking Anywhere Installation Guide

Issue Tracking Anywhere Installation Guide TM Issue Tracking Anywhere Installation Guide The leading developer of version control and issue tracking software Table of Contents Introduction...3 Installation Guide...3 Installation Prerequisites...3

More information

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2

Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Password Reset Server Installation Guide Windows 8 / 8.1 Windows Server 2012 / R2 Last revised: November 12, 2014 Table of Contents Table of Contents... 2 I. Introduction... 4 A. ASP.NET Website... 4 B.

More information

App Orchestration 2.0

App Orchestration 2.0 App Orchestration 2.0 Integrated Provisioning Deployment Guide Prepared by: Nicholas Ceballos Commissioning Editor: Linda Belliveau Version: 6.0 Last Updated: December 12, 2013 Page 1 Contents Integrated

More information

Mobility Manager 9.0. Installation Guide

Mobility Manager 9.0. Installation Guide Mobility Manager 9.0 Installation Guide LANDESK MOBILITY MANAGER Copyright 2002-2012, LANDesk Software, Inc. and its affiliates. All rights reserved. LANDesk and its logos are registered trademarks or

More information

Chapter 8 Router and Network Management

Chapter 8 Router and Network Management Chapter 8 Router and Network Management This chapter describes how to use the network management features of your ProSafe Dual WAN Gigabit Firewall with SSL & IPsec VPN. These features can be found by

More information

System Administration Training

System Administration Training Table of Contents 1 Components: Web Server Components: SQL Server 3 Components: File System 4 Components: Other Components 5 Server Configuration: Pre-Requisites 6 Server Configuration: Running the Installer

More information

Installing and Configuring WhatsUp Gold

Installing and Configuring WhatsUp Gold Installing and Configuring WhatsUp Gold This guide provides information about installing and configuring WhatsUp Gold v14.2, including instructions on how to run the WhatsUp web interface through an Internet

More information

Quadro Configuration Console User's Guide. Table of Contents. Table of Contents

Quadro Configuration Console User's Guide. Table of Contents. Table of Contents Epygi Technologies Table of Contents Table of Contents About This User s Guide... 3 Introducing the Quadro Configuration Console... 4 Technical Specification... 6 Requirements... 6 System Requirements...

More information

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected (

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected ( Avaya one X Portal 1.1.3 Lightweight Directory Access Protocol (LDAP) over Secure Socket Layer (SSL) Configuration This document provides configuration steps for Avaya one X Portal s 1.1.3 communication

More information

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background

Customer Tips. Xerox Network Scanning HTTP/HTTPS Configuration using Microsoft IIS. for the user. Purpose. Background Xerox Multifunction Devices Customer Tips June 5, 2007 This document applies to these Xerox products: X WC Pro 232/238/245/ 255/265/275 for the user Xerox Network Scanning HTTP/HTTPS Configuration using

More information

Introduction to the Secure Email Gateway (SEG)

Introduction to the Secure Email Gateway (SEG) Introduction to the Secure Email Gateway (SEG) Overview The Secure Email Gateway (SEG) Proxy server is a separate server installed in-line with your existing email server to proxy all email traffic going

More information

SETUP SSL IN SHAREPOINT 2013 (USING SELF-SIGNED CERTIFICATE)

SETUP SSL IN SHAREPOINT 2013 (USING SELF-SIGNED CERTIFICATE) 12/15/2012 WALISYSTEMSINC.COM SETUP SSL IN SHAREPOINT 2013 (USING SELF-SIGNED CERTIFICATE) Setup SSL in SharePoint 2013 In the last article (link below), you learned how to setup SSL in SharePoint 2013

More information

WHITE PAPER Citrix Secure Gateway Startup Guide

WHITE PAPER Citrix Secure Gateway Startup Guide WHITE PAPER Citrix Secure Gateway Startup Guide www.citrix.com Contents Introduction... 2 What you will need... 2 Preparing the environment for Secure Gateway... 2 Installing a CA using Windows Server

More information

SELF SERVICE RESET PASSWORD MANAGEMENT WEB INTERFACE GUIDE

SELF SERVICE RESET PASSWORD MANAGEMENT WEB INTERFACE GUIDE SELF SERVICE RESET PASSWORD MANAGEMENT WEB INTERFACE GUIDE Copyright 1998-2015 Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form

More information

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15 Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Configuring PA Firewalls for a Layer 3 Deployment

Configuring PA Firewalls for a Layer 3 Deployment Configuring PA Firewalls for a Layer 3 Deployment Configuring PAN Firewalls for a Layer 3 Deployment Configuration Guide January 2009 Introduction The following document provides detailed step-by-step

More information

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide

Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Web Sites, Virtual Machines, Service Management Portal and Service Management API Beta Installation Guide Contents Introduction... 2 Environment Topology... 2 Virtual Machines / System Requirements...

More information

Kaseya Server Instal ation User Guide June 6, 2008

Kaseya Server Instal ation User Guide June 6, 2008 Kaseya Server Installation User Guide June 6, 2008 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

AVG Business Secure Sign On Active Directory Quick Start Guide

AVG Business Secure Sign On Active Directory Quick Start Guide AVG Business Secure Sign On Active Directory Quick Start Guide The steps below will allow for download and registration of the AVG Business SSO Cloud Connector to integrate SaaS application access and

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

More information

Server Software Installation Guide

Server Software Installation Guide Server Software Installation Guide This guide provides information on...... The architecture model for GO!Enterprise MDM system setup... Hardware and supporting software requirements for GO!Enterprise

More information