Category Archives: CentOS 7

CentOS ,KVM 安装 Win10

CentOS ,KVM 安装 Win10 12https://www.jianshu.com/p/defd29c8825e https://zls.bndstone.com/496.html 1. 新建硬盘 12qemu-img create -f qcow2 /home/images/kvm31.img 120G               // /home/images/ 位置建个20G的硬盘,格式是qcow2 qemu-img info /home/images/kvm31.img                              //查看刚建的硬盘 2. 要安装win10需要下载virtio驱动 vista之后的64bit版本windows的驱动需要数字签名 可以下载fedora提供的数字签名版iso文件 1https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.126-2/virtio-win-0.1.126.iso 3. 开始安装 123456789101112virt-install \     –name=kvm31 \ […]

CentOS 系统上,让Nginx 配置 Let’s Encrypt 的SSL证书

CentOS 系统上,让Nginx 配置 Let’s Encrypt 的SSL证书 snap 安装的是 certbot 2.11.0 1https://www.linode.com/docs/guides/enabling-https-using-certbot-with-nginx-on-centos-7/ 1-1. 安装 EPEL 12yum install -y epel-release yum upgrade -y 1-2. 安装 snapd 1yum install -y snapd 1-3. 开机自启动 snapd.socket 12systemctl enable –now snapd.socket systemctl start snapd.socket 1-4. 建立软链接 1ln -s /var/lib/snapd/snap /snap 2-1. 安装 Certbot 1snap install –classic certbot 会出现如下报错 1error: too early […]

成功解决centos7虚拟机开机后提示ABRT has detected 1 problem(s)

成功解决centos7虚拟机开机后提示ABRT has detected 1 problem(s) 1https://developer.aliyun.com/article/1148900 通过以下命令查看如下报错 1abrt-cli list 返回如下信息: 1234567891011121314151617181920id 3b1a4415cfb430627904373b32fd7e1787a8144b reason:         gnome-shell killed by SIGSEGV time:           Thu 04 Jul 2024 09:39:30 PM EDT cmdline:        gnome-shell –mode=initial-setup package:        gnome-shell-3.28.3-34.el7_9 uid:            991 (gnome-initial-setup) count:   […]

J4125 I225-V 网口无法在centos7.9上被识别原因

J4125 I225-V 网口无法在centos7.9上被识别原因 1https://cloud.tencent.com/developer/ask/sof/116354863 备注: I225系列在CentOS 7.9中不受支持,并要求它们的igc驱动程序可供CentOS下载以重新编译 以下页面可以查到 CentOS 8.1,CentOS 8.2,CentOS 8.3 支持I225-v驱动 CentOS 7.9 以及之前的 不支持I225-v驱动 1https://www.intel.com/content/www/us/en/support/articles/000055236/ethernet-products/gigabit-ethernet-controllers-up-to-2-5gbe.html 我刚刚在桌面电脑上安装了Centos7,因为我需要这个特定的操作系统来兼容我正在使用的计算机辅助设计软件。安装工作进行得很顺利,但我的网络不工作 1ifconfig -a 输出如下信息: 1234567891011121314151617181920212223242526272829303132enp0s21f0u2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500         inet 192.168.50.81  netmask 255.255.255.0  broadcast 192.168.50.255         inet6 fe80::91b3:7674:3347:c08c  prefixlen 64  scopeid 0x20<link>         ether 00:0e:c6:35:7e:cf  txqueuelen 1000  (Ethernet) […]

『精品』解决 CentOS 7.9 报错 “Cannot find a valid baseurl for repo: base/7/x86_64”

