amerhwitat / general

neutron and swift bugs
0 stars 0 forks source link

neutron and swift bugs on --allinone installation #1

Open amerhwitat opened 5 years ago

amerhwitat commented 5 years ago

systemctl restart network #### and check brifge br-ex status with ip a if Down or UNKOWN

grep rewrite /etc/httpd/conf.modules.d/* ## recreate modules in httpd

systemctl restart httpd systemctl restart openstack systemctl status openstack ######################################################################################### gedit /etc/neutron/plugin.ini #### define openvswitch ovs and flat networks

File : openvswitch_agent.ini

integration_bridge=br-int tenant_network_type = local,flat,vlan network_vlan_ranges = physnet1 enable_tunneling = True bridge_mappings = physnet1:br-ex physical_interface_mappings = physnet1:br-ex

/etc/neutron/plugins/openvswitch/ovs_neutron_plugin.ini

[ovs]

change br-eth0 to your "data network" bridge

bridge_mappings = physnet1:br-eth0 network_vlan_ranges = physnet1

systemctl restart neutron-openvswitch-agent

In addition, turning on verbose and debugging mode in the neutron conf can help alot in tracking down this issue.

/etc/neutron/neutron.conf

[DEFAULT] verbose = True debug = True ######################################################################################### systemctl enable neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl start neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl enable neutron-l3-agent.service systemctl start neutron-l3-agent.service ######################################################################################### export OS_USERNAME=admin export OS_PASSWORD=server export OS_TENANT_NAME=admin export OS_AUTH_URL=http://192.168.43.110:5000/v3

curl -v http://192.168.43.110:35357 curl -v http://192.168.43.110:35357

neutron net-create External1 --provider:network_type flat --provider:physical_network extnet --router:external=true --shared neutron net-create External2 --provider:network_type flat --provider:physical_network extnet --router:external=true --shared neutron net-create External3 --provider-physical-network provider --provider:physical_network br-ex --router:external=true --shared

openstack subnet create --network provider \ --allocation-pool start=192.168.43.2,end=192.168.43.240 \ --dns-nameserver 192.168.43.1 --gateway 192.168.43.1 \ --subnet-range 192.168.43.0/24 provider

openstack network create --provider-network-type flat \ --provider-physical-network extnet \ --external \ --share \ external_network [root@localhost ~(keystone_admin)]# openstack network create --provider-network-type flat \

                     --provider-physical-network extnet \
                     --external \
                     --share \
                     external_network

+---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up | UP | | availability_zone_hints | | | availability_zones | | | created_at | 2019-01-20T15:41:16Z | | description | | | dns_domain | None | | id | a69b0d71-5d8b-4d7b-afdc-724235c971ec | | ipv4_address_scope | None | | ipv6_address_scope | None | | is_default | False | | is_vlan_transparent | None | | mtu | 1500 | | name | external_network | | port_security_enabled | True | | project_id | d1d7e8bafc6d4e79a98cb177bcd31325 | | provider:network_type | flat | | provider:physical_network | extnet | | provider:segmentation_id | None | | qos_policy_id | None | | revision_number | 1 | | router:external | External | | segments | None | | shared | True | | status | ACTIVE | | subnets | | | tags | | | updated_at | 2019-01-20T15:41:17Z | +---------------------------+--------------------------------------+ [root@localhost ~(keystone_admin)]#

openstack subnet create --subnet-range 192.168.43.0/24 \ --network external_network \ --no-dhcp \ --gateway=192.168.43.1 \ --allocation-pool start=192.168.43.100,end=192.168.43.240 \ external_subnet [root@localhost ~(keystone_admin)]# openstack subnet create --subnet-range 192.168.43.0/24 \

                    --network external_network \
                    --no-dhcp \
                    --gateway=192.168.43.1 \
                    --allocation-pool start=192.168.43.100,end=192.168.43.240 \
                    external_subnet

+-------------------+--------------------------------------+ | Field | Value | +-------------------+--------------------------------------+ | allocation_pools | 192.168.43.100-192.168.43.240 | | cidr | 192.168.43.0/24 | | created_at | 2019-01-20T15:42:16Z | | description | | | dns_nameservers | | | enable_dhcp | False | | gateway_ip | 192.168.43.1 | | host_routes | | | id | 7660b3d7-10c3-48ed-a5a2-84ea253dfa0f | | ip_version | 4 | | ipv6_address_mode | None | | ipv6_ra_mode | None | | name | external_subnet | | network_id | a69b0d71-5d8b-4d7b-afdc-724235c971ec | | project_id | d1d7e8bafc6d4e79a98cb177bcd31325 | | revision_number | 0 | | segment_id | None | | service_types | | | subnetpool_id | None | | tags | | | updated_at | 2019-01-20T15:42:16Z | +-------------------+--------------------------------------+ [root@localhost ~(keystone_admin)]#

########################################################################################### openstack endpoint create ironic \ --region RegionOne internal \ https://192.168.43.110:5000/v3

openstack baremetal node list

openstack baremetal node clean node \ --clean-steps '[{"interface": "deploy", "step": "erase_devices_metadata"}]'

openstack baremetal node clean node \ --clean-steps '[{"interface": "deploy", "step": "erase_devices"}]'

openstack network show external_network -f value -c id

or automated cleaning happens if you included this in /etc/ironic/ironic.conf [DEFAULT]

[conductor] automated_clean=true [deploy] erase_devices_priority=0 [ilo] clean_priority_erase_devices=0 [deploy] erase_devices_iterations=1 ############################################################################## the devices will go to cleaning and out the restart or simply reboot you VM

systemctl disable neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl stop neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl disable neutron-l3-agent.service systemctl stop neutron-l3-agent.service ############# systemctl enable neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl start neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl enable neutron-l3-agent.service systemctl start neutron-l3-agent.service #############

key pair

-----BEGIN RSA PRIVATE KEY----- MIIEpAIBAAKCAQEAwOGaWqBPO4QydSG6/qZ9TMV3zMJLLmKpeRr+AT680TyHlnjY Mjxrue4c2JtYspuheH0FvoD1qHEg/+8l7AAd3n4APvtYYtEGtMDfanghrJYbvRFe gNjuTB7NAMNTf/+5OK6ZtXU0UKSfD5vOPzmRAPPZZfHxLVgyvXGNvkv8bW9RkYzM 7z/w1x1inmHChp8b6XLbAwu5kOZshT6XINUdnoJFdHQUjTnBS3OpW1VW06I5RxyQ tZcqCmYozLJmP/IYX7BqY2m9ShT42tmVN8oNmcrz3IYz42a4wZYfhTxqboXNDMfD U4vNXlRJTK/jFPGV0o/OT/oeIQxqKvTTGGw21QIDAQABAoIBAAercOXVphDpys/Z jYP+vtDEsWTU/QRVLAQCzMLj6cIwM/wJxh8JRAdaro72bmp7wcn2vrm6iwotpXBH 5CwkPQvR2tSmTfdv9GJPoRKswDoKpgO4oxdgiOlB+Ejle3aFhqn4V2hdxrzGLwUB 3wuokFmHWMey/TIeZbYew9IjV2BKkTensTCBQIr4IbIcjV9LQdP7oG4Q7eboJ7ng KgquZkFg1M/FdGg3DJ9w8r27FKQ1I6+sSzH85d+bhqbVVASfETeb70n0REhpNFTu AL3o2hwxqu9ntFuD4tJlAeyzUfCvOELEWckA5q1MFtfe66Y0hhIoS9vaG0XFzhPr cmx3AQECgYEA5P/j++LxbReZE961LKIQlPDA0looCiCBoCyvQPshGmLBYexRSR2S B+gaODNozZDibPjcEGRhyfUYvO09G/ig002qdyfKnA4/Re8dNd+rvL9vrjyh91fK 69WpPA8r+vXeOlTTDXga568uOaARtEJEVaGn6UkcMDC18bRQRvlpbPUCgYEA15+E +eT4KVmt5NPi3KMSDTwjWzUJBIbJIc6mIpbTjV+Zxc4/2ssRJWXyFL+dtxusW6YT bKSAowebyY26j3Dcx3W3eHNEJB08YS0gmq/IpzJlku2hdctv9GJpz9fIqTuikYqC 5nLaCjVDH/w2GeL3fTnoSTY4Me3f0Ut3U1mddmECgYEAhZVYEtmh5/d6DoM9wJmR frCqaoq5DJ9FvoASg597Af9Vu5+1EyeyxfX5RYuHuVKpItRQ2ycTfFIDakIiAa0Z c+m8ZOHLaRlOg6cmrQSbE/HAXi10deq6rrPmkuhuyWifh/tvWk4Ts88W8fqUGUkG v8UbRBSn4tynZiW/JofbnfkCgYBwvDWRVjatn/a8UlAlnZj9lHjD4hnB5RrZ8yqH oSYgn2BNvIVERrHDRObqFDlImE5oaI91WRjspDi+i7yD7LVyD8kKT/HLlAGSqT6H wep+CGp1BItLhD8XnjDGe4KtgMGBqNLB3EDF340l9v7uT+2n6pPZW2DMMhu4WOWd jZg3YQKBgQC0Y33oH+7xg4RC/Tv627qX/+++qOEdp5ISf2E/DUxVZ+bq7V1oToSL +KDNCDB8DihqG99NYZYYiPnVko6reT9pLJMGyc6Wybdm1243VYtT+6c3d5upAwFp IN/fbW/r7p4rp7crn6RVP551TC9V2DD3Dq1ae59x5GFuNscsVzl1PQ== -----END RSA PRIVATE KEY-----

solved neurtron and created also a key pair

I have to create a vloume on cinder and container on swift (I manually started the service)

[root@localhost ~(keystone_admin)]# systemctl enable openstack-swift-object.service Failed to execute operation: Connection timed out [root@localhost ~(keystone_admin)]# systemctl restart openstack-swift-object.service [root@localhost ~(keystone_admin)]# systemctl status openstack-swift-object.service ● openstack-swift-object.service - OpenStack Object Storage (swift) - Object Server Loaded: loaded (/usr/lib/systemd/system/openstack-swift-object.service; enabled; vendor preset: disabled) Active: active (running) since Sun 2019-01-20 18:31:58 EST; 17s ago Main PID: 55513 (swift-object-se) Tasks: 1 CGroup: /system.slice/openstack-swift-object.service └─55513 /usr/bin/python2 /usr/bin/swift-object-server /etc/swift/object-server.conf

Jan 20 18:31:58 localhost.localdomain systemd[1]: Started OpenStack Object Storage (swift) - Object Server. [root@localhost ~(keystone_admin)]#

created

increased RAM of VM by 6016 MB = 6 GB

Creat Bridge

ovs-vsctl add-br br-ex ip addr add 192.168.43.110/24 dev br-ex ip addr flush dev eno16777736 ip addr add 192.168.43.110/24 dev br-ex ovs-vsctl add-port br-ex eno16777736 ip link set dev br-ex up

virsh net-define /tmp/ovs-network.xml \ Network ovs-network defined from /tmp/ovs-network.xml ######################################################################## systemctl disable NetworkManager systemctl stop NetworkManager systemctl disable firewalld systemctl stop firewalld setenforce 0

systemctl restart network systemctl status network ######################################################################## subscription-manager list --available

subscription-manager attach --pool=

subscription-manager repos --enable=rhel-7-server-optional-rpms \ --enable=rhel-7-server-extras-rpms --enable=rhel-7-server-rh-common-rpms subscription-manager repos --enable=rhel-7-server-openstack-14-rpms subscription-manager repos --enable=rhel-7-server-openstack-14-devtools-rpms subscription-manager repos --enable=rhel-7-server-openstack-14-tools-rpms subscription-manager repos --enable=rhel-7-server-openstack-13-rpms subscription-manager repos --enable=rhel-7-server-openstack-13-devtools-rpms subscription-manager repos --enable=rhel-7-server-openstack-13-tools-rpms yum repolist enabled #enable all

subscriptiion-manager repos --enable=

sudo yum -y install yum-plugin-priorities yum-utils

yum install openstack-selinux --skip-broken yum install python2 --skip-broken yum install pyparsing --skip-broken yum install urllib3 --skip-broken yum install chardet --skip-broken yum install gnocchi --skip-broken yum install puppet --skip-broken yum install -y mariadb-server-galera --skip-broken yum install -y openvswitch* --skip-broken

yum install -y openstack.* #saves time installing with packstack#yum install -y puppet hiera openssh-clients tar nc rubygem-json

yum install -y puppet hiera openssh-clients tar nc rubygem-json --skip-broken yum install -y rabbitmq --skip-broken yum install -y ironic --skip-broken rpm -q --whatprovides rubygem-json ###### rubygem-json-1.7.7-20.el7.x86_64

do not update with ### yum update ### it will upgrade the RHEL 7 to 7.6 Maipo if you want to keep 7.0 on your VM

yum install -y openstack-packstack --skip-broken ######################################################################## Repo ID: rhel-7-server-openstack-8-source-rpms Repo Name: Red Hat OpenStack Platform 8 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/8/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-devtools-debug-rpms Repo Name: Red Hat OpenStack Platform 11 Developer Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/11/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-2-mon-debug-rpms Repo Name: Red Hat Ceph Storage MON 2 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/2/debug Enabled: 0

Repo ID: rhel-7-server-insights-3-debug-rpms Repo Name: Red Hat Insights 3 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/i nsights/3/debug Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-beta-debug-rpms Repo Name: Red Hat Satellite Maintenance 6 Beta (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-maint enance/6/debug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.2-rpms Repo Name: Red Hat Satellite Tools 6.2 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.2/os Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-debug-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/6.0/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2-rpms Repo Name: Red Hat Ansible Engine 2 RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2/os Enabled: 0

Repo ID: rhel-7-server-openstack-11-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 11 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/11/debug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.1-debug-rpms Repo Name: Red Hat Satellite Tools 6.1 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.1/debug Enabled: 0

Repo ID: rhel-server-rhscl-7-eus-source-rpms Repo Name: Red Hat Software Collections Source RPMs for Red Hat Enterprise Linux 7 RHEL 7 Server EUS Repo URL: https://cdn.redhat.com/content/eus/rhel/server/7/$releasever/$basearc h/rhscl/1/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-14-source-rpms Repo Name: Red Hat OpenStack Platform 14 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/14/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-director-debug-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 director for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/7.0/debug Enabled: 0

Repo ID: rhel-7-server-openstack-14-rpms Repo Name: Red Hat OpenStack Platform 14 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/14/os Enabled: 0

Repo ID: rhel-7-server-rhceph-2-tools-rpms Repo Name: Red Hat Ceph Storage Tools 2 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/2/os Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-mon-rpms Repo Name: Red Hat Ceph Storage MON 1.3 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.3/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.4-debug-rpms Repo Name: Red Hat Satellite Tools 6.4 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.4/debug Enabled: 0

Repo ID: rhel-7-server-openstack-13-optools-rpms Repo Name: Red Hat OpenStack Platform 13 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/13/os Enabled: 0

Repo ID: rhel-7-server-extras-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/e xtras/os Enabled: 0

Repo ID: rhel-7-server-ansible-2-source-rpms Repo Name: Red Hat Ansible Engine 2 Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-devtools-source-rpms Repo Name: Red Hat OpenStack Platform 12 Developer Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/12/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-2-textonly-rpms Repo Name: Red Hat Ceph Storage 2 Text-Only Advisories for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/c eph-textonly/2/os Enabled: 0

Repo ID: rhel-7-server-rh-common-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rh-common/debug Enabled: 0

Repo ID: rhel-7-server-rhn-tools-beta-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhn-tools /os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-source-rpms Repo Name: Red Hat Satellite Tools 6.3 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 12 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/12/debug Enabled: 0

Repo ID: rhel-7-server-openstack-13-source-rpms Repo Name: Red Hat OpenStack Platform 13 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/13/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-14-devtools-rpms Repo Name: Red Hat OpenStack Platform 14 Developer Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/14/os Enabled: 0

Repo ID: rhel-server-rhscl-7-beta-source-rpms Repo Name: Red Hat Software Collections Beta Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhscl/1/s ource/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-devtools-beta-rpms Repo Name: Red Hat OpenStack Developer Tools Beta for Server 7 (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -devtools/os Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/7.0/os Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-rpms Repo Name: Red Hat Satellite Maintenance 6 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-maintenance/6/os Enabled: 0

Repo ID: cf-me-5.8-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.8 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.8/$basearch/source /SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-beta-source-rpms Repo Name: Red Hat OpenStack Beta for Server 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack /source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-source-rpms Repo Name: Red Hat OpenStack Platform 9 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/9/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-optools-source-rpms Repo Name: Red Hat OpenStack Platform 8 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/8/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-source-rpms Repo Name: Red Hat OpenStack Platform 11 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/11/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-debug-rpms Repo Name: Red Hat Satellite Maintenance 6 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-maintenance/6/debug Enabled: 0

Repo ID: rhel-7-server-v2vwin-1-debug-rpms Repo Name: Red Hat Virt V2V Tool for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/v2vwin/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-tools-source-rpms Repo Name: Red Hat Ceph Storage Tools 1.3 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/1.3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-installer-source-rpms Repo Name: Red Hat Ceph Storage Installer 1.3 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-source-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/6.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-optional-beta-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/optional/ debug Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-beta-rpms Repo Name: Red Hat Satellite Maintenance 6 Beta (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-maint enance/6/os Enabled: 0

Repo ID: rhel-7-server-openstack-12-rpms Repo Name: Red Hat OpenStack Platform 12 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/12/os Enabled: 0

Repo ID: rh-sso-textonly-1-for-middleware-rpms Repo Name: Single Sign-On Text-Only Advisories Repo URL: https://cdn.redhat.com/content/dist/middleware/rh-sso/1.0/$basearch/o s Enabled: 0

Repo ID: rh-gluster-3-client-for-rhel-7-server-debug-rpms Repo Name: Red Hat Storage Native Client for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhs-client/debug Enabled: 0

Repo ID: rhel-7-server-optional-fastrack-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Fastrack (Debug RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/optio nal/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2.6-debug-rpms Repo Name: Red Hat Ansible Engine 2.6 Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.6/debug Enabled: 0

Repo ID: rh-sso-7.1-for-rhel-7-server-source-rpms Repo Name: Single Sign-On 7.1 (RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.1/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-optools-source-rpms Repo Name: Red Hat OpenStack Platform 12 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/12/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.2-source-rpms Repo Name: Red Hat Satellite Tools 6.2 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-3-tools-source-rpms Repo Name: Red Hat Ceph Storage Tools 3 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-tools/3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-tools-rpms Repo Name: Red Hat OpenStack Platform 9 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/9/os Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-fastrack-debug-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) - Fastrack (Debug RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/higha vailability/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-mon-source-rpms Repo Name: Red Hat Ceph Storage MON 1.2 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.2/source/SRPMS Enabled: 0

Repo ID: cf-me-5.10-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.10 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.10/$basearch/sourc e/SRPMS Enabled: 0

Repo ID: cf-me-5.8-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.8 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.8/$basearch/os Enabled: 0

Repo ID: cf-me-5.9-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.9 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.9/$basearch/debug Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-beta-debug-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/highavail ability/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-director-source-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 director for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/7.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-optools-rpms Repo Name: Red Hat OpenStack Platform 8 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/8/os Enabled: 0

Repo ID: rhel-7-server-openstack-13-rpms Repo Name: Red Hat OpenStack Platform 13 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/13/os Enabled: 0

Repo ID: rhel-7-server-supplementary-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/supplemen tary/source/SRPMS Enabled: 0

Repo ID: cf-me-5.5-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.5 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.5/$basearch/os Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-installer-source-rpms Repo Name: Red Hat Ceph Storage Installer 1.2 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-devtools-rpms Repo Name: Red Hat OpenStack Platform 12 Developer Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/12/os Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-debug-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/7.0/debug Enabled: 0

Repo ID: rhel-7-server-openstack-9-director-source-rpms Repo Name: Red Hat OpenStack Platform 9 director for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/9/source/SRPMS Enabled: 0

Repo ID: cf-me-5.8-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.8 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.8/$basearch/debug Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-fastrack-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) - Fastrack (RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/higha vailability/os Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-beta-source-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/highavail ability/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-tools-source-rpms Repo Name: Red Hat OpenStack Platform 9 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/9/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-devtools-rpms Repo Name: Red Hat OpenStack Platform 11 Developer Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/11/os Enabled: 0

Repo ID: rhel-7-server-thirdparty-oracle-java-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Oracle Java Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/oracle-ja va/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-debug-rpms Repo Name: Red Hat OpenStack Platform 9 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/9/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2.7-source-rpms Repo Name: Red Hat Ansible Engine 2.7 Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.7/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-10-source-rpms Repo Name: Red Hat OpenStack Platform 10 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/10/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-puppet4-rpms Repo Name: Red Hat Satellite Tools 6.3 - Puppet 4 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3-puppet4/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.4-rpms Repo Name: Red Hat Satellite Tools 6.4 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.4/os Enabled: 0

Repo ID: rh-sso-7.2-for-rhel-7-server-debug-rpms Repo Name: Single Sign-On 7.2 (RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.2/debug Enabled: 0

Repo ID: rhel-7-server-openstack-9-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 9 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/9/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-optools-source-rpms Repo Name: Red Hat OpenStack Platform 10 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/10/source/SRPMS Enabled: 0

Repo ID: cf-me-5.6-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.6 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.6/$basearch/source /SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-mon-debug-rpms Repo Name: Red Hat Ceph Storage MON 1.2 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.2/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-optools-rpms Repo Name: Red Hat OpenStack Platform 10 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/10/os Enabled: 0

Repo ID: rhel-7-server-openstack-12-optools-rpms Repo Name: Red Hat OpenStack Platform 12 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/12/os Enabled: 0

Repo ID: rhel-7-server-openstack-14-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 14 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/14/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-tools-rpms Repo Name: Red Hat OpenStack Platform 10 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/10/os Enabled: 0

Repo ID: cf-me-5.9-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.9 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.9/$basearch/source /SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-13-devtools-rpms Repo Name: Red Hat OpenStack Platform 13 Developer Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/13/os Enabled: 0

Repo ID: rhel-7-server-openstack-14-tools-rpms Repo Name: Red Hat OpenStack Platform 14 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/14/os Enabled: 0

Repo ID: rhel-7-server-optional-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/optional/os Enabled: 0

Repo ID: rhel-server-rhscl-7-eus-debug-rpms Repo Name: Red Hat Software Collections Debug RPMs for Red Hat Enterprise Linux 7 RHEL 7 Server EUS Repo URL: https://cdn.redhat.com/content/eus/rhel/server/7/$releasever/$basearc h/rhscl/1/debug Enabled: 0

Repo ID: rhel-7-server-openstack-11-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 11 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/11/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-3-textonly-rpms Repo Name: Red Hat Ceph Storage 3 Text-Only Advisories for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-textonly/3/os Enabled: 0

Repo ID: rhel-7-server-rhceph-3-mon-debug-rpms Repo Name: Red Hat Ceph Storage MON 3 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-mon/3/debug Enabled: 0

Repo ID: rhel-7-server-openstack-optools-beta-rpms Repo Name: Red Hat OpenStack Operational Tools Beta for Server 7 (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -optools/os Enabled: 0

Repo ID: rhel-7-server-ansible-2.4-debug-rpms Repo Name: Red Hat Ansible Engine 2.4 Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.4/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-devtools-debug-rpms Repo Name: Red Hat OpenStack Platform 10 Developer Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-devtools/10/debug Enabled: 0

Repo ID: rhel-7-server-openstack-9-director-debug-rpms Repo Name: Red Hat OpenStack Platform 9 director for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/9/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-devtools-rpms Repo Name: Red Hat OpenStack Platform 10 Developer Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-devtools/10/os Enabled: 0

Repo ID: rhel-7-server-openstack-11-optools-source-rpms Repo Name: Red Hat OpenStack Platform 11 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/11/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/6.0/os Enabled: 0

Repo ID: rhel-7-server-openstack-13-optools-source-rpms Repo Name: Red Hat OpenStack Platform 13 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/13/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-extras-beta-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/extras/de bug Enabled: 0

Repo ID: rhel-server-rhscl-7-rpms Repo Name: Red Hat Software Collections RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhscl/1/os Enabled: 0

Repo ID: rhel-7-server-openstack-12-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 12 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/12/debug Enabled: 0

Repo ID: rhel-7-server-rhn-tools-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhn-tools/os Enabled: 0

Repo ID: rhel-7-server-openstack-13-tools-rpms Repo Name: Red Hat OpenStack Platform 13 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/13/os Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-tools-rpms Repo Name: Red Hat Ceph Storage Tools 1.3 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/1.3/os Enabled: 0

Repo ID: rhel-7-server-optional-fastrack-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Fastrack (Source RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/optio nal/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-thirdparty-oracle-java-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Oracle Java (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/oracle-java/os Enabled: 0

Repo ID: cf-me-5.7-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.7/$basearch/source /SRPMS Enabled: 0

Repo ID: rhel-7-server-fastrack-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Fastrack (RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/os Enabled: 0

Repo ID: rhel-7-server-openstack-14-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 14 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/14/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-installer-rpms Repo Name: Red Hat Ceph Storage Installer 1.2 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.2/os Enabled: 0

Repo ID: cf-me-5.7-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.7/$basearch/debug Enabled: 0

Repo ID: cf-me-5.10-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.10 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.10/$basearch/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-devtools-source-rpms Repo Name: Red Hat OpenStack Platform 10 Developer Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-devtools/10/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-thirdparty-oracle-java-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Oracle Java Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/oracle-ja va/os Enabled: 0

Repo ID: rhel-7-server-optional-fastrack-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Fastrack (RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/optio nal/os Enabled: 0

Repo ID: rhel-7-server-rhceph-3-mon-rpms Repo Name: Red Hat Ceph Storage MON 3 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-mon/3/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-puppet-upgrade-beta-source-rpms Repo Name: Red Hat Satellite Tools 6 Beta - Puppet Upgrade (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6-puppet-upgrade/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-ansible-2.6-source-rpms Repo Name: Red Hat Ansible Engine 2.6 Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.6/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-13-tools-source-rpms Repo Name: Red Hat OpenStack Platform 13 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/13/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-director-debug-rpms Repo Name: Red Hat OpenStack Platform 8 director for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/8/debug Enabled: 0

Repo ID: rhel-x86_64-server-7-mrg-messaging-2-source-rpms Repo Name: Red Hat Enterprise MRG Messaging 2 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/m rg-m/2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-devtools-debug-rpms Repo Name: Red Hat OpenStack Platform 12 Developer Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/12/debug Enabled: 0

Repo ID: rhel-7-server-openstack-14-devtools-source-rpms Repo Name: Red Hat OpenStack Platform 14 Developer Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/14/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-extras-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/e xtras/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-director-rpms Repo Name: Red Hat OpenStack Platform 9 director for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/9/os Enabled: 0

Repo ID: cf-me-5.9-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.9 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.9/$basearch/os Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-installer-debug-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 Platform Installer (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-inst/6.0/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2.5-source-rpms Repo Name: Red Hat Ansible Engine 2.5 Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.5/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-10-tools-source-rpms Repo Name: Red Hat OpenStack Platform 10 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/10/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-supplementary-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/supplementary/debug Enabled: 0

Repo ID: rhel-x86_64-server-7-mrg-messaging-2-rpms Repo Name: Red Hat Enterprise MRG Messaging 2 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/m rg-m/2/os Enabled: 0

Repo ID: rhel-7-server-fastrack-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Fastrack (Debug RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/debug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.2-debug-rpms Repo Name: Red Hat Satellite Tools 6.2 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.2/debug Enabled: 0

Repo ID: rh-sso-7.2-for-rhel-7-server-source-rpms Repo Name: Single Sign-On 7.2 (RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhn-tools-beta-debug-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhn-tools /debug Enabled: 0

Repo ID: rhel-7-server-insights-3-rpms Repo Name: Red Hat Insights 3 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/i nsights/3/os Enabled: 0

Repo ID: rhel-7-server-openstack-11-optools-rpms Repo Name: Red Hat OpenStack Platform 11 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/11/os Enabled: 0

Repo ID: rhel-server-rhscl-7-beta-rpms Repo Name: Red Hat Software Collections Beta RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhscl/1/o s Enabled: 0

Repo ID: rhel-7-server-openstack-14-devtools-debug-rpms Repo Name: Red Hat OpenStack Platform 14 Developer Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/14/debug Enabled: 0

Repo ID: rhel-7-server-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/source/SR PMS Enabled: 0

Repo ID: rhel-7-server-openstack-9-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 9 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/9/debug Enabled: 0

Repo ID: rhel-7-server-openstack-9-optools-source-rpms Repo Name: Red Hat OpenStack Platform 9 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/9/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-optools-beta-source-rpms Repo Name: Red Hat OpenStack Operational Tools Beta for Server 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -optools/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-beta-source-rpms Repo Name: Red Hat Satellite Tools 6 Beta (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-beta-rpms Repo Name: Red Hat OpenStack Beta for Server 7 (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack /os Enabled: 0

Repo ID: rhel-7-server-v2vwin-1-rpms Repo Name: Red Hat Virt V2V Tool for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/v2vwin/os Enabled: 0

Repo ID: rhel-7-server-extras-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/extras/so urce/SRPMS Enabled: 0

Repo ID: rhel-7-server-ansible-2.7-rpms Repo Name: Red Hat Ansible Engine 2.7 RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.7/os Enabled: 0

Repo ID: rhel-7-server-openstack-optools-beta-debug-rpms Repo Name: Red Hat OpenStack Operational Tools Beta for Server 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -optools/debug Enabled: 0

Repo ID: rhel-7-server-openstack-devtools-beta-debug-rpms Repo Name: Red Hat OpenStack Developer Tools Beta for Server 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -devtools/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-mon-source-rpms Repo Name: Red Hat Ceph Storage MON 1.3 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-optional-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/optional/ source/SRPMS Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-source-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/highavailability/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-debug-rpms Repo Name: Red Hat OpenStack Platform 8 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/8/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-installer-debug-rpms Repo Name: Red Hat Ceph Storage Installer 1.2 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.2/debug Enabled: 0

Repo ID: rhel-7-server-openstack-14-debug-rpms Repo Name: Red Hat OpenStack Platform 14 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/14/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-director-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 director for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/7.0/os Enabled: 0

Repo ID: rhel-7-server-rhceph-2-tools-debug-rpms Repo Name: Red Hat Ceph Storage Tools 2 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/2/debug Enabled: 0

Repo ID: rhel-7-server-rh-common-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rh-common /os Enabled: 0

Repo ID: rhel-7-server-optional-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/optional/debug Enabled: 0

Repo ID: rhel-server-rhscl-7-debug-rpms Repo Name: Red Hat Software Collections Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhscl/1/debug Enabled: 0

Repo ID: rhel-7-server-openstack-14-optools-rpms Repo Name: Red Hat OpenStack Platform 14 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/14/os Enabled: 0

Repo ID: rh-sso-7.2-for-rhel-7-server-rpms Repo Name: Single Sign-On 7.2 (RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.2/os Enabled: 0

Repo ID: rhel-7-server-insights-3-source-rpms Repo Name: Red Hat Insights 3 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/i nsights/3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-10-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 10 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/10/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-2-mon-rpms Repo Name: Red Hat Ceph Storage MON 2 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/2/os Enabled: 0

Repo ID: rhel-7-server-openstack-14-tools-source-rpms Repo Name: Red Hat OpenStack Platform 14 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/14/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-extras-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/e xtras/debug Enabled: 0

Repo ID: rhel-7-server-openstack-devtools-beta-source-rpms Repo Name: Red Hat OpenStack Developer Tools Beta for Server 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack -devtools/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-13-devtools-debug-rpms Repo Name: Red Hat OpenStack Platform 13 Developer Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/13/debug Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-source-rpms Repo Name: Red Hat Satellite Maintenance 6 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-maintenance/6/source/SRPMS Enabled: 0

Repo ID: rhel-server-rhscl-7-source-rpms Repo Name: Red Hat Software Collections Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhscl/1/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 8 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/8/debug Enabled: 0

Repo ID: rhel-7-server-openstack-12-tools-source-rpms Repo Name: Red Hat OpenStack Platform 12 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/12/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhn-tools-beta-source-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhn-tools /source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rh-common-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rh-common/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-puppet-upgrade-beta-debug-rpms Repo Name: Red Hat Satellite Tools 6 Beta - Puppet Upgrade (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6-puppet-upgrade/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-optools-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/7.0/os Enabled: 0

Repo ID: rhel-7-server-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-14-optools-source-rpms Repo Name: Red Hat OpenStack Platform 14 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/14/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-rpms Repo Name: Red Hat Satellite Tools 6.3 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.1-rpms Repo Name: Red Hat Satellite Tools 6.1 (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.1/os Enabled: 0

Repo ID: rhel-7-server-openstack-9-optools-rpms Repo Name: Red Hat OpenStack Platform 9 Operational Tools for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/9/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.1-source-rpms Repo Name: Red Hat Satellite Tools 6.1 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.1/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-source-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/7.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-optional-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/optional/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-3-mon-source-rpms Repo Name: Red Hat Ceph Storage MON 3 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-mon/3/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-v2vwin-1-source-rpms Repo Name: Red Hat Virt V2V Tool for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/v2vwin/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rh-common-beta-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rh-common /source/SRPMS Enabled: 0

Repo ID: rhel-7-server-thirdparty-oracle-java-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Oracle Java (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/oracle-java/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-optools-source-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 Operational Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/7.0/source/SRPMS Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/highavailability/os Enabled: 0

Repo ID: rhel-7-server-supplementary-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/supplemen tary/os Enabled: 0

Repo ID: rhel-7-server-rhceph-2-mon-source-rpms Repo Name: Red Hat Ceph Storage MON 2 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-debug-rpms Repo Name: Red Hat OpenStack Platform 11 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/11/debug Enabled: 0

Repo ID: rhel-7-server-rh-common-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rh-common/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-tools-debug-rpms Repo Name: Red Hat OpenStack Tools 7.0 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/7.0/debug Enabled: 0

Repo ID: rhel-7-server-openstack-12-debug-rpms Repo Name: Red Hat OpenStack Platform 12 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/12/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-debug-rpms Repo Name: Red Hat OpenStack Platform 10 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/10/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-2-tools-source-rpms Repo Name: Red Hat Ceph Storage Tools 2 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/2/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-source-rpms Repo Name: Red Hat OpenStack Platform 12 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/12/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-ansible-2.4-rpms Repo Name: Red Hat Ansible Engine 2.4 RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.4/os Enabled: 0

Repo ID: rhel-7-server-ansible-2.5-rpms Repo Name: Red Hat Ansible Engine 2.5 RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.5/os Enabled: 0

Repo ID: rhel-7-fast-datapath-htb-rpms Repo Name: Red Hat Enterprise Linux Fast Datapath Beta (RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/htb/rhel/server/7/$basearch/fast-datap ath/os Enabled: 0

Repo ID: rhel-7-server-ansible-2-debug-rpms Repo Name: Red Hat Ansible Engine 2 Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2.7-debug-rpms Repo Name: Red Hat Ansible Engine 2.7 Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.7/debug Enabled: 0

Repo ID: rhel-7-server-openstack-10-rpms Repo Name: Red Hat OpenStack Platform 10 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/10/os Enabled: 0

Repo ID: rhel-server-rhscl-7-beta-debug-rpms Repo Name: Red Hat Software Collections Beta Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rhscl/1/d ebug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-puppet-upgrade-beta-rpms Repo Name: Red Hat Satellite Tools 6 Beta - Puppet Upgrade (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6-puppet-upgrade/os Enabled: 0

Repo ID: rhel-7-server-openstack-5.0-rpms Repo Name: Red Hat OpenStack 5.0 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/5.0/os Enabled: 0

Repo ID: rhel-7-server-openstack-9-rpms Repo Name: Red Hat OpenStack Platform 9 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/9/os Enabled: 0

Repo ID: rhel-7-fast-datapath-htb-source-rpms Repo Name: Red Hat Enterprise Linux Fast Datapath Beta (Source RPMs) Repo URL: https://cdn.redhat.com/content/htb/rhel/server/7/$basearch/fast-datap ath/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-installer-source-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 Platform Installer (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-inst/6.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-installer-debug-rpms Repo Name: Red Hat Ceph Storage Installer 1.3 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.3/debug Enabled: 0

Repo ID: rh-sso-7.1-for-rhel-7-server-rpms Repo Name: Single Sign-On 7.1 (RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.1/os Enabled: 0

Repo ID: rh-gluster-3-client-for-rhel-7-server-rpms Repo Name: Red Hat Storage Native Client for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhs-client/os Enabled: 0

Repo ID: rhel-7-server-openstack-5.0-source-rpms Repo Name: Red Hat OpenStack 5.0 for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/5.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-tools-source-rpms Repo Name: Red Hat OpenStack Platform 8 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/8/source/SRPMS Enabled: 0

Repo ID: rhel-server-rhscl-7-eus-rpms Repo Name: Red Hat Software Collections RPMs for Red Hat Enterprise Linux 7 RHEL 7 Server EUS Repo URL: https://cdn.redhat.com/content/eus/rhel/server/7/$releasever/$basearc h/rhscl/1/os Enabled: 0

Repo ID: rhel-7-server-supplementary-beta-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/supplemen tary/debug Enabled: 0

Repo ID: rh-gluster-3-client-for-rhel-7-server-source-rpms Repo Name: Red Hat Storage Native Client for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhs-client/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-debug-rpms Repo Name: Red Hat Satellite Tools 6.3 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3/debug Enabled: 0

Repo ID: rhel-7-server-openstack-11-rpms Repo Name: Red Hat OpenStack Platform 11 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/11/os Enabled: 0

Repo ID: cf-me-5.6-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.6 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.6/$basearch/debug Enabled: 0

Repo ID: rhel-7-server-openstack-5.0-debug-rpms Repo Name: Red Hat OpenStack 5.0 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/5.0/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-tools-rpms Repo Name: Red Hat OpenStack Tools 7.0 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/7.0/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-puppet4-debug-rpms Repo Name: Red Hat Satellite Tools 6.3 - Puppet 4 (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3-puppet4/debug Enabled: 0

Repo ID: rhel-7-server-openstack-13-devtools-source-rpms Repo Name: Red Hat OpenStack Platform 13 Developer Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/13/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-devtools-source-rpms Repo Name: Red Hat OpenStack Platform 11 Developer Tools for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-devtools/11/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-12-tools-rpms Repo Name: Red Hat OpenStack Platform 12 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/12/os Enabled: 0

Repo ID: rhel-7-server-rhceph-3-tools-rpms Repo Name: Red Hat Ceph Storage Tools 3 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-tools/3/os Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-optools-debug-rpms Repo Name: Red Hat Enterprise Linux OpenStack Platform 7.0 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-optools/7.0/debug Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-beta-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/highavail ability/os Enabled: 0

Repo ID: cf-me-5.6-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.6 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.6/$basearch/os Enabled: 0

Repo ID: rhel-7-server-rh-common-beta-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server - RH Common Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/rh-common /debug Enabled: 0

Repo ID: rhel-7-server-openstack-8-tools-rpms Repo Name: Red Hat OpenStack Platform 8 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/8/os Enabled: 0

Repo ID: rhel-7-server-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/os Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.3-puppet4-source-rpms Repo Name: Red Hat Satellite Tools 6.3 - Puppet 4 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.3-puppet4/source/SRPMS Enabled: 0

Repo ID: rhel-7-fast-datapath-htb-debug-rpms Repo Name: Red Hat Enterprise Linux Fast Datapath Beta (RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/htb/rhel/server/7/$basearch/fast-datap ath/debug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-beta-debug-rpms Repo Name: Red Hat Satellite Tools 6 Beta (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6/debug Enabled: 0

Repo ID: rhel-7-server-openstack-11-tools-rpms Repo Name: Red Hat OpenStack Platform 11 Tools for RHEL 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/11/os Enabled: 0

Repo ID: rhel-7-server-openstack-8-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 8 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/8/debug Enabled: 0

Repo ID: cf-me-5.10-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.10 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.10/$basearch/os Enabled: 0

Repo ID: rhel-7-server-openstack-13-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 13 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/13/debug Enabled: 0

Repo ID: rhel-7-server-extras-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Extras Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/extras/os Enabled: 0

Repo ID: rhel-7-server-openstack-8-rpms Repo Name: Red Hat OpenStack Platform 8 for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack/8/os Enabled: 0

Repo ID: rhel-7-server-ansible-2.5-debug-rpms Repo Name: Red Hat Ansible Engine 2.5 Debug RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.5/debug Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-debug-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/highavailability/debug Enabled: 0

Repo ID: rh-sso-7.1-for-rhel-7-server-debug-rpms Repo Name: Single Sign-On 7.1 (RHEL 7 Server) (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r h-sso/7.1/debug Enabled: 0

Repo ID: rhel-7-server-rpms Repo Name: Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/os Enabled: 1

Repo ID: cf-me-5.5-for-rhel-7-debug-rpms Repo Name: Red Hat CloudForms Management Engine 5.5 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.5/$basearch/debug Enabled: 0

Repo ID: rhel-7-server-ansible-2.6-rpms Repo Name: Red Hat Ansible Engine 2.6 RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.6/os Enabled: 0

Repo ID: rhel-ha-for-rhel-7-server-fastrack-source-rpms Repo Name: Red Hat Enterprise Linux High Availability (for RHEL 7 Server) - Fastrack (Source RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/higha vailability/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-director-source-rpms Repo Name: Red Hat OpenStack Platform 8 director for RHEL 7 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/8/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-8-director-rpms Repo Name: Red Hat OpenStack Platform 8 director for RHEL 7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-director/8/os Enabled: 0

Repo ID: rhel-7-server-openstack-beta-debug-rpms Repo Name: Red Hat OpenStack Beta for Server 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/openstack /debug Enabled: 0

Repo ID: rhel-7-server-supplementary-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/supplementary/os Enabled: 0

Repo ID: rhel-7-server-openstack-13-optools-debug-rpms Repo Name: Red Hat OpenStack Platform 13 Operational Tools for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-optools/13/debug Enabled: 0

Repo ID: rhel-7-server-fastrack-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Fastrack (Source RPMs) Repo URL: https://cdn.redhat.com/content/fastrack/rhel/server/7/$basearch/sourc e/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-11-tools-source-rpms Repo Name: Red Hat OpenStack Platform 11 Tools for RHEL 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack-tools/11/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-10-tools-debug-rpms Repo Name: Red Hat OpenStack Platform 10 Tools for RHEL 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/10/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-3-tools-debug-rpms Repo Name: Red Hat Ceph Storage Tools 3 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/r hceph-tools/3/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-tools-debug-rpms Repo Name: Red Hat Ceph Storage Tools 1.3 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-tools/1.3/debug Enabled: 0

Repo ID: rhel-x86_64-server-7-mrg-messaging-2-debug-rpms Repo Name: Red Hat Enterprise MRG Messaging 2 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/m rg-m/2/debug Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6.4-source-rpms Repo Name: Red Hat Satellite Tools 6.4 (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/s at-tools/6.4/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-satellite-tools-6-beta-rpms Repo Name: Red Hat Satellite Tools 6 Beta (for RHEL 7 Server) (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-tools /6/os Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-installer-rpms Repo Name: Red Hat Ceph Storage Installer 1.3 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-installer/1.3/os Enabled: 0

Repo ID: rhel-7-server-satellite-maintenance-6-beta-source-rpms Repo Name: Red Hat Satellite Maintenance 6 Beta (for RHEL 7 Server) (Source RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/sat-maint enance/6/source/SRPMS Enabled: 0

Repo ID: cf-me-5.5-for-rhel-7-source-rpms Repo Name: Red Hat CloudForms Management Engine 5.5 (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.5/$basearch/source /SRPMS Enabled: 0

Repo ID: rhel-7-server-ansible-2.4-source-rpms Repo Name: Red Hat Ansible Engine 2.4 Source RPMs for Red Hat Enterprise Linux 7 Server Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/a nsible/2.4/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhn-tools-source-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhn-tools/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhceph-1.3-mon-debug-rpms Repo Name: Red Hat Ceph Storage MON 1.3 for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.3/debug Enabled: 0

Repo ID: rhel-7-server-supplementary-source-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Supplementary (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/supplementary/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-rhn-tools-debug-rpms Repo Name: RHN Tools for Red Hat Enterprise Linux 7 Server (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/rhn-tools/debug Enabled: 0

Repo ID: rhel-7-server-rhceph-1.2-mon-rpms Repo Name: Red Hat Ceph Storage MON 1.2 for Red Hat Enterprise Linux 7 Server (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/ceph-mon/1.2/os Enabled: 0

Repo ID: rhel-7-server-beta-debug-rpms Repo Name: Red Hat Enterprise Linux 7 Server Beta (Debug RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/debug Enabled: 0

Repo ID: rhel-7-server-openstack-13-debug-rpms Repo Name: Red Hat OpenStack Platform 13 for RHEL 7 (Debug RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/7Server/$basearch/o penstack/13/debug Enabled: 0

Repo ID: rhel-7-server-openstack-7.0-tools-source-rpms Repo Name: Red Hat OpenStack Tools 7.0 for Red Hat Enterprise Linux 7 Server (Source RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-tools/7.0/source/SRPMS Enabled: 0

Repo ID: rhel-7-server-openstack-6.0-installer-rpms Repo Name: Red Hat OpenStack 6.0 for RHEL 7 Platform Installer (RPMs) Repo URL: https://cdn.redhat.com/content/dist/rhel/server/7/$releasever/$basear ch/openstack-inst/6.0/os Enabled: 0

Repo ID: rhel-7-server-optional-beta-rpms Repo Name: Red Hat Enterprise Linux 7 Server - Optional Beta (RPMs) Repo URL: https://cdn.redhat.com/content/beta/rhel/server/7/$basearch/optional/ os Enabled: 0

Repo ID: cf-me-5.7-for-rhel-7-rpms Repo Name: Red Hat CloudForms Management Engine 5.7 (RPMs) Repo URL: https://cdn.redhat.com/content/dist/cf-me/server/5.7/$basearch/os Enabled: 0

################################################################################# export OS_USERNAME=admin export OS_PASSWORD=server export OS_TENANT_NAME=admin export OS_AUTH_URL=http://localhost:5000/v3

neutron net-create External1 --provider:network_type flat --provider:physical_network br-ex --router:external=true --shared neutron net-create External2 --provider:network_type flat --provider:physical_network eno16777736 --router:external=true --shared neutron net-create External3 --provider-physical-network provider --provider:physical_network eno16777736 --router:external=true --shared openstack subnet create --network provider \ --allocation-pool start=192.168.43.2,end=192.168.43.240 \ --dns-nameserver 192.168.43.1 --gateway 192.168.43.1 \ --subnet-range 192.168.43.0/24 provider

mysql create database neutron; grant all privileges on neutron. to 'neutron'@'localhost' identified by 'server'; grant all privileges on neutron. to 'neutron'@'%' identified by 'server'; quit

export | grep OS_declare -x OS_AUTH_URL="https://192.168.64.128:5000/v3"

source admin-openrc.sh

. /root/keystonerc_admin openstack user create --domain default --password-prompt neutron openstack role add --project service --user neutron admin openstack service create --name neutron --description "OpenStack Networking" network openstack endpoint create --region RegionOne network public http://controller:9696 openstack endpoint create --region RegionOne network internal http://controller:9696 openstack endpoint create --region RegionOne network admin http://controller:9696

systemctl enable neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl start neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl enable neutron-l3-agent.service systemctl start neutron-l3-agent.service

###################################################################################### Horizon admin unauthorized access error

export OS_USERNAME=admin export OS_PASSWORD=server export OS_TENANT_NAME=admin export OS_AUTH_URL=http://localhost:5000/v3

export OS_USERNAME=admin export OS_PASSWORD=server export OS_PROJECT_NAME=project export OS_USER_DOMAIN_ID=default export OS_PROJECT_DOMAIN_ID=default export OS_AUTH_URL=http://auth.example.com:5000/v3

neutron router-gateway-set ROUTER NETWORK neutron router-interface-add ROUTER SUBNET

neutron router-gateway-set router1 External2

neutron net-create External2 --provider:network_type flat --provider:physical_network eno16777736 --router:external=true --shared neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new network: +---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up | True | | availability_zone_hints | | | availability_zones | | | created_at | 2019-01-17T17:05:57Z | | description | | | id | 0f9adf89-6ee2-4e68-8559-fc474dedb30d | | ipv4_address_scope | | | ipv6_address_scope | | | is_default | False | | mtu | 1500 | | name | External2 | | port_security_enabled | True | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | provider:network_type | flat | | provider:physical_network | eno16777736 | | provider:segmentation_id | | | qos_policy_id | | | revision_number | 1 | | router:external | True | | shared | True | | status | ACTIVE | | subnets | | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-17T17:05:57Z | +---------------------------+--------------------------------------+ [root@localhost ~(keystone_admin)]# neutron router-create router1 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new router: +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | admin_state_up | True | | availability_zone_hints | | | availability_zones | | | created_at | 2019-01-17T17:09:36Z | | description | | | distributed | False | | external_gateway_info | | | flavor_id | | | ha | False | | id | 59dabea6-0f82-48e4-a093-9a4a904df496 | | name | router1 | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | revision_number | 0 | | routes | | | status | ACTIVE | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-17T17:09:36Z | +-------------------------+--------------------------------------+ [root@localhost ~(keystone_admin)]# neutron router-gateway-set router1 External2 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Set gateway for router router1 [root@localhost ~(keystone_admin)]# ^C [root@localhost ~(keystone_admin)]# neutron router-interface-add router1 Internal neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Added interface 1271621e-4cf0-425e-a6a8-ad68c3b43c7a to router router1.

neutron port-create Internal --fixed-ip ip_address=172.17.20.5 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new port: +-----------------------+------------------------------------------------------------------------------------+ | Field | Value | +-----------------------+------------------------------------------------------------------------------------+ | admin_state_up | True | | allowed_address_pairs | | | binding:host_id | | | binding:profile | {} | | binding:vif_details | {} | | binding:vif_type | unbound | | binding:vnic_type | normal | | created_at | 2019-01-17T17:19:52Z | | description | | | device_id | | | device_owner | | | extra_dhcp_opts | | | fixed_ips | {"subnet_id": "4f61307a-6f89-4edc-8c9b-f4afc9c9bde6", "ip_address": "172.17.20.5"} | | id | b2639fd0-a2ff-4616-9f69-1a86240a65ce | | mac_address | fa:16:3e:ff:0c:d1 | | name | | | network_id | 5f3ec4e3-a5c4-4b0b-8e9e-add01ffa2960 | | port_security_enabled | True | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | qos_policy_id | | | revision_number | 2 | | security_groups | 0edb18c8-e7ce-4f6f-9a81-2a24b9a8769f | | status | DOWN | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-17T17:19:52Z | +-----------------------+------------------------------------------------------------------------------------+

neutron port-create Internal neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new port: +-----------------------+--------------------------------------------------------------------------------------+ | Field | Value | +-----------------------+--------------------------------------------------------------------------------------+ | admin_state_up | True | | allowed_address_pairs | | | binding:host_id | | | binding:profile | {} | | binding:vif_details | {} | | binding:vif_type | unbound | | binding:vnic_type | normal | | created_at | 2019-01-17T17:21:59Z | | description | | | device_id | | | device_owner | | | extra_dhcp_opts | | | fixed_ips | {"subnet_id": "4f61307a-6f89-4edc-8c9b-f4afc9c9bde6", "ip_address": "172.17.20.152"} | | id | 53c7f03e-27b6-419d-a098-61823dad013b | | mac_address | fa:16:3e:94:b5:b2 | | name | | | network_id | 5f3ec4e3-a5c4-4b0b-8e9e-add01ffa2960 | | port_security_enabled | True | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | qos_policy_id | | | revision_number | 2 | | security_groups | 0edb18c8-e7ce-4f6f-9a81-2a24b9a8769f | | status | DOWN | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-17T17:22:00Z | +-----------------------+--------------------------------------------------------------------------------------+

neutron port-list --fixed-ips ip_address=192.168.43.1 ip_address=172.17.20.5 ip_address=172.17.20.152 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. +--------------------------------------+------+----------------------------------+-------------------+------------------------------------------------------------------------------------+ | id | name | tenant_id | mac_address | fixed_ips | +--------------------------------------+------+----------------------------------+-------------------+------------------------------------------------------------------------------------+ | 7c8baea6-b9f1-4152-ae4c-97023def8282 | | a76eea958a6e435a93e3ffc7a36c7970 | fa:16:3e:9e:58:64 | {"subnet_id": "2b834612-9e58-4714-9a0a-2f4b87f5720d", "ip_address": "172.17.20.5"} | +--------------------------------------+------+----------------------------------+-------------------+------------------------------------------------------------------------------------+ [root@localhost network-scripts(keystone_admin)]#

neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. +--------------------------------------+------+----------------------------------+-------------------+--------------------------------------------------------------------------------------+ | id | name | tenant_id | mac_address | fixed_ips | +--------------------------------------+------+----------------------------------+-------------------+--------------------------------------------------------------------------------------+ | 53c7f03e-27b6-419d-a098-61823dad013b | | a76eea958a6e435a93e3ffc7a36c7970 | fa:16:3e:94:b5:b2 | {"subnet_id": "4f61307a-6f89-4edc-8c9b-f4afc9c9bde6", "ip_address": "172.17.20.152"} | | b2639fd0-a2ff-4616-9f69-1a86240a65ce | | a76eea958a6e435a93e3ffc7a36c7970 | fa:16:3e:ff:0c:d1 | {"subnet_id": "4f61307a-6f89-4edc-8c9b-f4afc9c9bde6", "ip_address": "172.17.20.5"} | +--------------------------------------+------+----------------------------------+-------------------+--------------------------------------------------------------------------------------+

neutron router-update router1 --routes type=dict list=true destination=192.168.43.0/24,nexthop=172.17.20.150 neutron router-update router1 --routes type=dict list=true destination=172.17.0.0,nexthop=192.168.43.1

#####################################################################################################

/etc/cinder/cinder.conf

added

[keystone_authtoken] auth_uri = https://keystone_ip:5000 auth_url = https://keystone_ip:35357 auth_plugin = password project_domain_id = default user_domain_id = default project_name = services username = cinder password = [ccinder password]

systemctl restart openstack-nova-api systemctl restart openstack-nova-cert systemctl restart openstack-nova-consoleauth systemctl restart openstack-nova-scheduler systemctl restart openstack-nova-conductor systemctl restart openstack-nova-novncproxy systemctl restart neutron-server systemctl restart neutron-dhcp-agent systemctl restart neutron-l3-agent systemctl restart neutron-metadata-agent systemctl restart neutron-openvswitch-agent systemctl restart openstack-cinder-api systemctl restart openstack-cinder-backup systemctl restart openstack-cinder-scheduler systemctl restart openstack-cinder-volume

sudo service --status-all | grep nova sudo service --status-all | grep neutron sudo service --status-all | grep cinder

neutron router-create router1 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new router: +-------------------------+--------------------------------------+ | Field | Value | +-------------------------+--------------------------------------+ | admin_state_up | True | | availability_zone_hints | | | availability_zones | | | created_at | 2019-01-18T00:06:23Z | | description | | | distributed | False | | external_gateway_info | | | flavor_id | | | ha | False | | id | 85019eef-e2f2-444f-a023-39a4c8af7085 | | name | router1 | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | revision_number | 0 | | routes | | | status | ACTIVE | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-18T00:06:23Z | +-------------------------+--------------------------------------+ [root@localhost network-scripts(keystone_admin)]# neutron port-create Internal --fixed-ip ip_address=172.17.20.5 neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new port: +-----------------------+------------------------------------------------------------------------------------+ | Field | Value | +-----------------------+------------------------------------------------------------------------------------+ | admin_state_up | True | | allowed_address_pairs | | | binding:host_id | | | binding:profile | {} | | binding:vif_details | {} | | binding:vif_type | unbound | | binding:vnic_type | normal | | created_at | 2019-01-18T00:13:35Z | | description | | | device_id | | | device_owner | | | extra_dhcp_opts | | | fixed_ips | {"subnet_id": "2b834612-9e58-4714-9a0a-2f4b87f5720d", "ip_address": "172.17.20.5"} | | id | 7c8baea6-b9f1-4152-ae4c-97023def8282 | | mac_address | fa:16:3e:9e:58:64 | | name | | | network_id | 5866d16a-1417-49af-9f9c-90ce35277510 | | port_security_enabled | True | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | qos_policy_id | | | revision_number | 2 | | security_groups | 0edb18c8-e7ce-4f6f-9a81-2a24b9a8769f | | status | DOWN | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-18T00:13:36Z | +-----------------------+------------------------------------------------------------------------------------+

neutron net-create External2 --provider:network_type flat --provider:physical_network eno16777736 --router:external=true --shared neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Created a new network: +---------------------------+--------------------------------------+ | Field | Value | +---------------------------+--------------------------------------+ | admin_state_up | True | | availability_zone_hints | | | availability_zones | | | created_at | 2019-01-18T00:29:35Z | | description | | | id | 73079298-653a-4ead-85fd-a11d83672109 | | ipv4_address_scope | | | ipv6_address_scope | | | is_default | False | | mtu | 1500 | | name | External2 | | port_security_enabled | True | | project_id | a76eea958a6e435a93e3ffc7a36c7970 | | provider:network_type | flat | | provider:physical_network | eno16777736 | | provider:segmentation_id | | | qos_policy_id | | | revision_number | 1 | | router:external | True | | shared | True | | status | ACTIVE | | subnets | | | tags | | | tenant_id | a76eea958a6e435a93e3ffc7a36c7970 | | updated_at | 2019-01-18T00:29:36Z | +---------------------------+--------------------------------------+ [root@localhost network-scripts(keystone_admin)]# neutron net-create External3 --provider-physical-network provider --provider:physical_network eno16777736 --router:external=true --shared neutron CLI is deprecated and will be removed in the future. Use openstack CLI instead. Unrecognized attribute(s) 'provider_physical_network' Neutron server returns request_ids: ['req-b9ce0c6f-b0e5-487b-b214-450814b2b65f'] [root@localhost network-scripts(keystone_admin)]# openstack subnet create --network provider \

--allocation-pool start=192.168.43.2,end=192.168.43.240 \ --dns-nameserver 192.168.43.1 --gateway 192.168.43.1 \ --subnet-range 192.168.43.0/24 provider

neutron security-group-rule-create --direction ingress --ethertype IPv4 --remote-ip-prefix 0.0.0.0/0 default admin

neutron security-group-rule-create --direction ingress --ethertype IPv6 --remote-ip-prefix 0.0.0.0/0 default admin

[root@localhost ~(keystone_admin)]# systemctl restart httpd [root@localhost ~(keystone_admin)]# systemctl status httpd ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled) Drop-In: /usr/lib/systemd/system/httpd.service.d └─openstack-dashboard.conf Active: active (running) since Fri 2019-01-18 15:01:00 EST; 1min 20s ago Docs: man:httpd(8) man:apachectl(8) Process: 25652 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=0/SUCCESS) Process: 25946 ExecStartPre=/usr/bin/python /usr/share/openstack-dashboard/manage.py compress --force -v0 (code=exited, status=0/SUCCESS) Process: 25696 ExecStartPre=/usr/bin/python /usr/share/openstack-dashboard/manage.py collectstatic --noinput --clear -v0 (code=exited, status=0/SUCCESS) Main PID: 26094 (httpd) Status: "Total requests: 1; Current requests/sec: 0; Current traffic: 0 B/sec" Tasks: 107 CGroup: /system.slice/httpd.service ├─26094 /usr/sbin/httpd -DFOREGROUND ├─26107 /usr/libexec/nss_pcache 851978 off ├─26109 aodh_wsgi -DFOREGROUND ├─26110 aodh_wsgi -DFOREGROUND ├─26111 aodh_wsgi -DFOREGROUND ├─26112 aodh_wsgi -DFOREGROUND ├─26113 gnocchi_wsgi -DFOREGROUND ├─26114 gnocchi_wsgi -DFOREGROUND ├─26115 gnocchi_wsgi -DFOREGROUND ├─26116 gnocchi_wsgi -DFOREGROUND ├─26117 keystone-admin -DFOREGROUND ├─26118 keystone-admin -DFOREGROUND ├─26119 keystone-admin -DFOREGROUND ├─26120 keystone-admin -DFOREGROUND ├─26121 keystone-main -DFOREGROUND ├─26122 keystone-main -DFOREGROUND ├─26123 keystone-main -DFOREGROUND ├─26124 keystone-main -DFOREGROUND ├─26125 placement_wsgi -DFOREGROUND ├─26126 placement_wsgi -DFOREGROUND ├─26127 placement_wsgi -DFOREGROUND ├─26128 placement_wsgi -DFOREGROUND ├─26132 horizon -DFOREGROUND ├─26133 horizon -DFOREGROUND ├─26134 horizon -DFOREGROUND ├─26135 horizon -DFOREGROUND ├─26200 /usr/sbin/httpd -DFOREGROUND ├─26204 /usr/sbin/httpd -DFOREGROUND ├─26205 /usr/sbin/httpd -DFOREGROUND ├─26206 /usr/sbin/httpd -DFOREGROUND ├─26207 /usr/sbin/httpd -DFOREGROUND ├─26208 /usr/sbin/httpd -DFOREGROUND ├─26209 /usr/sbin/httpd -DFOREGROUND └─26210 /usr/sbin/httpd -DFOREGROUND

Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.4439... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.4439... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.4440... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.4774... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.5026... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.5027... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.5028... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.6247... Jan 18 15:00:59 localhost.localdomain httpd[26094]: [Fri Jan 18 15:00:59.6354... Jan 18 15:01:00 localhost.localdomain systemd[1]: Started The Apache HTTP Ser... Hint: Some lines were ellipsized, use -l to show in full. [root@localhost ~(keystone_admin)]# ##################################################################################

sudo systemctl enable openstack-ironic-conductor sudo systemctl restart openstack-ironic-conductor sudo systemctl status openstack-ironic-conductor openstack baremetal node clean ironic \ --clean-steps '[{"interface": "deploy", "step": "erase_devices_metadata"}]'

openstack baremetal node clean ironic \ --clean-steps '[{"interface": "deploy", "step": "erase_devices"}]'

openstack baremetal node clean ironic \ --clean-steps '[{"interface": "deploy", "step": "erase_devices_metadata"}]'

openstack baremetal node clean ironic \ --clean-steps '[{"interface": "deploy", "step": "erase_devices"}]'

export OS_PROJECT_DOMAIN_NAME=admin export OS_IDENTITY_API_VERSION=3

openstack network show External2 -f value -c id

openstack baremetal node list --provision-state available --no-maintenance --unassociated

keystone service-create --name=ironic --type=ironic --description="Orchestration"

keystone endpoint-create \ --service-id=$(keystone service-list | awk '/ orchestration / {print $2}') \ --publicurl=http://controller:8004/v3/%\(tenant_id\)s \ --internalurl=http://controller:8004/v3/%\(tenant_id\)s \ --adminurl=http://controller:8004/v3/%\(tenant_id\)s

openstack user create --password server --enable ironicusr openstack role add --project service --user ironicusr admin openstack service create --name ironic --description "Ironic bare metal provisioning service" baremetal openstack endpoint list -c "Service Name" -c "PublicURL" --long route -n openstack endpoint create --publicurl http://192.168.43.110:6385 --internalurl http://192.168.43.110:6385 --adminurl http://192.168.43.110:6385 --region regionOne 97effffc1f96444d94143b352e37e2fb

[root@localhost nova]# openstack endpoint create --region regionOne 97effffc1f96444d94143b352e37e2fb public https://192.168.43.110:6385 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 829f6ccfbf6441448b438d3a4d4ba790 | | interface | public | | region | regionOne | | region_id | regionOne | | service_id | 97effffc1f96444d94143b352e37e2fb | | service_name | ironic | | service_type | baremetal | | url | https://192.168.43.110:6385 | +--------------+----------------------------------+ [root@localhost nova]# Edit the /etc/haproxy/haproxy.cfg file and add the following line at the end of the file:

listen ironic

bind VIP:6385 transparent server SERVER_NAME COMPUTE_INTERNAL_API_IP:6385 check fall 5 inter 2000 rise 2

In this example:

VIP is the virtual IP address.
SERVER_NAME is the HAProxy identifying name for the Compute server where the Bare Metal Provisioning service will be installed and running.
COMPUTE_INTERNAL_API_IP is the Internal API IP address of the Compute server where the Bare Metal Provisioning service will be installed and running.
transparent allows the HAProxy to bind the IP address even if it does not exist on the Controller node so that in a clustered environment, the virtual IP address can move between controllers.

check fall 5 inter 2000 rise 2 refers to the following health checks on the back end server:
    fall 5 - the server is considered unavailable after 5 consecutive failed health checks.
    inter 2000 - the interval between health checks is 2000 ms or 2 seconds.
    rise 2 - the server is considered available after 2 consecutive successful health checks. 

Restart the HAProxy to make sure the changes take effect:

systemctl restart haproxy.service

systemctl restart haproxy.service

systemctl enable neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl start neutron-server.service neutron-openvswitch-agent.service neutron-dhcp-agent.service neutron-metadata-agent.service neutron-ovs-cleanup.service systemctl enable neutron-l3-agent.service systemctl start neutron-l3-agent.service

Creating the Bare Metal Provisioning Database

Connect to the database service:

# mysql -u root

Create the ironic database:

mysql> CREATE DATABASE ironic CHARACTER SET utf8;

Create an ironic database user and grant the user access to the ironic database:

mysql> GRANT ALL PRIVILEGES ON ironic.* TO 'ironic'@'%' IDENTIFIED BY 'PASSWORD';
mysql> GRANT ALL PRIVILEGES ON ironic.* TO 'ironic'@'localhost' IDENTIFIED BY 'PASSWORD';

Replace PASSWORD with a secure password that will be used to authenticate with the database server as this user.

Flush the database privileges to ensure that they take effect immediately:

mysql> FLUSH PRIVILEGES;

Exit the mysql client:

mysql> quit

openstack-config --set /etc/nova/nova.conf \ DEFAULT scheduler_host_manager nova.scheduler.ironic_host_manager.IronicHostManager

openstack-config --set /etc/nova/nova.conf DEFAULT scheduler_tracks_instance_changes false

openstack-config --set /etc/nova/nova.conf DEFAULT baremetal_scheduler_default_filters AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter openstack-config --set /etc/nova/nova.conf \ ironic admin_username ironic openstack-config --set /etc/nova/nova.conf \ ironic admin_password server openstack-config --set /etc/nova/nova.conf \ ironic admin_url http://192.168.43.110:35357/v3 openstack-config --set /etc/nova/nova.conf \ ironic admin service openstack-config --set /etc/nova/nova.conf \ ironic api_endpoint http://192.168.43.110:6385/v1

openstack-config --set /etc/nova/nova.conf database connection "mysql+pymysql://nova:server@DB_IP/nova" systemctl restart openstack-nova-scheduler.service systemctl restart openstack-nova-compute.service

openstack endpoint create --region RegionOne \ --publicurl http://192.168.43.110:6385 \ --internalurl http://192.168.43.110:6385 \ --adminurl http://192.168.43.110:6385 \ baremetal

export OS_AUTH_TYPE=server

########################################################################################### cp /etc/sysconfig/network-scripts/ifcfg-eno16777736 /etc/sysconfig/network-scripts/ifcfg-br-ex /etc/sysconfig/network-scripts/ifcfg-br-ex ###########################################################################################

HWADDR=00:0C:29:37:19:1F

TYPE=OVSBridge DEVICETYPE=ovs OVSBOOTPROTO=static BOOTPROTO=static DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no PROXY_METHOD=none BROWSER_ONLY=no NAME=br-ex UUID=c0addf73-98fe-464c-804a-b40110fd6157 ONBOOT=yes DEVICE=br-ex IPADDR=192.168.43.110 NETMASK=255.255.255.0 GATEWAY=192.168.43.1 DNS1=127.0.0.1 DNS2=192.168.1.1 DNS3=8.8.8.8 NM_CONTROLLED=no

OVSDHCPINTERFACES=eno16777736 # Physical Interface Name

########################################################################################### HWADDR=00:0C:29:37:19:1F TYPE=Ethernet BOOTPROTO=static DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=br-ex UUID=c0addf73-98fe-464c-804a-b40110fd6157 ONBOOT=yes PROXY_METHOD=none BROWSER_ONLY=no IPV4_FAILURE_FATAL=no IPV6_FAILURE_FATAL=no DEVICE=br-ex ONBOOT=yes IPADDR=192.168.43.110 PREFIX=24 GATEWAY=192.168.43.1 DNS1=127.0.0.1 DNS2=192.168.1.1 DNS3=8.8.8.8 IPV6_PEERDNS=no IPV6_PEERROUTES=no IPV6_PRIVACY=no ######################################################## HWADDR=00:0C:29:37:19:1F TYPE=OVSPort DEFROUTE=yes NAME=eno16777736 UUID=c0addf73-98fe-464c-804a-b40110fd6157 ONBOOT=yes PROXY_METHOD=none BROWSER_ONLY=no DEVICE=eno16777736 DEVICETYPE=ovs OVS_BRIDGE=br-ex DEVICETYPE=ovs DEFROUTE=yes PEERDNS=yes PEERROUTES=yes BOOTPROTO=static NM_CONTROLLED=no ######################################################## ip link set br-ex up ip address add dev br-ex 192.168.43.110 netmask 255.255.255.0 ip route add default via 192.168.43.1 ######################################################## correct settings:

HWADDR=00:0C:29:37:19:1F

TYPE=Ethernet

TYPE=OVSBridge DEVICE=br-ex DEVICETYPE=ovs DEFROUTE=yes IPV4_FAILURE_FATAL=no UUID=c0addf73-98fe-464c-804a-b40110fd6157 ONBOOT=yes IPADDR=192.168.43.110 PREFIX=24 GATEWAY=192.168.43.1 DNS=192.168.43.1 BOOTPROTO=static NM_CONTROLLED=no IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no PROXY_METHOD=none BROWSER_ONLY=no

HWADDR=00:0C:29:37:19:1F

TYPE=Ethernet

TYPE=OVSPort DEVICE=eno16777736 DEVICETYPE=ovs UUID=c0addf73-98fe-464c-804a-b40110fd6157 OVS_BRIDGE=br-ex BOOTPROTO=none ONBOOT=yes PROMISC=yes PROXY_METHOD=none DEFROUTE=yes PEERDNS=yes PEERROUTES=yes NM_CONTROLLED=no IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_FAILURE_FATAL=no NAME=eno16777736 PROXY_METHOD=none BROWSER_ONLY=no

make sure there is no other garbage files in the dir so that it won't stop network.service for you

mv /etc/sysconfig/network-scripts/route-eno16777736 /etc/sysconfig/network-scripts/route-br-ex

[root@localhost network-scripts]# systemctl status network -l ● network.service - LSB: Bring up/down networking Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled) Active: failed (Result: exit-code) since Sat 2019-01-19 03:47:01 EST; 21s ago Docs: man:systemd-sysv-generator(8) Process: 86319 ExecStop=/etc/rc.d/init.d/network stop (code=exited, status=0/SUCCESS) Process: 86591 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE) Tasks: 0

Jan 19 03:47:01 localhost.localdomain dhclient[86963]: Please report for this software via the Red Hat Bugzilla site: Jan 19 03:47:01 localhost.localdomain dhclient[86963]: http://bugzilla.redhat.com Jan 19 03:47:01 localhost.localdomain dhclient[86963]: ution. Jan 19 03:47:01 localhost.localdomain dhclient[86963]: exiting. Jan 19 03:47:01 localhost.localdomain network[86591]: failed. Jan 19 03:47:01 localhost.localdomain network[86591]: [FAILED] Jan 19 03:47:01 localhost.localdomain systemd[1]: network.service: control process exited, code=exited status=1 Jan 19 03:47:01 localhost.localdomain systemd[1]: Failed to start LSB: Bring up/down networking. Jan 19 03:47:01 localhost.localdomain systemd[1]: Unit network.service entered failed state. Jan 19 03:47:01 localhost.localdomain systemd[1]: network.service failed. [root@localhost network-scripts]#

red hat portal portal gives error loading snapshots:

Error 500 Internal Server Error Message: {"message":"Failed to create attachment metadata","detailMessage":"Update failed. First exception on row 0 with id 5002K00000dA2nuQAC; first error: UNABLE_TO_LOCK_ROW, unable to obtain exclusive access to this record: []"}

amerhwitat commented 5 years ago

https://bugs.launchpad.net/bugs/1811941

amerhwitat commented 5 years ago

| Case Information |

https://access.redhat.com/support/cases/#/case/02293077 Case Title : neutron routers are down Case Number : 02293077 Case Open Date : 2019-01-16 11:19:30 Severity : 4 (Low) Problem Type : Other

Most recent comment: On 2019-01-21 17:30:58, Hwitat, Amer commented: "[root@localhost network-scripts]# systemctl status network -l ● network.service - LSB: Bring up/down networking Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled) Active: failed (Result: exit-code) since Sat 2019-01-19 03:47:01 EST; 21s ago Docs: man:systemd-sysv-generator(8) Process: 86319 ExecStop=/etc/rc.d/init.d/network stop (code=exited, status=0/SUCCESS) Process: 86591 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE) Tasks: 0

Jan 19 03:47:01 localhost.localdomain dhclient[86963]: Please report for this software via the Red Hat Bugzilla site: Jan 19 03:47:01 localhost.localdomain dhclient[86963]: http://bugzilla.redhat.com Jan 19 03:47:01 localhost.localdomain dhclient[86963]: ution. Jan 19 03:47:01 localhost.localdomain dhclient[86963]: exiting. Jan 19 03:47:01 localhost.localdomain network[86591]: failed. Jan 19 03:47:01 localhost.localdomain network[86591]: [FAILED] Jan 19 03:47:01 localhost.localdomain systemd[1]: network.service: control process exited, code=exited status=1 Jan 19 03:47:01 localhost.localdomain systemd[1]: Failed to start LSB: Bring up/down networking. Jan 19 03:47:01 localhost.localdomain systemd[1]: Unit network.service entered failed state. Jan 19 03:47:01 localhost.localdomain systemd[1]: network.service failed. [root@localhost network-scripts]#

there was another file in the same Dir and it was called eno16777736_1 it caused this bug ....

there is another fault with the NIC and br-ex that says alway that the br-ex if exists and I think it's an issue with OVS and NIC .. not a big deal but it makes br-ex state appears as UNKOWN .. sadly I didn't capture it ...

also the state of swift server becomes failed after about 20 minutes or when the system overloads and I issue:

solved neurtron and created also a key pair

I have to create a vloume on cinder and container on swift (I manually started the service)

[root@localhost ~(keystone_admin)]# systemctl enable openstack-swift-object.service Failed to execute operation: Connection timed out [root@localhost ~(keystone_admin)]# systemctl restart openstack-swift-object.service [root@localhost ~(keystone_admin)]# systemctl status openstack-swift-object.service ● openstack-swift-object.service - OpenStack Object Storage (swift) - Object Server Loaded: loaded (/usr/lib/systemd/system/openstack-swift-object.service; enabled; vendor preset: disabled) Active: active (running) since Sun 2019-01-20 18:31:58 EST; 17s ago Main PID: 55513 (swift-object-se) Tasks: 1 CGroup: /system.slice/openstack-swift-object.service └─55513 /usr/bin/python2 /usr/bin/swift-object-server /etc/swift/object-server.conf

Jan 20 18:31:58 localhost.localdomain systemd[1]: Started OpenStack Object Storage (swift) - Object Server. [root@localhost ~(keystone_admin)]#

anyway there alot of good things to say about openstack mostly is that it's open source ... thanks"

https://access.redhat.com/support/cases/#/case/02293077?commentId=a0a2K00000Ot7UhQAJ

amerhwitat commented 5 years ago

swift server keeps going to failure state and going down each1 minute of execution in my installation which causes other services like neutron and nova (ecosystem) to malfuction ...