...
文件 | 说明 |
nla-agent-setup.tar | AIChat安装包 |
nginx-v1.25.tar | nginx docker镜像 |
nfs.zip | nfs离线安装包,适用centos |
cluster.tar | 集群配置参考文件 |
--docker-compose.yml | 单节点启动文件 |
--docker-swarm.yml | propertycenter/aiweb等组件启动文件 |
--docker-swarm-base.yml | mysql/redis/mongo组件组件文件 |
--hosts | /etc/hosts配置参考 |
--resolv.conf | /etc/resolv.conf配置参考 |
--nginx_conf | nginx配置目录 |
– smartbi.ai.conf | nginx配置文件 |
...
代码块 |
---|
# 在线安装 sudo yum install nfs-utils rpcbind -y sudo systemctl start rpcbind sudo systemctl enable rpcbind sudo systemctl start nfs-server sudo systemctl enable nfs-server sudo systemctl status rpcbind sudo systemctl status nfs-server |
离线安装nfs如果不能联网,可以离线安装nfs服务,zip文件适用centos,其他linux可自行搜索离线包。
代码块 |
---|
# 解压离线包, 适用centos
unzip nfs.zip
# rpm安装
rpm -ivh *.rpm --force --nodeps |
...