分类

默认分类

这是你的默认分类,如不需要,删除即可。

静态IP地址
注意:centos8以下如果要使用NetworkManager进行管理需要先关闭network服务,避免两者冲突。8及以上没有network服务,无需关心 NetworkManager方式 [root@localhost ~]# nmcli connection modify ens160 ipv4
2026-09-15
|
2
|
0
|
0
部署docker
清理系统自有docker [root@localhost ~]# sudo yum remove docker \ > docker-client \ > docker-client-latest \ > docker-common \ > docker-latest \ > docker
2026-09-15
|
1
|
0
|
0
VNC配置
安装Xfce桌面和TigerVNC dnf -y groupinstall "Xfce" dnf -y install tigervnc-server dbus-x11 创建VNC用户 useradd -m -s /bin/bash vncuser1 #创建vncuser1,创建家目录、使用登录s
2026-09-15
|
0
|
0
|
0
Ubuntu静态IP地址
NetworkManager方式 user1@user1-VMware20-1:~$ sudo apt-get install network-manager #安装NetworkManager服务 user1@user1-VMware20-1:~$ systemctl status Networ
2026-09-15
|
0
|
0
|
0
SMB服务器
关闭安全相关 systemctl stop firewalld systemctl disable firewalld setenforce 0 vim /etc/sysconfig/selinux 安装SMB服务 yum install -y samba samba-client systemc
2026-09-15
|
0
|
0
|
0
RAAS部署
tar -zxvf RAAS2.0-Free_HUANGSHANr1_20260828_Linux.inst systemctl stop firewalld systemctl disable firewalld setenfore 0 #解压安装包,关闭安全措施 cd /RAAS2.0-Free
2026-09-15
|
0
|
0
|
0
panalog部署
压缩包部署 关闭安全措施 systemctl stop firewalld systemctl disable firewalld setenforce 0 vim /etc/sysconfig/selinux SELINUX=disabled 解压panalog原始文件 tar -zxvf l
2026-09-15
|
0
|
0
|
0
panalog安装问题
Centos8.5安装panabit注意事项: 1、软件使用的是c7依赖库,c8不兼容需重新安装 dnf install -y ncurses-compat-libs libnsl compat-openssl10 #安装系统依赖库
2026-09-15
|
0
|
0
|
0
nginx源码部署
下载nginx二进制源码包 cd /root mkdir -p /root/nginx wget -P /root/nginx https://nginx.org/download/nginx-1.26.3.tar.gz mkdir /nginx tar -zxvf nginx安装包 -C /ngi
2026-09-15
|
0
|
0
|
0
Nginx下载站
安装并启动nginx yum install -y nginx #安装nginx systemctl start nginx systemctl enable nginx #配置自启动nginx服务 创建用于共享的目录 mkdir -p /datadir 修改nginx配置文件 [root@1
2026-09-15
|
0
|
0
|
0
LVM使用
LVM基本组成 ![[Pasted image 20260726162855.png]] 扩容无风险,缩减风险大。非必要不缩容 查看硬盘信息及当前挂载信息 [root@192 ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sr0
2026-09-15
|
0
|
0
|
0
Iptables&firewalld(防火墙)
Linux 防火墙运维实战手册:iptables 与 firewalld 原理、配置与场景实践 1. 防火墙基础认知:Netfilter 框架 无论 iptables 还是 firewalld,其底层内核实现都是 Netfil
2026-09-15
|
0
|
0
|
0
docker内部署nginx
配置镜像加速 [root@localhost docker]# bash <(curl -sSL https://n3.ink/helper) #配置docker镜像加速,以上为购买的毫秒镜像加速 [root@localhost docker]# systemctl daemon-reload
2026-09-15
|
0
|
0
|
0
Docker教程
启动容器 docker run <> –name=<> #指定本容器名称 -d #后台运行本容器并返回容器ID,同时启动守护式容器 -i #以交互模式运行容器,通常与-t同时使用 -t #为容器重新分配一个伪输入中断,通常与-i同时使用 -p <宿主机端口>:<容器端口> #指定端口映射 -P #随
2026-09-15
|
0
|
0
|
0
docker部署nginx下载站
创建nginx容器 [root@c7_1 ~]# docker run -d --name xzz1 -p 9999:80 nginx 50de50bd3cde4db1d7e300f6d221a7948a9d219e0f9621ad9b64ea0ec5a244e1 [root@c7_1 ~]# do
2026-09-15
|
0
|
0
|
0
Apache配置使用
Apache安装 [root@c7_1 ~]# yum install -y httpd #安装apache,即httpd [root@c7_1 ~]# systemctl start httpd [root@c7_1 ~]# systemctl status httpd | grep Active
2026-09-15
|
0
|
0
|
0
DNS服务器部署
安装相关软件 [root@localhost ~]# yum install -y bind bind-utils bind-chroot #bind,dns主软件;bind-utils,dns工具包,用于调试之类的;bind-chroot,dns安全机制,提供chroot隔离运行环境 Cache
2026-09-15
|
0
|
0
|
0
chrony时间同步服务器
安装chrony 版本8以下默认是NTP,版本8及以上都默认使用的是chrony没有NTP 修改chrony配置文件 [root@localhost ~]# rpm -ql chrony | grep conf /etc/chrony.conf /etc/sysconfig/chronyd /usr
2026-09-15
|
0
|
0
|
0

欢迎来到我的博客!