镜像centos yum

下载mysql镜像及安装mysql的docker

1、拉取Ubuntu镜像 docker pull mysql:8.2 //镜像的版本号可以访问dockerhub官方网址查询 效果:拉取了一个版本为8.2的mysql镜像 2、删除docker镜像 docker rmi mysql:8.2 效果:删除版本号为8.2的mysql镜像 3、查看当前存在的 ......
mysql 镜像 docker

Windows修改pip国内镜像源

​ Windows下的pip配置文件路径: C:\Users\用户名\AppData\Roaming\pip\pip.ini 如果pip文件夹不存在,则新建pip文件夹和pip.ini文件 接着,在pip.ini文件中新增以下内容并保存: [global] index-url = https://p ......
镜像 Windows pip

水星 SG108 PRO/1.0 网络端口镜像 使用流程

水星 SG108 PRO/1.0 网络端口镜像 使用流程 购买链接 https://item.jd.com/100001913315.html 水星智能网管交换机客户端应用程序 1.0.3 https://service.mercurycom.com.cn/download-1830.html 如上 ......
水星 端口 镜像 流程 网络

使用nginx搭建creates.io镜像(稀疏索引)

在Rust开发中,经常需要使用Cargo从crates.io下载依赖,而国内几乎没有好用的crates.io镜像,大多都只对crates.io-index和crates.io进行了镜像,而最重要的static.crates.io却没有镜像。迫不得已只能自己搭建。众所周知,Cargo下载依赖,实际分为 ......
索引 镜像 creates nginx io

k8s使用本地私有仓库镜像

本地测试搭建了私有镜像,但是没有配置https,默认是不能远程拉取的。所以直接不让触发远程而是寻找本地,imagePullPolicy: Never apiVersion: apps/v1 kind: Deployment metadata: name: my-go namespace: go-te ......
仓库 镜像 k8s k8 8s

Windows 11 绕过 TPM 方法总结,通用免 TPM 镜像下载 (2023 年 12 月更新)

Windows 11 绕过 TPM 方法总结,通用免 TPM 镜像下载 (2023 年 12 月更新) 在虚拟机、Mac 电脑和 TPM 不符合要求的旧电脑上安装 Windows 11 的通用方法总结 请访问原文链接:https://sysin.org/blog/windows-11-no-tpm/ ......
TPM 镜像 Windows 方法 2023

centos7一键搭建ftp

前言 可参考:https://www.linuxprobe.com/ftp-deployment-authentication.html 因为手动敲代码太慢了,所以我总结了一份脚本,方便快速安装。 准备工作 安装之前的准备工作 yum -y install vsftpd systemctl star ......
centos7 centos ftp

CentOS 适合 Debian Package 还是 RPM Package

