El contenido no se encuentra disponible en el idioma seleccionado. Estamos trabajando continuamente para agregar más idiomas. Gracias por su apoyo.

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
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
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
OneAccess
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
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
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service Turbo
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Containers
Cloud Container Engine
SoftWare Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
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
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Intelligent EdgeCloud
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive

Modifying the Manager Routing Table

Updated on 2022-02-22 GMT+08:00

Scenario

After the FusionInsight Manager is installed, the system automatically creates two pieces of routing information on the active management node. Run the ip rule list command to view the routing information, as shown in the following example:

0:  from all lookup local  
32764:  from all to 10.10.100.100 lookup ntp_rt  #FusionInsight Manager NTP routing information created by the system. The information is not displayed when no external NTP clock source is configured. FusionInsight Manager
from 1EI Managerm_rt #FusionInsight Manager routing information created by the system 
32766:  from all lookup main  
32767:  from all lookup default
NOTE:

If the external NTP server has not been configured, only the OM routing information om_rt will be created.

When the routing information created by the FusionInsight Manager system conflicts with the routing information of the enterprise, use the autoroute.sh tool to disable or enable routes created by FusionInsight Manager.

Impact on the System

After the routing information created by the FusionInsight Manager system is disabled and before the new routing information is set, FusionInsight Manager cannot be accessed but operating of the cluster will not be affected.

Prerequisites

The Manager has already been installed.

Disable the routing information created by the system.

  1. Log in to the active management node as user omm. Run the following commands to disable the routing information created by the system:

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

    ./autoroute.sh disable

    Deactivating Route. 
    Route operation (disable) successful.

  2. Run the following command to view the execution result:

    ip rule list

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

  3. Run the following command and enter the password of user root to switch to user root:

    su - root

  4. Run the following commands to manually create WS floating IP address routing information:

    ip route add WS floating IP address Network segment number/WS floating IP address subnet mask scope link src WS floating IP address dev WS floating IP address NIC table om_rt

    ip route add default via WS floating IP address gateway dev WS floating IP address NIC table om_rt

    ip rule add from WS floating IP address table om_rt

    For example,

    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

    NOTE:

    If the IP address mode of the current network is IPv6, run the ip -6 route add command.

  5. Run the following commands to manually create NTP service routing information (Skip this step when no external NTP clock source is configured.):

    ip route add default via NtpIP address gateway dev NIC of the local host IP address table ntp_rt

    ip rule add to NTP IP address table ntp_rt

    NIC of the local host IP address indicates the NIC that can interwork with the network segment where the NTP server is located.

    For example,

    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. Run the following command to view the execution result. For example, if routing information of which the routing table names are om_rt and ntp_rt is generated, the operation is successful.

    ip rule list

    0:  from all lookup local 
    32764:  from all to 10.10.100.100 lookup ntp_rt #The information is not displayed when 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

Enable the routing information created by the system.

  1. Log in to the active management node as user omm.
  2. Run the following commands to enable the routing information created by the system:

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

    ./autoroute.sh enable

    Activating Route. 
    Route operation (enable) successful.

  3. Run the following command to view the execution result. For example, if routing information of which the routing table names are ntp_rt and om_rt is generated, the operation is successful.

    ip rule list

    0:  from all lookup local  
    32764:  from all to 10.10.100.100 lookup ntp_rt  #The information is not displayed when 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

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback