离线安装所有可直接yum的服务 离线安装oh my zsh
connygpt 2024-10-26 09:19 25 浏览
公司场景需求:离线服务器上安装一个nginx服务
系统版本:CentOS 7.6
方法一:
使用tar包,二进制安装 略
方法二:
rpm方式
安装rpm包时,应该大家都遇到过缺少依赖包的问题,一个一个安装依赖文件,让人头疼。
这里给大家介绍一种很方便的安装方法
使用yumdownloader命令离线安装 nginx rpm服务包
1.首先找一个可以连接外网的服务器
可以ping通百度域名,确定可以上外网
[root@243-ceshi /]# ping www.baidu.com
PING www.baidu.com
icmp_seq=1 ttl=53 time=23.5 ms
icmp_seq=2 ttl=53 time=22.8 ms
icmp_seq=3 ttl=53 time=27.3 ms
123456
2.安装插件
[root@localhost ~]# yum install yum-utils
3.创建一个存放rpm包的目录
[root@localhost ~]# mkdir /rpm
4.下载nginx rpm相关文件
[root@localhost rpm]# yumdownloader --resolve --destdir=/rpm nginx
5.查看rpm目录下的文件
[root@243-ceshi rpm]# ls
centos-indexhtml-7-9.el7.centos.noarch.rpm nginx-mod-http-image-filter-1.16.1-3.el7.x86_64.rpm
gd-2.0.35-27.el7_9.x86_64.rpm nginx-mod-http-perl-1.16.1-3.el7.x86_64.rpm
gperftools-libs-2.6.1-1.el7.x86_64.rpm nginx-mod-http-xslt-filter-1.16.1-3.el7.x86_64.rpm
libXpm-3.5.12-1.el7.x86_64.rpm nginx-mod-mail-1.16.1-3.el7.x86_64.rpm
nginx-1.16.1-3.el7.x86_64.rpm nginx-mod-stream-1.16.1-3.el7.x86_64.rpm
nginx-all-modules-1.16.1-3.el7.noarch.rpm openssl11-libs-1.1.1g-2.el7.x86_64.rpm
nginx-filesystem-1.16.1-3.el7.noarch.rpm
12345678
nginx最新版本的相关依赖文件全在都rpm目录下了
6.把rpm目录下文件移到内网服务器的/rpm目录下
[root@243-ceshi /]# scp -r /rpm root@192.168.1.168:/rpm
root@192.168.1.168's password:
centos-indexhtml-7-9.el7.centos.noarch.rpm 100% 92KB 19.7MB/s 00:00
gd-2.0.35-27.el7_9.x86_64.rpm 100% 146KB 22.7MB/s 00:00
gperftools-libs-2.6.1-1.el7.x86_64.rpm 100% 272KB 26.2MB/s 00:00
libXpm-3.5.12-1.el7.x86_64.rpm 100% 55KB 17.6MB/s 00:00
nginx-1.16.1-3.el7.x86_64.rpm 100% 563KB 31.4MB/s 00:00
nginx-all-modules-1.16.1-3.el7.noarch.rpm 100% 20KB 8.2MB/s 00:00
nginx-filesystem-1.16.1-3.el7.noarch.rpm 100% 21KB 9.0MB/s 00:00
nginx-mod-http-image-filter-1.16.1-3.el7.x86_64.rpm 100% 30KB 12.0MB/s 00:00
nginx-mod-http-perl-1.16.1-3.el7.x86_64.rpm 100% 39KB 14.3MB/s 00:00
nginx-mod-http-xslt-filter-1.16.1-3.el7.x86_64.rpm 100% 29KB 11.9MB/s 00:00
nginx-mod-mail-1.16.1-3.el7.x86_64.rpm 100% 57KB 16.6MB/s 00:00
nginx-mod-stream-1.16.1-3.el7.x86_64.rpm 100% 85KB 18.1MB/s 00:00
openssl11-libs-1.1.1g-2.el7.x86_64.rpm 100% 1485KB 40.6MB/s 00:00
123456789101112131415
7.进入离线服务器安装
[root@localhost /]# cd /rpm
[root@localhost rpm]# rpm -ivh * --nodeps --force
警告:nginx-1.16.1-3.el7.x86_64.rpm: 头V4 RSA/SHA256 Signature, 密钥 ID 352c64e5: NOKEY
准备中... ################################# [100%]
正在升级/安装...
1:openssl11-libs-1:1.1.1g-2.el7 ################################# [ 8%]
2:nginx-filesystem-1:1.16.1-3.el7 ################################# [ 15%]
3:libXpm-3.5.12-1.el7 ################################# [ 23%]
4:gd-2.0.35-27.el7_9 ################################# [ 31%]
5:gperftools-libs-2.6.1-1.el7 ################################# [ 38%]
6:centos-indexhtml-7-9.el7.centos ################################# [ 46%]
7:nginx-mod-http-image-filter-1:1.1################################# [ 54%]
8:nginx-mod-http-perl-1:1.16.1-3.el################################# [ 62%]
9:nginx-mod-http-xslt-filter-1:1.16################################# [ 69%]
10:nginx-mod-mail-1:1.16.1-3.el7 ################################# [ 77%]
11:nginx-all-modules-1:1.16.1-3.el7 ################################# [ 85%]
12:nginx-1:1.16.1-3.el7 ################################# [ 92%]
13:nginx-mod-stream-1:1.16.1-3.el7 ################################# [100%]
12345678910111213141516171819
8.启动nginx服务
[root@localhost rpm]# systemctl start nginx
[root@localhost rpm]# systemctl status nginx
● nginx.service - The nginx HTTP and reverse proxy server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; disabled; vendor preset: disabled)
Active: active (running) since 四 2021-01-21 15:24:46 CST; 5s ago
Process: 127308 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
Process: 127303 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
Process: 127300 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
Main PID: 127318 (nginx)
Tasks: 7
Memory: 7.8M
CGroup: /system.slice/nginx.service
├─127318 nginx: master process /usr/sbin/nginx
├─127319 nginx: worker process
├─127320 nginx: worker process
├─127322 nginx: worker process
├─127323 nginx: worker process
├─127324 nginx: worker process
└─127325 nginx: worker process
1月 21 15:24:46 vrgv systemd[1]: Starting The nginx HTTP and reverse proxy server...
1月 21 15:24:46 vrgv nginx[127303]: nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
1月 21 15:24:46 vrgv nginx[127303]: nginx: configuration file /etc/nginx/nginx.conf test is successful
1月 21 15:24:46 vrgv systemd[1]: Started The nginx HTTP and reverse proxy server.
完成
如果有帮助,点个关注吧,还有更多运维技巧分享给您~
相关推荐
- 3分钟让你的项目支持AI问答模块,完全开源!
-
hello,大家好,我是徐小夕。之前和大家分享了很多可视化,零代码和前端工程化的最佳实践,今天继续分享一下最近开源的Next-Admin的最新更新。最近对这个项目做了一些优化,并集成了大家比较关注...
- 干货|程序员的副业挂,12个平台分享
-
1、D2adminD2Admin是一个完全开源免费的企业中后台产品前端集成方案,使用最新的前端技术栈,小于60kb的本地首屏js加载,已经做好大部分项目前期准备工作,并且带有大量示例代码,助...
- Github标星超200K,这10个可视化面板你知道几个
-
在Github上有很多开源免费的后台控制面板可以选择,但是哪些才是最好、最受欢迎的可视化控制面板呢?今天就和大家推荐Github上10个好看又流行的可视化面板:1.AdminLTEAdminLTE是...
- 开箱即用的炫酷中后台前端开源框架第二篇
-
#头条创作挑战赛#1、SoybeanAdmin(1)介绍:SoybeanAdmin是一个基于Vue3、Vite3、TypeScript、NaiveUI、Pinia和UnoCSS的清新优...
- 搭建React+AntDeign的开发环境和框架
-
搭建React+AntDeign的开发环境和框架随着前端技术的不断发展,React和AntDesign已经成为越来越多Web应用程序的首选开发框架。React是一个用于构建用户界面的JavaScrip...
- 基于.NET 5实现的开源通用权限管理平台
-
??大家好,我是为广大程序员兄弟操碎了心的小编,每天推荐一个小工具/源码,装满你的收藏夹,每天分享一个小技巧,让你轻松节省开发效率,实现不加班不熬夜不掉头发,是我的目标!??今天小编推荐一款基于.NE...
- StreamPark - 大数据流计算引擎
-
使用Docker完成StreamPark的部署??1.基于h2和docker-compose进行StreamPark部署wgethttps://raw.githubusercontent.com/a...
- 教你使用UmiJS框架开发React
-
1、什么是Umi.js?umi,中文可发音为乌米,是一个可插拔的企业级react应用框架。你可以将它简单地理解为一个专注性能的类next.js前端框架,并通过约定、自动生成和解析代码等方式来辅助...
- 简单在线流程图工具在用例设计中的运用
-
敏捷模式下,测试团队的用例逐渐简化以适应快速的发版节奏,大家很早就开始运用思维导图工具比如xmind来编写测试方法、测试点。如今不少已经不少利用开源的思维导图组件(如百度脑图...)来构建测试测试...
- 【开源分享】神奇的大数据实时平台框架,让Flink&Spark开发更简单
-
这是一个神奇的框架,让Flink|Spark开发更简单,一站式大数据实时平台!他就是StreamX!什么是StreamX大数据技术如今发展的如火如荼,已经呈现百花齐放欣欣向荣的景象,实时处理流域...
- 聊聊规则引擎的调研及实现全过程
-
摘要本期主要以规则引擎业务实现为例,陈述在陌生业务前如何进行业务深入、调研、技术选型、设计及实现全过程分析,如果你对规则引擎不感冒、也可以从中了解一些抽象实现过程。诉求从硬件采集到的数据提供的形式多种...
- 【开源推荐】Diboot 2.0.5 发布,自动化开发助理
-
一、前言Diboot2.0.5版本已于近日发布,在此次发布中,我们新增了file-starter组件,完善了iam-starter组件,对core核心进行了相关优化,让devtools也支持对IAM...
- 微软推出Copilot Actions,使用人工智能自动执行重复性任务
-
IT之家11月19日消息,微软在今天举办的Ignite大会上宣布了一系列新功能,旨在进一步提升Microsoft365Copilot的智能化水平。其中最引人注目的是Copilot...
- Electron 使用Selenium和WebDriver
-
本节我们来学习如何在Electron下使用Selenium和WebDriver。SeleniumSelenium是ThoughtWorks提供的一个强大的基于浏览器的开源自动化测试工具...
- Quick 'n Easy Web Builder 11.1.0设计和构建功能齐全的网页的工具
-
一个实用而有效的应用程序,能够让您轻松构建、创建和设计个人的HTML网站。Quick'nEasyWebBuilder是一款全面且轻巧的软件,为用户提供了一种简单的方式来创建、编辑...
- 一周热门
- 最近发表
- 标签列表
-
- kubectlsetimage (56)
- mysqlinsertoverwrite (53)
- addcolumn (54)
- helmpackage (54)
- varchar最长多少 (61)
- 类型断言 (53)
- protoc安装 (56)
- jdk20安装教程 (60)
- rpm2cpio (52)
- 控制台打印 (63)
- 401unauthorized (51)
- vuexstore (68)
- druiddatasource (60)
- 企业微信开发文档 (51)
- rendertexture (51)
- speedphp (52)
- gitcommit-am (68)
- bashecho (64)
- str_to_date函数 (58)
- yum下载包及依赖到本地 (72)
- jstree中文api文档 (59)
- mvnw文件 (58)
- rancher安装 (63)
- nginx开机自启 (53)
- .netcore教程 (53)