gpt4 book ai didi

linux - 使用 Ansible 安装 Nginx 到没有互联网连接的目标机器

转载 作者:太空宇宙 更新时间:2023-11-04 12:01:12 25 4
gpt4 key购买 nike

远程系统是 Ubuntu Server 16.04。它连接到 Intranet 环境但没有 Internet 连接。如何使用 Ansible 安装 Nginx 到这样的远程机器?

最佳答案

上传nginx source file到远程机器,如果两者之间有任何连接
本地机器,解压并执行:

./configure
make
sudo make install

需要使用 Ansible 执行如下操作,但可能还需要进一步的步骤:

- name: Upload nginx source file and unarchive
unarchive:
src: nginx-1.10.1.tar.gz
dest: /tmp/nginx-1.10.1

- name: Build and install from source
shell: ./configure && make && make install
args:
chdir: /tmp/nginx-1.10.1
become: true

关于linux - 使用 Ansible 安装 Nginx 到没有互联网连接的目标机器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52364599/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com