StartNetaxe

netaxe2023/05/18

Install Netaxe on Docker

To install Netaxe using Docker, you need to install Docker locally in advance.

For the installation of Docker, please refer to the official documentation::

Install docker And docker-compose

CentOS (查看官方教程
  1. Uninstall Old Version dockerdocker-engine

    sudo yum remove docker \
    docker-client \
    docker-client-latest \
    docker-common \
    docker-latest \
    docker-latest-logrotate \
    docker-logrotate \
    docker-engine
    
  2. Set Repo

    sudo yum install -y yum-utils
    

    Choose one of the following two, the second is domestic source

    sudo yum-config-manager \
     --add-repo \
     https://download.docker.com/linux/centos/docker-ce.repo
    
    sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
    
  3. Install docker engine

    sudo yum install -y docker-ce \
    docker-ce-cli \
    containerd.io \
    docker-buildx-plugin \
    docker-compose-plugin
    
  4. Run docker

    sudo systemctl start docker
    
Ubuntu (查看官方教程
  1. Uninstall Old Version dockerdocker-engine

    sudo apt-get remove docker docker-engine docker.io containerd runc
    
  2. Set Repo

    1. Update 'apt' package index and install dependencies

      sudo apt-get update
      
      sudo apt-get install \
      ca-certificates \
      curl \
      gnupg \
      lsb-release
      
    2. Add Docker official GPG key

      sudo mkdir -m 0755 -p /etc/apt/keyrings
      
      curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
      
    3. Set Repo

      echo \
      "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
      $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
      
  3. Install docker engine

    sudo apt-get update
    

    Receive a GPG error while running the 'apt-get' update?

    sudo chmod a+r /etc/apt/keyrings/docker.gpg
    
     sudo apt-get update
    
    sudo apt-get install docker-ce \
    docker-ce-cli \
    containerd.io \
    docker-buildx-plugin \
    docker-compose-plugin
    

Deploy Netaxe


Disable the firewall:

systemctl stop firewalld.service

systemctl disable firewalld.service 

You need to close selinux

sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config

Check whether the modification is successful

grep SELINUX /etc/selinux/config

Then restart the system

reboot
git clone https://gitee.com/iflytek/NetAxe.git

cd NetAxe/install-compose/

sh init.sh   && sh  deploy.sh  && sh init_apisix.sh

The network adapter IP corresponding to the default route of your server is automatically found as the IP to listen to after the service is deployed

If your server involves IP mapping or nginx proxy, you need to change it

sh init.sh 1.1.1.1   && sh  deploy.sh  && sh init_apisix.sh

1.1.1.1 is the IP on which you want the service to end up running

Application port planning table

应用前端 web后端 controller别名
微前端主应用9980--
基础平台3220031100base
消息网关3220131101msg-gateway
告警中心3220231102alert
IPAM3220331103ipam
RBAC3220431104rbac
南向驱动3220531105south-driver
监控中心3220631106neteye
可视化指标3220731107metric
DCN 控制器3220831108dcn
DCS 控制器3220831108dcs
工作流引擎3220931109work-flow
资源平台3221031110cmdb
私有平台3221131111private

底层工具端口规划表

应用端口
apisix-dashboard39000
apisix9080/9091/9092/9443
etcd2379
mongo37018
mongo-express37017
mysql36306
redis36379
rabbitmq31672/32672
nacos8848
pushgateway39091
prometheus39090
Last Updated 2023/12/15 11:14:33