Sometimes a proxy server is required to access internet on Centrestack server. In that case, need to configure Centrestack with the proxy info. It will allow Centrestack to connect to license server, to read the license info.
. On Centrestack server, go to Centrestack installation folder\root (by default, the folder is C:\Program Files (x86)\Gladinet Cloud Enterprise\root)
make a copy of web.config
Edit web.config
Add the following section:
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy proxyaddress="http://10.100.6.72:80" bypassonlocal="true" />
</defaultProxy>
</system.net>
Here, http://10.100.6.72:80 is just an example. Need to replace it with the information of your proxy server
Save the change.
Restart IIS if possible. If cannot restart IIS, open IIS Manager, go to Application Pools and recycle the application pool 'namespace'
Visit http://localhost/namespace/n.svc/helloworld. Should not see any error
. Go to Centrestack installation folder\monitor ( by default, the folder is C:\Program Files (x86)\Gladinet Cloud Enterprise\monitor)
make a copy of GladinetCloudMonitor.exe.config
Edit GladinetCloudMonitor.exe.config
Add the following section:
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy proxyaddress="http://10.100.6.72:80" bypassonlocal="true" />
</defaultProxy>
</system.net>
Here, http://10.100.6.72:80 is just an example. Need to replace it with the information of your proxy server
Save the change.
Open windows Service Manager
Restart Gladinet Cloud Monitoring Service
Now, Centrestack server can use the proxy to read license information.
Comments
0 comments
Please sign in to leave a comment.