解决 CentOS 7.9 报错 “Cannot find a valid baseurl for repo: base/7/x86_64” 1https://blog.csdn.net/weixin_54626591/article/details/138492868 机子可以 ping www.baidu.com 但出现如上错误.是因为yum源的问题.换阿里云的yun源. 换yum源需要用到wget,但大部份centos默认没有wget,又得安装wget,但同样会提示 1Cannot find a valid baseurl for repo: base/7/x86_64 情况1,默认有wget的服务器,直接参考换源链接即可 1mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup 1wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 情况2,默认没有wget的服务器 修改 CentOS-Base.repo 配置 1vi /etc/yum.repos.d/CentOS-Base.repo 换成如下阿里云源 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950[base] name=CentOS-$releasever – Base – mirrors.aliyun.com failovermethod=priority baseurl=http://mirrors.aliyun.com/centos/$releasever/os/$basearch/         http://mirrors.aliyuncs.com/centos/$releasever/os/$basearch/   […]

No supported authentication methods available (server sent: publickey)错误解决

No supported authentication methods available (server sent: publickey)错误解决 1https://blog.csdn.net/cl2227619761/article/details/109840203 解决办法: 1vi /etc/ssh/sshd_config 12PermitRootLogin yes           //这边no要改成yes PasswordAuthentication yes    //这边no要改成yes 1systemctl restart sshd.service

阿里云挂载硬盘,分区及挂载

阿里云挂载硬盘,分区及挂载 12扩容数据盘: https://help.aliyun.com/document_detail/428234.html?spm=5176.10173289.0.0.7bbe2e77UCNHgv#resizedisk 挂载数据盘: https://help.aliyun.com/document_detail/428233.html?spm=5176.10173289.0.0.477b2e77UT5Ufh#resizedisk 1. 关闭服务器 2. 购买数据盘 3. 以下可以看出买完就已经挂载了. 4. 挂载数据盘后,必须创建分区和文件系统才能使数据盘变为可用。 4-1. 分区格式化Linux服务器的数据盘 1https://help.aliyun.com/document_detail/428468.htm?spm=a2c4g.11186623.0.0.484eadb3TQQCca#task-2213161 4-1-1. 安装 parted , e2fsprogs 12yum install -y parted yum install -y e2fsprogs 4-1-2. 查看服务器内的数据盘信息 1fdisk -l 查看到的数据盘信息如下图所示 说明 轻量应用服务器仅能挂载一块数据盘,该盘的设备名称默认为/dev/vdb 4-1-3. 使用Parted工具为数据盘进行分区 4-1-3-1. 运行以下命令开始分区 1parted /dev/vdb 4-1-3-2. 运行以下命令,设置GPT分区。 1mklabel gpt 系统将提示您转换分区格式将导致磁盘数据丢失。本文介绍如何处理一块全新的数据盘,因此输入Yes即可。 4-1-3-3. 运行以下命令,划分一个主分区,并设置分区的开始位置和结束位置 1mkpart primary 1 100% 4-1-3-4. 运行以下命令,检查分区是否对齐。 […]

Nginx配置upstream并且实现负载均衡

Nginx配置upstream并且实现负载均衡 12https://www.cnblogs.com/muhy/p/10521896.html https://www.coder4.com/archives/6914 1. docker 下分别建了两台容器 12centos73  —>  docker exec -it centos73 /bin/bash   —>      172.17.0.3    —> 8.217.41.220:8072  [bb3d40707ed7] centos74  —>  docker exec -it centos74 /bin/bash   —>      172.17.0.4    —> 8.217.41.220:8082  [d847cb82dd19] 2. 两台机器分别安装了Nginx和Tomcat ,[两台都已经安装了lnmp.所以这次两台都只需安装tomcat] 1234yum install -y tomcat                  //安装tomcat服务 systemctl […]

Docker进入容器报bash: warning: setlocale: LC_CTYP: cannot change locale (en_US.UTF-8):No such file or dir

Docker进入容器报bash: warning: setlocale: LC_CTYP: cannot change locale (en_US.UTF-8):No such file or dir 实时报错 12345bash: warning: setlocale: LC_CTYPE: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: LC_COLLATE: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: LC_MESSAGES: cannot change locale (en_US.UTF-8): No such file or directory bash: warning: setlocale: […]