Frontier Squid Caching Proxy Installation Guide

About This Document

This document is intended for System Administrators who are installing frontier-squid, the OSG distribution of the Frontier Squid software.

Applicable Versions

The applicable software versions for this document are OSG Version >= 3.2.16. The version of frontier-squid installed should be >= 2.7.STABLE9-19.1

About Frontier Squid

Frontier Squid is a distribution of the well-known squid HTTP caching proxy software that is optimized for use with applications on the Worldwide LHC Computing Grid (WLCG). It has many advantages over regular squid for common grid applications, especially Frontier and CVMFS.

The OSG distribution of frontier-squid is a straight rebuild of the upstream frontier-squid package for the convenience of OSG users.

OSG recommends that all sites run a caching proxy for HTTP and HTTPS to help reduce bandwidth and improve throughput. To that end, Compute Element (CE) installations include Frontier Squid automatically. We encourage all sites to configure and use this service, as described below.

For large sites that expect heavy load on the proxy, it may be best to run the proxy on its own host. In that case, the Frontier Squid software still will be installed on the CE, but it need not be enabled. Instead, install your proxy service on the separate host and then configure the CE host to refer to the proxy on that host.

The osg-configure configuration tool (version 1.0.45 and later) warns users who have not added the proxy location to their CE configuration. In the future, a proxy will be required and osg-configure will fail if the proxy location is not set.

Engineering Considerations

If you will be supporting the Frontier application at your site, review the upstream documentation Hardware considerations section to determine how to size your equipment.

Requirements

Host and OS

  • OS is Red Hat Enterprise Linux 5, 6, 7, and variants
  • Root access

Users The frontier-squid installation will create one user account

unless it already exists.

User Comment
squid Reduced privilege user that the squid process runs under. Set the default gid of the “squid” user to be a group that is also called “squid”.

The package can instead use another user name of your choice if you create a configuration file before installation. Details are in the upstream documentation Preparation section.

Networking

Service Name Protocol Port Number Inbound Outbound Comment
Squid tcp 3128 Also limited in squid ACLs. Both in and outbound must not be wide open to internet simultaneously
Squid monitor udp 3401 Also limited in squid ACLs. Should be limited to monitoring server addresses

The addresses of the WLCG monitoring servers for use in firewalls are listed in the upstream documentation Enabling monitoring section.

Install Instructions

Prior to installing squid, make sure the host's yum repositories are configured correctly for OSG.

Once configured, install frontier-squid:

[root@client ~]$ yum install frontier-squid

Then enable it to start at boot:

[root@client ~]$ chkconfig frontier-squid on

Configuring Frontier Squid

Configuring the Frontier Squid Service

To configure the Frontier Squid service itself:

  1. Follow the original Frontier Squid documentation, in the Configuration section\
  2. Enable, start, and test the service (as described below)
  3. Enable WLCG monitoring as described in the upstream documentation on enabling monitoring and register the squid in OIM.

Note

An important difference between the standard Squid software and the Frontier Squid variant is that Frontier Squid changes are in /etc/squid/customize.sh instead of /etc/squid/squid.conf.

Configuring the OSG CE

To configure the OSG Compute Element (CE) to know about your Frontier Squid service:

  1. On your CE host, edit /etc/osg/config.d/01-squid.ini

    • Make sure that enabled is set to True
    • Set location to the hostname and port of your Frontier Squid service (e.g., my.squid.host.edu:3128)
    • Leave the other settings at DEFAULT unless you have specific reasons to change them
  2. Run osg-configure to propagate the changes on your CE

Note

You may want to finish other CE configuration tasks before running osg-configure. Just be sure to run it once before starting CE services.

Starting and Stopping the Frontier Squid Service

Starting frontier-squid:

UCL_ROOT_PROMPT service frontier-squid start

Stopping frontier-squid:

UCL_ROOT_PROMPT service frontier-squid stop

Testing Frontier Squid

As any user on another computer, do the following (where yoursquid.your.domain is the fully qualified domain name of your squid server):

[user@client ~]$ export http_proxy=http://yoursquid.your.domain:3128
[user@client ~]$ wget -qdO/dev/null http://frontier.cern.ch 2>&1|grep X-Cache
X-Cache: MISS from yoursquid.your.domain
[user@client ~]$ wget -qdO/dev/null http://frontier.cern.ch 2>&1|grep X-Cache
X-Cache: HIT from yoursquid.your.domain

If the grep doesn’t print anything, try removing it from the pipeline to see if errors are obvious. If the second try says MISS again, something is probably wrong with the squid cache writes.

If your squid will be supporting the Frontier application, it is also good to do the test in the upstream documentation Testing the installation section.

Frontier Squid Log Files

Log file contents are explained in the upstream documentation Log file contents section.

Getting Help

To get assistance please use Help Procedure.