Estos contenidos se han traducido de forma automática para su comodidad, pero Huawei Cloud no garantiza la exactitud de estos. Para consultar los contenidos originales, acceda a la versión en inglés.
Cómputo
Elastic Cloud Server
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Redes
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Gestión y gobernanza
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
Cloud Operations Center
Resource Governance Center
Migración
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Análisis
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
IoT
IoT Device Access
Otros
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Seguridad y cumplimiento
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Blockchain
Blockchain Service
Servicios multimedia
Media Processing Center
Video On Demand
Live
SparkRTC
Almacenamiento
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Contenedores
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Bases de datos
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Aplicaciones empresariales
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Data Lake Factory
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Distribución de contenido y cómputo de borde
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Soluciones
SAP Cloud
High Performance Computing
Servicios para desarrolladores
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
Cloud Application Engine
aPaaS MacroVerse
KooPhone
KooDrive

Modificación de la tabla de enrutamiento de FusionInsight Manager

Actualización más reciente 2023-11-20 GMT+08:00

Escenario

Cuando se instala FusionInsight Manager, se crean automáticamente dos piezas de información de enrutamiento en el nodo de gestión activa. Puede ejecutar el comando ip rule list para ver la información de enrutamiento, como se muestra en el siguiente ejemplo:

0:from all lookup local  
32764:from all to 10.10.100.100 lookup ntp_rt   #NTP routing information created by FusionInsight Manager (this information is unavailable if no external NTP clock source is configured).
32765:from 192.168.0.117 lookup om_rt   #OM routing information created by the FusionInsight Manager.
32766:from all lookup main  
32767:from all lookup default
NOTA:

Si no se ha configurado ningún servidor NTP externo, solo se creará la información de enrutamiento OM.

Si la información de enrutamiento creada por FusionInsight Manager entra en conflicto con la información de enrutamiento configurada en la planificación de red empresarial, el administrador del clúster puede usar autoroute.sh para deshabilitar o habilitar la información de enrutamiento creada por FusionInsight Manager.

Impacto en el sistema

Después de deshabilitar la información de enrutamiento creada por FusionInsight Manager y antes de establecer la nueva información de enrutamiento, no se puede acceder al FusionInsight Manager, pero los clústeres se ejecutan correctamente.

Prerrequisitos

Se ha instalado el FusionInsight Manager.

Ha obtenido información de enrutamiento sobre la dirección IP flotante de WS.

Deshabilitar la información de enrutamiento creada por el sistema

  1. Inicie sesión en el nodo de gestión activo como usuario omm. Ejecute los siguientes comandos para deshabilitar la información de enrutamiento creada por el sistema:

    cd ${BIGDATA_HOME}/om-server/om/sbin

    ./autoroute.sh disable

    Deactivating Route. 
    Route operation (disable) successful.

  2. Ejecute el siguiente comando para ver el resultado de la ejecución:

    ip rule list

    0:from all lookup local  
    32766:from all lookup main  
    32767:from all lookup default

  3. Ejecute el siguiente comando e introduzca la contraseña de usuario root para cambiar a usuario root:

    su - root

  4. Ejecute los siguientes comandos para crear manualmente la información de enrutamiento sobre la dirección IP flotante de WS:

    ip route add Network segment of the WS floating IP address/Subnet mask of the WS floating IP address scope link src WS floating IP address dev NIC of the WS floating IP address table om_rt

    ip route add default via Gateway of the WS floating IP address dev NIC of the WS floating IP address table om_rt

    ip rule add from WS floating IP address table om_rt

    Ejemplo:

    ip route add 192.168.0.0/255.255.255.0 scope link src 192.168.0.117 dev eth0:ws table om_rt

    ip route add default via 192.168.0.254 dev eth0:ws table om_rt

    ip rule add from 192.168.0.117 table om_rt

    NOTA:

    Si se utilizan direcciones IPv6, ejecute el comando ip -6 route add.

  5. Ejecute los siguientes comandos para crear manualmente la información de enrutamiento de servicio NTP. Omita este paso cuando no hay una fuente de reloj NTP externa está configurada.

    ip route add default via IP gateway of the NTP service dev NIC of the local IP address table ntp_rt

    ip rule add to ntpIP table ntp_rt

    NIC of the local IP address indica la NIC que puede comunicarse con el segmento de red donde se encuentra el servidor NTP.

    Ejemplo:

    ip route add default via 10.10.100.254 dev eth0 table ntp_rt

    ip rule add to 10.10.100.100 table ntp_rt

  6. Consulte el resultado de la ejecución.

    En el siguiente ejemplo, si el resultado del comando contiene om_rt y ntp_rt, la operación se realiza correctamente.

    ip rule list

    0:from all lookup local   
    32764:from all to 10.10.100.100 lookup ntp_rt  #This information is not displayed if no external NTP clock source is configured.
    32765:from 192.168.0.117 lookup om_rt  
    32766:from all lookup main  
    32767:from all lookup default

Habilitar la información de enrutamiento creada por el sistema

  1. Inicie sesión en el nodo de gestión activo como usuario omm.
  2. Ejecute los siguientes comandos para habilitar la información de enrutamiento creada por el sistema:

    cd ${BIGDATA_HOME}/om-server/om/sbin

    ./autoroute.sh enable

    Activating Route. 
    Route operation (enable) successful.

  3. Consulte el resultado de la ejecución.

    En el siguiente ejemplo, si el resultado del comando contiene om_rt y ntp_rt, la operación se realiza correctamente.

    ip rule list

    0:from all lookup local  
    32764:from all to 10.10.100.100 lookup ntp_rt  #This information is not displayed if no external NTP clock source is configured.
    32765:from 192.168.0.117 lookup om_rt  
    32766:from all lookup main  
    32767:from all lookup default

Utilizamos cookies para mejorar nuestro sitio y tu experiencia. Al continuar navegando en nuestro sitio, tú aceptas nuestra política de cookies. Descubre más

Comentarios

Comentarios

Comentarios

0/500

Seleccionar contenido

Enviar el contenido seleccionado con los comentarios