<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic MPS Server Setup and Configuration Problem in Intel® Business Client Software Development</title>
    <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831966#M1303</link>
    <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;Let me take a lookand I will get back to you.</description>
    <pubDate>Thu, 28 Apr 2011 21:14:38 GMT</pubDate>
    <dc:creator>Lance_A_Intel</dc:creator>
    <dc:date>2011-04-28T21:14:38Z</dc:date>
    <item>
      <title>MPS Server Setup and Configuration Problem</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831965#M1302</link>
      <description>We are attempting to set up an MPS server, using v7 of the AMT SDK. Oddly, using the provided sample httpd.conf (and when attempting to use others, such as LANDesk), we are runing into a basic issue: the ProxySocks* directives are all unrecognized by Apache (we are using the latest Apache v2.2.17).&lt;BR /&gt;&lt;BR /&gt;Here's the text of the error:&lt;BR /&gt;&lt;BR /&gt;httpd.exe: Syntax error on line 115 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/Program Files/Apache Software Foundation/Apache2.2/modules/mod_proxy_http.so into server: The specified procedure could not be found.&lt;BR /&gt;&lt;BR /&gt;The above mentioned file does, of course, exist at the provided location. We have tried with using both the SDK's version of mod_proxy.so and mod_proxy_connect.so and the ones that ships with Apache.&lt;BR /&gt;&lt;BR /&gt;Relevent httpd.conf entries are as follows:&lt;BR /&gt;&lt;BR /&gt;LoadModule proxy_module modules/mod_proxy.so&lt;BR /&gt;LoadModule proxy_connect_module modules/mod_proxy_connect.so&lt;BR /&gt;LoadModule proxy_http_module modules/mod_proxy_http.so&lt;BR /&gt;. . . .&lt;BR /&gt;# MPS DATA&lt;BR /&gt;ProxySocks On&lt;BR /&gt;ProxySocksIP 127.0.0.1&lt;BR /&gt;ProxySocksPort 16993&lt;BR /&gt;ProxySocksDnsMode Remote&lt;BR /&gt;ProxySocksAuth Off&lt;BR /&gt;ProxySocksUsername testusername&lt;BR /&gt;ProxySocksPassword testpassword&lt;BR /&gt;ProxyRequests On&lt;BR /&gt;ProxyVia On&lt;BR /&gt;&lt;PROXY&gt;&lt;BR /&gt; Order deny,allow&lt;BR /&gt; Allow from all&lt;BR /&gt;&lt;/PROXY&gt;&lt;BR /&gt;AllowCONNECT 443 623 664 16992 16993 16994 16995&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any thoughts?</description>
      <pubDate>Thu, 28 Apr 2011 20:39:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831965#M1302</guid>
      <dc:creator>David_Beveridge</dc:creator>
      <dc:date>2011-04-28T20:39:33Z</dc:date>
    </item>
    <item>
      <title>MPS Server Setup and Configuration Problem</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831966#M1303</link>
      <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;Let me take a lookand I will get back to you.</description>
      <pubDate>Thu, 28 Apr 2011 21:14:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831966#M1303</guid>
      <dc:creator>Lance_A_Intel</dc:creator>
      <dc:date>2011-04-28T21:14:38Z</dc:date>
    </item>
    <item>
      <title>MPS Server Setup and Configuration Problem</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831967#M1304</link>
      <description>Hi David,&lt;BR /&gt;Sorry for the troubles you are running into. For Apache, it only works with 2.2.8 version, you can download it from &lt;A href="http://archive.apache.org/dist/httpd/binaries/win32/apache_2.2.8-win32-x86-no_ssl.msi"&gt;here&lt;/A&gt;. &lt;BR /&gt;&lt;BR /&gt;Looking through the list of ports openedin AllowConnect, just curious that I dont see 5900 port in case you are planning to do KVM over the default VNC port.&lt;BR /&gt;&lt;BR /&gt;Another thing, I typically have found that using the local loop back IP address for proxy server did not work very well. Even if the MPS and proxy server are installed on a same machine, I recommend using the IP address instead of local loop back adapter. For example, this is what I use in my httpd.conf file:&lt;BR /&gt;&lt;BR /&gt;Listen 192.168.1.1:8089&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;ProxySocks On&lt;/P&gt;&lt;P&gt;ProxySocksIp 192.168.1.1&lt;/P&gt;&lt;P&gt;ProxySocksPort 4322&lt;/P&gt;&lt;P&gt;ProxySocksDnsMode Remote&lt;/P&gt;&lt;P&gt;ProxySocksAuth Off&lt;/P&gt;&lt;P&gt;ProxySocksUsername testusername&lt;/P&gt;&lt;P&gt;ProxySocksPassword testpassword&lt;/P&gt;&lt;P&gt;ProxyRequests On&lt;/P&gt;&lt;P&gt;ProxyVia On&lt;/P&gt;&lt;P&gt;&lt;PROXY&gt;&lt;/PROXY&gt;&lt;/P&gt;&lt;P&gt;Order deny,allow&lt;/P&gt;&lt;P&gt;Deny from all&lt;/P&gt;&lt;P&gt;Allow from all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AllowCONNECT 443 623 664 16992 16993 16994 16995 5900&lt;BR /&gt;&lt;BR /&gt;Hope this helps answer your question. Thanks for using the manageability forum.&lt;BR /&gt;&lt;BR /&gt;AI&lt;/P&gt;</description>
      <pubDate>Thu, 28 Apr 2011 21:40:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831967#M1304</guid>
      <dc:creator>Ajith_I_Intel</dc:creator>
      <dc:date>2011-04-28T21:40:48Z</dc:date>
    </item>
    <item>
      <title>MPS Server Setup and Configuration Problem</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831968#M1305</link>
      <description>BTW, we confirmed that it also works with Apache 2.2.9 (with some mix-n-matching of the proxy DSOs).</description>
      <pubDate>Wed, 11 May 2011 16:33:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831968#M1305</guid>
      <dc:creator>David_Beveridge</dc:creator>
      <dc:date>2011-05-11T16:33:28Z</dc:date>
    </item>
    <item>
      <title>MPS Server Setup and Configuration Problem</title>
      <link>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831969#M1306</link>
      <description>Hi David,&lt;BR /&gt;Do you mind posting your findings so it may be useful for others on this community if they have to use an Apache version other than 2.2.8?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;AI</description>
      <pubDate>Wed, 11 May 2011 17:41:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Business-Client-Software/MPS-Server-Setup-and-Configuration-Problem/m-p/831969#M1306</guid>
      <dc:creator>Ajith_I_Intel</dc:creator>
      <dc:date>2011-05-11T17:41:22Z</dc:date>
    </item>
  </channel>
</rss>

