In corporate network, sometimes a proxy server is required to access internet. In that case, need to configure Triofox with the proxy info. It will allow Triofox to connect to license server, to read the license info.
. On Triofox server, go to Triofox installation folder\root (by default, the folder is C:\Program Files (x86)\Triofox\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 Triofox installation folder\monitor ( by default, the folder is C:\Program Files (x86)\Triofox\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, Triofox server can use the proxy to read license information.
Comments
0 comments
Please sign in to leave a comment.