이 콘텐츠는 선택한 언어로 제공되지 않습니다.

A.3. Installing and Configuring the Apache HTTP Server


The Apache HTTP Server must be installed and configured on all nodes in the assigned failover domain, if used, or in the cluster. The basic server configuration must be the same on all nodes on which it runs for the service to fail over correctly. The following example shows a basic Apache HTTP Server installation that includes no third-party modules or performance tuning.
On all node in the cluster (or nodes in the failover domain, if used), install the httpd RPM package. For example:
rpm -Uvh httpd-<version>.<arch>.rpm
To configure the Apache HTTP Server as a cluster service, perform the following tasks:
  1. Edit the /etc/httpd/conf/httpd.conf configuration file and customize the file according to your configuration. For example:
    • Specify the directory that contains the HTML files. Also specify this mount point when adding the service to the cluster configuration. It is only required to change this field if the mount point for the web site's content differs from the default setting of /var/www/html/. For example:
      DocumentRoot "/mnt/httpdservice/html"
      
    • Specify a unique IP address to which the service will listen for requests. For example:
      Listen 192.168.1.100:80
      
      This IP address then must be configured as a cluster resource for the service using the Cluster Configuration Tool.
    • If the script directory resides in a non-standard location, specify the directory that contains the CGI programs. For example:
      ScriptAlias /cgi-bin/ "/mnt/httpdservice/cgi-bin/"
      
    • Specify the path that was used in the previous step, and set the access permissions to default to that directory. For example:
      <Directory /mnt/httpdservice/cgi-bin">
      AllowOverride None
      Options None 
      Order allow,deny 
      Allow from all 
      </Directory>
      
      Additional changes may need to be made to tune the Apache HTTP Server or add module functionality. For information on setting up other options, refer to the Red Hat Enterprise Linux System Administration Guide and the Red Hat Enterprise Linux Reference Guide.
  2. The standard Apache HTTP Server start script, /etc/rc.d/init.d/httpd is also used within the cluster framework to start and stop the Apache HTTP Server on the active cluster node. Accordingly, when configuring the service, specify this script by adding it as a Script resource in the Cluster Configuration Tool.
  3. Copy the configuration file over to the other nodes of the cluster (or nodes of the failover domain, if configured).
Before the service is added to the cluster configuration, ensure that the Apache HTTP Server directories are not mounted. Then, on one node, invoke the Cluster Configuration Tool to add the service, as follows. This example assumes a failover domain named httpd-domain was created for this service.
  1. Add the init script for the Apache HTTP Server service.
    • Select the Resources tab and click Create a Resource. The Resources Configuration properties dialog box is displayed.
    • Select Script form the drop down menu.
    • Enter a Name to be associated with the Apache HTTP Server service.
    • Specify the path to the Apache HTTP Server init script (for example, /etc/rc.d/init.d/httpd) in the File (with path) field.
    • Click OK.
  2. Add a device for the Apache HTTP Server content files and/or custom scripts.
    • Click Create a Resource.
    • In the Resource Configuration dialog, select File System from the drop-down menu.
    • Enter the Name for the resource (for example, httpd-content.
    • Choose ext3 from the File System Type drop-down menu.
    • Enter the mount point in the Mount Point field (for example, /var/www/html/).
    • Enter the device special file name in the Device field (for example, /dev/sda3).
  3. Add an IP address for the Apache HTTP Server service.
    • Click Create a Resource.
    • Choose IP Address from the drop-down menu.
    • Enter the IP Address to be associated with the Apache HTTP Server service.
    • Make sure that the Monitor Link checkbox is left checked.
    • Click OK.
  4. Click the Services property.
  5. Create the Apache HTTP Server service.
    • Click Create a Service. Type a Name for the service in the Add a Service dialog.
    • In the Service Management dialog, select a Failover Domain from the drop-down menu or leave it as None.
    • Click the Add a Shared Resource to this service button. From the available list, choose each resource that you created in the previous steps. Repeat this step until all resources have been added.
    • Click OK.
  6. Choose File => Save to save your changes.
Red Hat logoGithubRedditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

© 2024 Red Hat, Inc.