Windows

Technical Articles

Solution
Application
Content Type
Technical Documentation
Utilities & Services
ft:locale
en-US
  1. Open the Tomcat 10 control panel under {JSSPath}/Tomcat/bin/tomcat10w.exe.
  2. Go to the Java tab, then add lines at the end of the Java options box similar to the following example (you must modify it for your proxy server settings):
    -Dhttp.proxySet=true
    -Dhttp.proxyHost=proxy.company.com
    -Dhttp.proxyPort=80
    -Dhttps.proxyHost=proxy.company.com
    -Dhttps.proxyPort=80
    -Dhttp.nonProxyHosts="localhost|127.0.0.1|.sub1.company.com|.sub2.company.com|*.sub3.company.com"
  3. Access the MySQL command line and log in as "root" by executing:

    mysql.exe -h localhost --user=root -p

  4. When prompted, enter the password for the MySQL "root" user.

    If you did not create a root password, press the Return key.

  5. At the mysql prompt, switch to the jamfsoftware database by executing:

    use jamfsoftware;

  6. Insert one row into the external_communication_settings table with the specific values shown below, by executing:
    INSERT INTO external_communication_settings (external_communication_settings_id, proxy_type, http_proxy_host, http_proxy_port, http_proxy_auth_username, http_proxy_auth_password) VALUES (1, 2, '', -1, '', '');
  7. Exit mysql by executing:

    quit;

  8. Restart Tomcat.

    For instructions on restarting Tomcat, see Starting and Stopping Tomcat.