Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 4. Installing Capsule Server
Before you install Capsule Server, you should ensure that your environment meets the requirements for installation. Capsule Server has the same requirements for installation as Satellite Server, with the additional requirement that you have not configured it to use a proxy to connect to the Red Hat CDN. For more information, see Section 2.1, “System Requirements”.
4.1. Registering to Satellite Server Link kopierenLink in die Zwischenablage kopiert!
Use this procedure to register the base system on which you want to install Capsule to Satellite Server.
Subscription Manifest Considerations
- The Satellite Server must have a manifest installed with the appropriate repositories for the organization you want the future Capsule to belong to.
- The manifest must contain repositories for the base system on which you want to install Capsule, as well as any clients that you want to connect to the Capsule.
- The repositories must be synchronized.
For more information on manifests and repositories, see Managing Subscriptions in the Red Hat Satellite Content Management Guide.
Proxy and Network Considerations
- The Satellite Server’s base system must be able to resolve the host name of the base system on which you want to install Capsule and vice versa.
- You must revert any changes related to the use of proxies which prevent access to Red Hat Satellite.
- You must have configured host and network-based firewalls. For more information, see Section 2.5, “Ports and Firewalls Requirements”.
- You must have a Satellite Server user name and password. For more information, see Configuring External Authentication in Administering Red Hat Satellite.
Register to Satellite Server
Install the Satellite Server’s CA certificate on the base system on which you want to install Capsule.
rpm -Uvh http://satellite.example.com/pub/katello-ca-consumer-latest.noarch.rpm
# rpm -Uvh http://satellite.example.com/pub/katello-ca-consumer-latest.noarch.rpm
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Register the base system on which you want to install Capsule with the environments that you want the future Capsule to belong to. Use an activation key to simplify specifying the environments.
subscription-manager register --org=organization_name --activationkey=example_activation_key
# subscription-manager register --org=organization_name --activationkey=example_activation_key
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.2. Identifying and Attaching the Capsule Server Subscription Link kopierenLink in die Zwischenablage kopiert!
After you have registered the Capsule Server, you must identify your Capsule Server subscription Pool ID. The Pool ID enables you to attach the required subscription to your Capsule Server. The Capsule Server subscription provides access to the Capsule Server content, as well as Red Hat Enterprise Linux, Red Hat Software Collections (RHSCL), and Red Hat Satellite. This is the only subscription required.
Identify your Capsule Server subscription.
subscription-manager list --all --available
# subscription-manager list --all --available
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The command displays output similar to the following:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Make a note of the Pool ID so that you can attach it to your Satellite host. Your Pool ID is different than the example provided.
Attach your subscription to your Capsule Server, using your Pool ID:
subscription-manager attach --pool=Red_Hat_Satellite_Capsule_Pool_Id
# subscription-manager attach --pool=Red_Hat_Satellite_Capsule_Pool_Id
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The outputs displays something similar to the following:
Successfully attached a subscription for: Red Hat Capsule Server
Successfully attached a subscription for: Red Hat Capsule Server
Copy to Clipboard Copied! Toggle word wrap Toggle overflow To verify that the subscriptions are successfully attached, enter the following command:
subscription-manager list --consumed
# subscription-manager list --consumed
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.3. Configuring Repositories Link kopierenLink in die Zwischenablage kopiert!
Disable all existing repositories.
subscription-manager repos --disable "*"
# subscription-manager repos --disable "*"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the Red Hat Satellite Capsule, Red Hat Enterprise Linux, and Red Hat Software Collections repositories.
The Red Hat Software Collections repository provides a later version of Ruby required by some Red Hat Satellite Capsule features, including the Remote Execution feature.
subscription-manager repos --enable rhel-7-server-rpms \ --enable rhel-7-server-satellite-capsule-6.3-rpms \ --enable rhel-server-rhscl-7-rpms
# subscription-manager repos --enable rhel-7-server-rpms \ --enable rhel-7-server-satellite-capsule-6.3-rpms \ --enable rhel-server-rhscl-7-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Optionally, if your Puppet modules have been upgraded to Puppet 4, you can change from the default Puppet 3 to Puppet 4 as part of the installation process. To enable the Puppet 4 repositories.
subscription-manager repos \ --enable=rhel-7-server-satellite-capsule-6.3-puppet4-rpms
# subscription-manager repos \ --enable=rhel-7-server-satellite-capsule-6.3-puppet4-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Clear out any metadata left from any non-Red Hat
yum
repositories.yum clean all
# yum clean all
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Verify that the repositories have been enabled.
yum repolist enabled
# yum repolist enabled
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Output similar to the following displays:
Loaded plugins: langpacks, product-id, subscription-manager repo id repo name status !rhel-7-server-rpms/7Server/x86_64 Red Hat Enterprise Linux 7 Server (RPMs) 7,617 !rhel-7-server-satellite-capsule-6.3-rpms/x86_64 Red Hat Satellite Capsule 6.3(for RHEL 7 Server) (RPMs) 176 repolist: 7,793
Loaded plugins: langpacks, product-id, subscription-manager repo id repo name status !rhel-7-server-rpms/7Server/x86_64 Red Hat Enterprise Linux 7 Server (RPMs) 7,617 !rhel-7-server-satellite-capsule-6.3-rpms/x86_64 Red Hat Satellite Capsule 6.3(for RHEL 7 Server) (RPMs) 176 repolist: 7,793
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.4. Synchronizing Time Link kopierenLink in die Zwischenablage kopiert!
You must start and enable a time synchronizer on the host operating system to minimize the effects of time drift. If a system’s time is incorrect, certificate verification can fail.
Two NTP based time synchronizers are available: chronyd
and ntpd
. The chronyd
implementation is specifically recommended for systems that are frequently suspended and for systems that have intermittent network access. The ntpd
implementation should only be used when you specifically need support for a protocol or driver not yet supported by chronyd
.
For more information about the differences between ntpd
and chronyd
, see Differences Between ntpd and chronyd in the Red Hat Enterprise Linux 7 System Administrator’s Guide.
Synchronizing Time using chronyd
Install chronyd.
yum install chrony
# yum install chrony
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Start and enable the chronyd service.
systemctl start chronyd systemctl enable chronyd
# systemctl start chronyd # systemctl enable chronyd
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.5. Installing Capsule Server Link kopierenLink in die Zwischenablage kopiert!
Install the installation package.
yum install satellite-capsule
# yum install satellite-capsule
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.6. Performing Initial Configuration of Capsule Server Link kopierenLink in die Zwischenablage kopiert!
This section demonstrates a default installation of Capsule Server, including use of default certificates, DNS, and DHCP configuration. For details of more advanced configuration options, see Section 4.7, “Performing Additional Configuration on Capsule Server”.
4.6.1. Configuring Capsule Server with a Default Server Certificate Link kopierenLink in die Zwischenablage kopiert!
You can use the default certificate authority (CA) that comes with Capsule Server, which is used by both the server and the client SSL certificates for the authentication of subservices.
Before You Begin
- You must have configured host and network-based firewalls. For more information, see Section 2.5, “Ports and Firewalls Requirements”.
-
You must have installed the
katello-ca-consumer-latest
package. For more information, see Section 4.1, “Registering to Satellite Server”. - You must have registered your Capsule Server to the Satellite Server.
- You must have attached the required subscription to the Capsule Server.
Configure Capsule Server with a Default Server Certificate
Create the certificates archive on Satellite Server.
capsule-certs-generate \ --foreman-proxy-fqdn mycapsule.example.com \ --certs-tar mycapsule.example.com-certs.tar
# capsule-certs-generate \ --foreman-proxy-fqdn mycapsule.example.com \ --certs-tar mycapsule.example.com-certs.tar
Copy to Clipboard Copied! Toggle word wrap Toggle overflow -
Ensure that the
satellite-installer
package is available on the Capsule Server. -
Copy the generated archive
.tar
file from Satellite Server to Capsule Server. Enable the certificate based on the needs of your environment. For more information, see
satellite-installer --scenario capsule --help
.Copy to Clipboard Copied! Toggle word wrap Toggle overflow
When network connections or ports to the Satellite are not yet open, you can set the --foreman-proxy-register-in-foreman
option to false
to prevent Capsule from attempting to connect to Satellite and reporting errors. Run the installer again with this option set to true
when the network and firewalls are correctly configured.
4.7. Performing Additional Configuration on Capsule Server Link kopierenLink in die Zwischenablage kopiert!
4.7.1. Installing the katello Agent Link kopierenLink in die Zwischenablage kopiert!
Installing the katello agent is recommended to allow remote updates of clients. The base system of a Capsule Server is a client of Satellite Server and therefore should also have the katello agent installed.
Before You Begin
- You must have enabled the Satellite Tools repositories in Satellite Server.
- You must have synchronized the Satellite Tools repositories in Satellite Server.
To Install katello-agent:
- Log into the system.
Enable the Satellite tools repository for this version of Satellite.
subscription-manager repos \ --enable=rhel-7-server-satellite-tools-6.3-rpms
# subscription-manager repos \ --enable=rhel-7-server-satellite-tools-6.3-rpms
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Install the package.
yum install katello-agent
# yum install katello-agent
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.7.2. Enabling Remote Execution on Capsule Server Link kopierenLink in die Zwischenablage kopiert!
If you want to run commands on a Capsule Server’s hosts, ensure that you enable the remote execution.
Remote execution on external Capsules is disabled by default. To use remote execution on a Capsule Server you need to enable it by running the following command:
satellite-installer --scenario capsule \ --enable-foreman-proxy-plugin-remote-execution-ssh
# satellite-installer --scenario capsule \
--enable-foreman-proxy-plugin-remote-execution-ssh
4.7.3. Adding Life Cycle Environments to Capsule Servers Link kopierenLink in die Zwischenablage kopiert!
If your Capsule Server has content functionality enabled, you must add one or more life cycle environments to it. Adding an environment enables Capsule Server to synchronize content from Satellite Server and provide content to host systems.
Red Hat recommends that you create one or multiple life cycle environments and assign them to your Capsule Server. This ensures that Capsule receives only the repositories contained in Content Views that are promoted to the respective life cycle environments, and results in optimizing the usage of system resources.
Avoid assigning the Library Lifecycle Environment to your Capsule Server as it triggers an automated Capsule sync every time a repository is updated from the CDN. This may consume multiple system resources on Capsules, network bandwidth between Satellite and Capsules, and available disk space on Capsules.
Capsule Server is configurable using Hammer CLI on Satellite Server, or through the web UI.
To add Life Cycle Environments to Capsule Servers using Hammer CLI:
- Log in to the Satellite Server CLI as root.
Display a list of all Capsule Servers and note the ID:
hammer capsule list
# hammer capsule list
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Using the ID, verify the details of your Capsule Server:
hammer capsule info --id capsule_id_number
# hammer capsule info --id capsule_id_number
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Verify the life cycle environments available and note the environment ID:
hammer capsule content available-lifecycle-environments \ --id capsule_id_number
# hammer capsule content available-lifecycle-environments \ --id capsule_id_number
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Available life cycle environments are available for Capsule Server, but not currently attached.
Add the life cycle environment to your Capsule Server:
hammer capsule content add-lifecycle-environment \ --id capsule_id_number --environment-id environment_id_number
# hammer capsule content add-lifecycle-environment \ --id capsule_id_number --environment-id environment_id_number
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Repeat for each life cycle environment you want to add to Capsule Server.
To synchronize all content from your Satellite Server environment to Capsule Server, enter the following command:
hammer capsule content synchronize --id capsule_id_number
# hammer capsule content synchronize --id capsule_id_number
Copy to Clipboard Copied! Toggle word wrap Toggle overflow To synchronize a specific life cycle environment from your Satellite Server to Capsule Server, enter the following command:
hammer capsule content synchronize --id external_capsule_id_number \ --environment-id environment_id_number
# hammer capsule content synchronize --id external_capsule_id_number \ --environment-id environment_id_number
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
For more information on working with Life Cycle Environments, see Creating an Application Life Cycle in the Red Hat Satellite Content Management Guide.
To Add Life Cycle Environments to Capsule Servers using Web UI:
- In the Satellite web UI, go to Infrastructure > Capsules, and select the Capsule.
- Click Edit.
- Select Env in the Life Cycle Environments tab.
- To synchronize capsule’s content, click the Synchronize button in the Overview tab.
Select one of two options:
- Optimized Sync
- Complete Sync
4.7.4. Enabling Power Management on Managed Hosts Link kopierenLink in die Zwischenablage kopiert!
When you enable the baseboard management controller (BMC) module on the Capsule Server, you can use power management commands on managed hosts using the intelligent platform management interface (IPMI) or a similar protocol.
The BMC service on the satellite Capsule Server enables you to perform a range of power management tasks. The underlying protocol for this feature is IPMI; also referred to as the BMC function. IPMI uses a special network interface on the managed hardware that is connected to a dedicated processor that runs independently of the host’s CPUs. In many instances the BMC functionality is built into chassis-based systems as part of chassis management (a dedicated module in the chassis).
For more information on the BMC service, see Configuring an Additional Network Interface in Managing Hosts.
Before You Begin
- All managed hosts must have a network interface, with type BMC. Satellite uses this NIC to pass the appropriate credentials to the host.
Enable Power Management on Managed Hosts
Run the installer with the options to enable BMC.
satellite-installer --scenario capsule \ --foreman-proxy-bmc "true" \ --foreman-proxy-bmc-default-provider "freeipmi"
# satellite-installer --scenario capsule \ --foreman-proxy-bmc "true" \ --foreman-proxy-bmc-default-provider "freeipmi"
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
4.7.5. Configuring DNS, DHCP, and TFTP on Capsule Server Link kopierenLink in die Zwischenablage kopiert!
You can configure DNS, DHCP, and TFTP on Capsule Server.
You can also configure Capsule Server to use external DNS and DHCP services. See Chapter 5, Configuring External Services for more information.
To view a complete list of configurable options, enter the satellite-installer --scenario capsule --help
command.
Before You Begin
-
You must have the correct network name (
dns-interface
) for the DNS server. -
You must have the correct interface name (
dhcp-interface
) for the DHCP server.
Configure DNS, DHCP, and TFTP on Capsule Server
Run capsule installer with the options applicable to your environment.
The following example shows full provisioning services:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
For more information about configuring DHCP, DNS, and TFTP services, see the Configuring Network Services section in the Provisioning Guide.
4.7.6. Configuring Capsule Server with a Custom Server Certificate Link kopierenLink in die Zwischenablage kopiert!
Red Hat Satellite 6 includes default SSL certificates to enable encrypted communications between the Satellite Server, Capsule Servers, and all hosts. You can replace the default certificates with custom certificates if required. For example, your company’s security policy might dictate that SSL certificates must be obtained from a specific Certificate Authority.
Prerequisites
- Satellite Server configured with custom certificates. For more information, see Section 3.4.7, “Configuring Satellite Server with a Custom Server Certificate”.
- Capsule Server installed and registered to the Satellite Server. For more information, see Chapter 4, Installing Capsule Server.
To use custom certificates on each Capsule Server, complete these procedures:
- Section 4.7.6.1, “Obtain an SSL Certificate for the Capsule Server”
- Section 4.7.6.2, “Validate the Capsule Server’s SSL Certificate”
- Section 4.7.6.3, “Create the Capsule Server’s Certificate Archive File”
- Section 4.7.6.4, “Install the Capsule Server’s Custom Certificate”
- Section 4.7.6.5, “Install the Capsule Server’s New Certificate on All Hosts”
4.7.6.1. Obtain an SSL Certificate for the Capsule Server Link kopierenLink in die Zwischenablage kopiert!
This procedure generates PEM encoded certificates. Only PEM encoding must be used for the SSL Certificates.
- Do not use the Satellite Server’s certificate on any Capsule Server as each server’s certificate is unique.
Create a directory to contain all the source certificate files, accessible to only the
root
user.mkdir /root/capsule_cert cd /root/capsule_cert
# mkdir /root/capsule_cert/root/capsule_cert # cd /root/capsule_cert/root/capsule_cert
Copy to Clipboard Copied! Toggle word wrap Toggle overflow In these examples, the directory is
/root/capsule_cert
. If you have multiple Capsule Servers, name the directory to match. For example, if you have Capsule Servers namedcapsule_apac
andcapsule_emea
, you might create directories named capsule_apac and capsule_emea respectively. This is not required, but reduces the risk of using files from one Capsule Server on another Capsule Server.Create a private key with which to sign the Certificate Signing Request (CSR).
NoteIf you already have a private key for the Capsule Server, skip this step.
openssl genrsa -out /root/capsule_cert/capsule_cert_key.pem 4096
# openssl genrsa -out /root/capsule_cert/capsule_cert_key.pem 4096
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a Certificate Signing Request (CSR).
A Certificate Signing Request is a text file containing details of the server for which you are requesting a certificate. For this command, you provide the private key (output by the previous step), answer some questions about the Capsule Server, and the Certificate Signing Request is stored in a file.
NoteThe certificate’s Common Name (CN) must match the fully-qualified domain name (FQDN) of the server on which it is used.
To confirm a server’s FQDN, enter the command
hostname -f
on the server.openssl req -new \ -key /root/capsule_cert/capsule_cert_key.pem \ -out /root/capsule_cert/capsule_cert_csr.pem
# openssl req -new \ -key /root/capsule_cert/capsule_cert_key.pem \
1 -out /root/capsule_cert/capsule_cert_csr.pem
2 Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example Certificate Signing Request session
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Send the certificate signing request to the Certificate Authority. The same Certificate Authority must sign certificates for Satellite Server and Capsule Server.
When you submit the request, specify the lifespan of the certificate. The method for sending the certificate signing request varies, so consult the Certificate Authority for the preferred method. In response to the request you can expect to receive a Certificate Authority bundle, and a signed certificate, in separate files.
4.7.6.2. Validate the Capsule Server’s SSL Certificate Link kopierenLink in die Zwischenablage kopiert!
On the Satellite Server, validate the Capsule Server’s certificate input files with the katello-certs-check
command. This process requires that you have copied the Capsule Server key, CSR, and SSL certificate from Capsule Server to Satellite Server.
katello-certs-check \ -c /root/capsule_cert/capsule_cert.pem \ -k /root/capsule_cert/capsule_cert_key.pem \ -b /root/capsule_cert/ca_cert_bundle.pem
# katello-certs-check \
-c /root/capsule_cert/capsule_cert.pem \
-k /root/capsule_cert/capsule_cert_key.pem \
-b /root/capsule_cert/ca_cert_bundle.pem
If the certificate is successfully validated, the output contains the following information.
Check private key matches the certificate: [OK] Check ca bundle verifies the cert file: [OK]
Check private key matches the certificate: [OK]
Check ca bundle verifies the cert file: [OK]
Retain a copy of the example capsule-certs-generate
command that is output by the katello-certs-check
command for use in the following procedure.
Proceed to Section 4.7.6.3, “Create the Capsule Server’s Certificate Archive File”.
4.7.6.3. Create the Capsule Server’s Certificate Archive File Link kopierenLink in die Zwischenablage kopiert!
The Capsule Server’s installer requires the server certificates to be in an archive file. To create this file, use the capsule-certs-generate
command on the Satellite Server.
The capsule-certs-generate
command must be run once for every external Capsule Server. In these examples, capsule.example.com
is the example FQDN and capsule_certs.tar
the example archive file’s name. Replace these with values appropriate to your environment, taking care not to overwrite an existing certificate archive file. For example, if you have Capsule Servers named capsule1
and capsule2
, you can name the certificate archive files capsule1_certs.tar
and capsule2_certs.tar
.
The capsule-certs-generate
command, including parameters, is output by the katello-certs-check
command in Section 3.4.7.2, “Validate the Satellite Server’s SSL Certificate”.
-
In an editor, prepare a copy of the
capsule-certs-generate
command. -
Edit the values for
--foreman-proxy-fqdn
to match the Capsule Server’s FQDN, and--certs-tar
to the file path and name for the certificate archive file. -
If the Capsule Server has not already been installed, remove the
--certs-update-server
parameter. This is used only to update an existing Capsule Server’s certificate. -
Copy the modified
capsule-certs-generate
command from the text editor to the terminal. Run the modified
capsule-certs-generate
command.Example
capsule-certs-generate
commandCopy to Clipboard Copied! Toggle word wrap Toggle overflow On the Satellite Server, copy the certificate archive file to the Capsule Server, providing the
root
user’s password when prompted.In this example the archive file is copied to the
root
user’s home directory, but you may prefer to copy it elsewhere.scp /root/capsule_cert/capsule_certs.tar root@capsule.example.com:
# scp /root/capsule_cert/capsule_certs.tar root@capsule.example.com:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Retain a copy of the example satellite-installer
command that is output by the capsule-certs-generate
command for use in the following procedure.
Proceed to Section 4.7.6.4, “Install the Capsule Server’s Custom Certificate”.
4.7.6.4. Install the Capsule Server’s Custom Certificate Link kopierenLink in die Zwischenablage kopiert!
Complete this procedure on the Capsule Server.
To install the Capsule Server’s custom certificates, run the satellite-installer
script with custom parameters. The command, including parameters, is output by the capsule-certs-generate
command in Section 4.7.6.3, “Create the Capsule Server’s Certificate Archive File”.
-
In an editor, prepare a copy of the
satellite-installer
command. -
Edit the value for
--foreman-proxy-content-certs-tar
to match the location of the certificates archive file. -
If you want to enable additional features on the Capsule Server, append their parameters to the
satellite-installer
command. For a description of all the installer’s parameters, enter the commandsatellite-installer --scenario capsule --help
. -
Copy the modified
satellite-installer
command from the text editor to the terminal. Run the modified
satellite-installer
command.Example custom
satellite-installer
commandCopy to Clipboard Copied! Toggle word wrap Toggle overflow
The satellite-installer
command, as output by the capsule-certs-generate
command, is unique to each Capsule Server. Do not use the same command on more than one Capsule Server.
Do NOT delete the certificates archive file (the .tar file) even after the certificates have been deployed to all relevant hosts. It is required, for example, when upgrading the Capsule Server. If the certificates archive file is not found by the installer, it fails with a message similar to the following:
[ERROR YYYY-MM-DD hh:mm:ss main] tar -xzf /var/tmp/srvcapsule01.tar returned 2 instead of one of [0]
[ERROR YYYY-MM-DD hh:mm:ss main] tar -xzf /var/tmp/srvcapsule01.tar returned 2 instead of one of [0]
Proceed to Section 4.7.6.5, “Install the Capsule Server’s New Certificate on All Hosts”.
4.7.6.5. Install the Capsule Server’s New Certificate on All Hosts Link kopierenLink in die Zwischenablage kopiert!
Hosts which connect to an external Capsule Server require that server’s custom certificate. Run the following command on all the Capsule Server’s hosts.
Use the Capsule Server’s host name, not that of the Satellite Server.
yum -y localinstall \ http://capsule.example.com/pub/katello-ca-consumer-latest.noarch.rpm
# yum -y localinstall \
http://capsule.example.com/pub/katello-ca-consumer-latest.noarch.rpm
4.7.7. Restricting Access to mongod Link kopierenLink in die Zwischenablage kopiert!
Only the apache
and root
users should be allowed access to the MongoDB database daemon, mongod
, to reduce the risk of data loss.
Restrict access to mongod
on Satellite and Capsule Servers using the following commands.
Configure the Firewall.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Repeat the command adding the
--permanent
option to make the settings persistent.Copy to Clipboard Copied! Toggle word wrap Toggle overflow