CentOS 使用的是 RPM(Red Hat Package Manager)包管理系统,而 Debian 系统使用的是 dpkg(Debian Package)包管理系统。因此,CentOS 适合使用 RPM Package。 如果您在 CentOS 上安装软件,通常会使用 yum 命令(或者在 ......
Package 还是 CentOS Debian RPM

在CentOS Linux系统上安装Docker

安装Docker在CentOS Linux系统上的步骤如下: 更新系统软件包列表: sudo yum update 安装所需的软件包以支持Docker: sudo yum install -y yum-utils device-mapper-persistent-data lvm2 添加Docker ......
CentOS Docker 系统 Linux

centos 7.5 安装 sql server 2022

官方文档地址:https://learn.microsoft.com/zh-cn/sql/linux/quickstart-install-connect-red-hat?view=sql-server-ver16&tabs=rhel8 选择Red Hat 8版本 1.下载 SQL Server 2 ......
centos server 2022 7.5 sql

CentOS7系统升级最新内核

查看系统当前版本 cat /etc/redhat-release 查看系统内核版本 uname -sr 查看内核启动顺序 yum install -y grub2-pc grub2-editenv list # 查看可用内核版本及启动顺序 # CentOS7 系统默认版本为3.10.0 sudo a ......
内核 CentOS7 CentOS 系统

Centos 修改默认SSH端口

1.登录服务器、查看/etc/ssh/sshd_config配置文件,本服务器默认22端口是被注释的。vim /etc/ssh/sshd_config2.查找并更新端口号: 在配置文件中找到 Port22行,将其更改为新的端口号,例如 Port 5000 3.保存并退出:按ESC 键,存并退出文件4 ......
端口 Centos SSH

【Linux】CentOS防火墙操作:开启端口、开启、关闭、配置

🔶 基本使用启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl disable firewalld开机启用 : systemctl ena ......
端口 防火墙 CentOS Linux

CentOS openssh 升级教程

openssh 下载地址 https://www.openssh.com/openbsd.html OpenSSH 9.6: December 18, 2023 https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/openssh-9.6.tar.gz # cd / ......
openssh 教程 CentOS

从系统镜像获取image文件, magisk刷机流程和ssh模块安装

1 adb shell 2 adb shell 3 adb pull /sdcard/patcheda.img 4 adb reboot bootloader 5 fastboot boot .\patcheda.img 6 adb reboot bootloader 7 fastboot boot ......
模块 镜像 流程 文件 magisk

Centos7.4 安装jdk1.8

1. 下载镜像 docker pull primetoninc/jdk:1.8 2. 查看镜像 docker images 3. 启动容器 docker run -it --name jdk1.8 -d primetoninc/jdk:1.8 4. 查看容器 docker ps 5. 进入jdk安装 ......
Centos7 Centos jdk1 jdk

centos防火墙常用命令

systemctl start firewalld;#启动 systemctl stop firewalld;#停止 systemctl status firewalld;#查看状态 systemctl disable firewalld;#开机禁用 systemctl enable firewal ......
防火墙 命令 常用 centos

centos7编译安装php8

参考推荐:https://blog.csdn.net/zzz1502/article/details/120157436 首先安装需要的依赖和第三方库 # yum install -y --setopt=protected_multilib=false gcGc gcc-c++ make cmake ......
centos7 centos php8 php

centos7安装nginx

首先安装nginx所需要的第三方库和编译工具 # yum install -y gcc gcc-c++ autoconf automake make # yum install zlib zlib-devel openssl openssl-devel pcre pcre-devel wget ht ......
centos7 centos nginx

centos7安装postgresql15、postgis3.3

直接使用yum安装的时候,都会提示缺少某些包无法安装。我这里把缺少的包的安装方式列一下。 yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest ......
postgresql postgis3 centos7 postgis centos

Centos删除乱码文件

1、ls -ila 262384 drwxrwxrwx 11 root root 4096 Dec 23 21:23 .262381 drwxrwxrwx 9 root root 4096 Oct 11 2022 ..421160 -rwxr-xr-x 2 root root 4096 Dec 5 ......
乱码 文件 Centos

centos6和7的模板机制作

centos6(安装操作系统直接最小化安装就行) 1.进入网卡配置文件将网卡的MAC和UUID删除(网卡需要开机自启的话,只要把ONBOOT=no改为ONBOOT=yes就行) 2.挂在光盘,临时挂在 3.制作yum源 yum clean all #清楚yum源的缓存 yum makecache # ......
机制 模板 centos6 centos

Centos 搭建

准备 关闭防火墙和SElinux systemctl stop firewalld && setenforce 0 DNS服务器 IP 为 : 192.168.91.168 解析的域名为:xmu.edu.cn 安装 安装DNS yum install -y bind bind-utils 开启 DN ......
Centos

利用iso镜像制作并使用本地yum源 & 时钟同步

一、利用iso镜像制作并使用本地yum源步骤一:1、查看操作系统发行版信息:cat /etc/redhat-release2、查看操作系统版本信息cat /proc/version3、查看操作系统内核等信息:uname -a步骤二:获取步骤一中对应系统版本的iso镜像步骤三:系统内执行df -h命令 ......
时钟 镜像 iso amp yum

centos7_mysql_删除

CentOS 7 中的 MySQL 是使用以下命令进行安装的: sudo yum install mysql-server 以下是如何完全卸载 MySQL 的步骤: 步骤 1 :停止 MySQL 服务 sudo systemctl stop mysqld.service 步骤 2 :禁用 MySQL ......
centos7_mysql centos7 centos mysql

淘宝镜像出现问题. docker.安装运行。

由于centos8 在2022年停止服务,后继版本为8-steam。在使用阿里云的 centos8 的 yum 时报错。 解决方案 1、进入配置文件内,删除所有的.repo文件(也可以备份) 1 2 3 4 5 #进入配置文件夹 cd /etc/yum.repos.d/ #删除旧的配置文件 rm * ......
镜像 docker 问题

k8s pod从私有仓库拉取镜像凭证配置

方案一: 通过Docker配置文件创建secret # 配置.docker/config.json文件,包含了与 Docker Hub 或其他私有仓库进行身份验证所需的凭据信息。 [root@mac-25 ~]# cat ~/.docker/config.json { "auths": { "reg ......
凭证 仓库 镜像 k8s pod

centos下Iptables的安装(离线)

背景: 要给公司服务器屏蔽端口,然后开服务IP白名单,修改完 iptables 文件后,想执行指令生效,发生指令不存在 vim /etc/sysconfig/iptables -A INPUT -s 10.xx.xx.xx/24 -p tcp -m tcp --dport 8888 -j ACCEP ......
Iptables centos

CentOS 7 安装

CentOS 7 安装 ‍ 1、前期准备 1)系统镜像下载: CentOS 官方下载地址: https://www.centos.org/download/ Centos国内下载源: 腾讯:https://mirrors.cloud.tencent.com/centos/7/isos/x86_64/ ......
CentOS

centos安装pg数据库

1.下载yum源 yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2.安装libzstd 否则安装数据库报错Req ......
数据库 数据 centos
共3400篇  :6/114页 首页上一页6下一页尾页