27 ssh+scp+nfs+yum进阶
ssh远程管理
ssh是一种安全通道协议,用来实现字符界面的远程登录。远程复制,远程文本传输。
ssh对通信双方的数据进行了加密。
用户名和密码登录
密钥对认证方式(可以实现免密登录)
ssh 22 网络层 传输层
数据传输的过程中是加密的
数据在传输过程中是压缩的
一、ssh远程登录–密码认证
1、ssh root@192.168.168.30 ##远程登录默认端口22
[root@localhost ~]# ssh root@192.168.168.30
The authenticity of host '192.168.168.30 (192.168.168.30)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.168.30' (ECDSA) to the list of known hosts.
root@192.168.168.30's password:
Last login: Thu Jun 6 11:45:42 2024 from 192.168.168.11
2、ssh -p 222 root@192.168.168.30 ##远程登录指定端口222
[root@test2 ~]# ssh -p 222 root@192.168.168.30
ssh: connect to host 192.168.168.30 port 222: No route to host
[root@test2 ~]# ssh -p 222 root@192.168.168.10
The authenticity of host '[192.168.168.10]:222 ([192.168.168.10]:222)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[192.168.168.10]:222' (ECDSA) to the list of known hosts.
root@192.168.168.10's password:
Last login: Thu Jun 6 11:42:01 2024 from 192.168.168.11
[root@localhost ~]#
ssh分为服务端和客户端
服务端:Openssh
客户端:xshell moba
sshd 应用名称
22
ssh_config 针对客户端的配置文件
sshd_config 服务端的配置
都是配置文件,作用不同
监听地址 就是对外提供服务的地址。
端口号修改
1、vim /etc/ssh/sshd_config ##修改端口号
二、scp远程复制:把目标主机的文件复制到本机。
1、scp root@目标主机ip:/opt/xy102 /opt
把192.168.168.20的/opt目录下的xy102复制到本机的opt目录下
[root@test2 ~]# cd /opt
[root@test2 opt]# touch xy102
[root@test2 opt]# echo 456 > xy102
[root@test1 ssh]# scp root@192.168.168.20:/opt/xy102 /opt
The authenticity of host '192.168.168.20 (192.168.168.20)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.168.20' (ECDSA) to the list of known hosts.
root@192.168.168.20's password:
xy102 100% 4 4.5KB/s 00:00
[root@test1 ssh]# cd /opt
[root@test1 opt]# ls
login.sh nginx-1.22.0 nginx-1.22.0.tar.gz xy102
[root@test1 opt]# cat xy102
456
2、复制目录: scp -r root@192.168.168.20:/opt/test1 /opt
[root@test2 opt]# mkdir test1
[root@test2 opt]# cd test1
[root@test2 test1]# touch 123
[root@test2 test1]# echo 123 > 123
[root@test1 opt]# scp -r root@192.168.168.20:/opt/test1 /opt
root@192.168.168.20's password:
123 100% 4 4.8KB/s 00:00
[root@test1 opt]# cd test1
[root@test1 test1]# ls
123
[root@test1 test1]# cat 123
123
3、复制不同端口目录: scp -rP 复制目录的端口号 root@192.168.168.20:/opt/test1 /opt
[root@test3 test1]# systemctl stop firewalld
[root@test3 test1]# setenforce 0
[root@test3 test1]# vim sshd_config
[root@test3 test1]# cd /etc
[root@test3 etc]# cd ssh
[root@test3 ssh]# ls
moduli ssh_host_ecdsa_key ssh_host_ed25519_key.pub
ssh_config ssh_host_ecdsa_key.pub ssh_host_rsa_key
sshd_config ssh_host_ed25519_key ssh_host_rsa_key.pub
[root@test3 ssh]# vim sshd_config
[root@test3 ssh]# systemctl restart sshd
[root@test3 ssh]#
[root@test1 test1]# scp -rP 222 root@192.168.168.30:/opt/test1 /opt/
The authenticity of host '[192.168.168.30]:222 ([192.168.168.30]:222)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[192.168.168.30]:222' (ECDSA) to the list of known hosts.
root@192.168.168.30's password:
123
[root@test1 test1]# ssh -p 22 root@192.168.168.30
ssh: connect to host 192.168.168.30 port 22: Connection refused
[root@test1 test1]# ssh -p 222 root@192.168.168.30
root@192.168.168.30's password:
Last login: Thu Jun 6 10:08:11 2024 from 192.168.168.11
[root@test3 ~]#
ssh -p 10022 root@192.168.233.10
scp root@192.168.233.10:/opt/123 /optscp -r 复制目录
scp -rP 指定端口复制目录scp -P指定端口复制文件
三、sftp 远程文件传输协议
Openssh包含3个功能
远程连接
远程复制
文件传输
sftp是加密的文件传输协议,传输效率比ftp低,但是更安全,语法和ftp是一样的。
1、sftp root@192.168.168.30 ##远程登录默认端口
[root@test2 ~]# sftp root@192.168.168.30
The authenticity of host '192.168.168.30 (192.168.168.30)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.168.30' (ECDSA) to the list of known hosts.
root@192.168.168.30's password:
Connected to 192.168.168.30.
sftp> cd /opt
sftp> ls
login.sh nginx-1.22.0 nginx-1.22.0.tar.gz
[root@test2 opt]# cat 123 ##test2的文件通过sftp远程连接上传文件
123.
[root@test2 opt]# sftp root@192.168.168.30
root@192.168.168.30's password:
Connected to 192.168.168.30.
sftp> cd /opt
sftp> ls
login.sh nginx-1.22.0 nginx-1.22.0.tar.gz
sftp> put 123
Uploading 123 to /opt/123
123 100% 5 7.9KB/s 00:00 [root@test3 opt]# ls ##到test3查看文件在opt目录下
123 login.sh nginx-1.22.0 nginx-1.22.0.tar.gzsftp> get 456 #下载在opt目录下
Fetching /opt/456 to 456
/opt/456 100% 4 3.9KB/s 00:00
[root@test2 opt]# ls
123 456 login.sh nginx-1.22.0 nginx-1.22.0.tar.gz
[root@test2 opt]# cat 456
456
2、sftp root@192.168.168.30 ##远程登录指定端口
[root@test2 test1]# sftp -P 222 root@192.168.168.30
The authenticity of host '[192.168.168.30]:222 ([192.168.168.30]:222)' can't be established.
ECDSA key fingerprint is SHA256:yaufdRU2oi//z+PpV7wdWdPdTdEZT2SrypnKy30CsdY.
ECDSA key fingerprint is MD5:85:b0:7c:f3:f0:3a:95:f0:25:19:47:f4:90:46:bc:f5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[192.168.168.30]:222' (ECDSA) to the list of known hosts.
root@192.168.168.30's password:
Connected to 192.168.168.30.
sftp> cd /opt
sftp> get -r test1
Fetching /opt/test1/ to test1
Retrieving /opt/test1
/opt/test1/123 100% 4 2.5KB/s 00:00
sftp> cd test1
sftp> ls
123
sftp> get 123
Fetching /opt/test1/123 to 123
/opt/test1/123
小结:
put上传,cd进入哪个文件夹中,就是上传到哪个文件夹中
get下载,在哪个文件夹远程连接,就是下载在哪个文件夹中
put -r 文件夹,上传文件夹
get -r 文件夹,下载文件夹
sftp不同scp的是,scp -p,而sftp -P。
四、ssh密钥对认证(免密登录)
密钥:密钥是一种参数,把明文转换成密文,转换成的密文是一种算法声场的参数。
密钥的形式分为两种:对称密钥,非对称密钥
ssh 非对称密钥
ssh的加密方式:
RSA
ECDSA
DSA
加密的算法,可以指定。
1、密钥登录
1、指定加密方式:[root@test1 opt]# ssh-keygen -t ecdsa
[root@test1 opt]# ssh-keygen -t ecdsa
Generating public/private ecdsa key pair.
Enter file in which to save the key (/root/.ssh/id_ecdsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_ecdsa.
Your public key has been saved in /root/.ssh/id_ecdsa.pub.
The key fingerprint is:
SHA256:dfTfOfTjTFsGT+cpmQGmBlUhXziPmU5N+AuNHhB2EPQ root@test1
The key's randomart image is:
+---[ECDSA 256]---+
| .oO=*=. |
| o.B=oo |
| ooE&.o.o|
| .. X ==**|
| S + o+.*O|
| o .=.=|
| + |
| |
| |
+----[SHA256]-----+
id_ecdsa 私钥文件
id ecdsa.pub 公钥文件
2、进入/root/.ssh目录下
[root@test1 opt]# cd /root/.ssh
[root@test1 .ssh]# ls
id_ecdsa id_ecdsa.pub known_hosts
[root@test1 .ssh]#
3、把test1的公钥文件传输到test3里
[root@test1 opt]# cd /root/.ssh
[root@test1 .ssh]# ls
id_ecdsa id_ecdsa.pub known_hosts
[root@test1 .ssh]# ssh-copy-id -i id_ecdsa.pub root@192.168.168.30 ##默认不用加端口
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "id_ecdsa.pub"
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@192.168.168.30's password: Number of key(s) added: 1Now try logging into the machine, with: "ssh 'root@192.168.168.30'"
and check to make sure that only the key(s) you wanted were added.
4、生成ssh环境
[root@test1 .ssh]# ssh-agent bash
5、直接密钥免密登录
[root@test1 .ssh]# ssh root@192.168.168.30
Last login: Thu Jun 6 14:54:00 2024 from 192.168.168.10
[root@test3 ~]#
免密登录的过程:
ssh-keygen -t ecdsa #执行加密的算法
ssh -copy -id -i id ecdsa.pub (-p 端口)
免密登录的过程:
ssh-keygen-tecdas #执行加密的算法
ssh-copy-id -iid ecdsa.pub (-p 10022) root@192.168.233.10
#把公钥文件发送到对方主机
ssh-agent bash
把密钥对进行缓存,可以自动提供身份验证,实现免密登录
ssh-add ##前面输入密码的话,需要在这输入密码
2、工具登录
[root@test3 ~]# cd .ssh
[root@test3 .ssh]# ls
authorized_keys
[root@test3 .ssh]# rm -rf *
[root@test3 .ssh]# rz -E
rz waiting to receive.
[root@test3 .ssh]# ls
id_rsa_2048.pub
[root@test3 .ssh]# cat id_rsa_2048.pub >> authorized_keys
[root@test3 .ssh]# ls
authorized_keys id_rsa_2048.pub
[root@test3 .ssh]# chmod 600 authorized_keys
到test1
[root@test1 ~]# cd .ssh/
[root@test1 .ssh]# ls
id_ecdsa id_ecdsa.pub known_hosts
[root@test1 .ssh]# rm -rf *
[root@test1 .ssh]# ls
[root@test1 .ssh]# rz -E
rz waiting to receive.
[root@test1 .ssh]#
[root@test1 .ssh]# cat id_rsa_2048.pub >> authorized_keys
[root@test1 .ssh]# chmod 600 authorized_keys
[root@test1 .ssh]# ls
authorized_keys id_rsa_2048.pub
五、NFS共享存储服务
network file system 在计算机网络中共享文件系统的协议
计算机之间可以通过网络共享目录和文件
rpcbind:远程共享调用
nfs:共享服务
配置nfs是,要先启动调用rpcbind,再开启nfs
rpcbind端口号111
nfs 端口2049(查询不到)
1、提供网段共享文件夹服务
1、安装软件
[root@test1 opt]# yum -y install nfs-utils rpcbind
2、创建共享目录
[root@test1 opt]# mkdir gongxiang
[root@test1 opt]# chmod 777 gongxiang
[root@test1 opt]# ls
gongxiang login.sh nginx-1.22.0 nginx-1.22.0.tar.gz
3、[root@test1 opt]# vim /etc/exports
写入权限和网段使用
/opt/gongxiang 192.168.168.0/24(rw,sync,no_root_squash)
/opt/gongxiang 192.168.168.0/24(rw,sync,no_root_squash)[root@test1 opt]# vim /etc/exports
[root@test1 opt]# systemctl restart rpcbind
[root@test1 opt]# systemctl restart nfs
[root@test1 opt]# showmount -e
Export list for test1:
/opt/gongxiang 192.168.168.0/24
4、到其他主机安装软件,重启,显示共享软件
[root@test3 ~]# yum -y install rpcbind nfs[root@test3 ~]# systemctl restart rpcbind
[root@test3 ~]# systemctl restart nfs
[root@test3 opt]# showmount -e 192.168.168.10
Export list for 192.168.168.10:
/opt/gongxiang 192.168.168.0/24
5、创建文件夹,临时挂载
mkdir test1mount 192.168.168.10:/opt/gongxiang /opt/test1
永久挂载
vim /etc/fstab
192.168.168.10:/opt/gongxiang /opt/test1 nfs defaults, netdev 0 0
netdev:有网络目录才能挂载成功。
/opt/gongxiang 声明本机的共享目录
192.168.233.0/24声明网段,谁可以访问本机的共享目录。(声明指定的主机可以访问共享目录 作业)
(rw,sync,no root squash)权限,共享目录的使用者的权限
“rw”表示允许读写,“ro” 表示为只读。
sync 同步写入到硬盘中(共享用户的操作。)
no_root_squash 如果客户机以root用户访问共享目录,就给你和本机的root用户一样的权限。
root_squash 客户机root登录共享目录,就会把你变成匿名用户。
all_squash 所有访问用户都映射为匿名用户或用户组
async 将数据先保存在内存缓冲区中,必要时才写入磁盘。
subtree_check(默认) 若输出目录是一个子目录,则nfs服务器将检查其父目录的权限。
no_subtree_check 即使输出目录是一个子目录,nfs服务器也不检查其父目录的权限,这样可以提高效率。
主机:
vim /etc/exports
/opt/gongxiang 192.168.168.0/24(rw,sync,no root squash)
systemctl restart rpcbind
systemctl restart nfs
showmount -e
查看本机共享出去的目录
客户机
安装rpcbind和nfs
systemctl restart rpcbind
systemctl restart nfs
showmount -e 192.168.168.10
查看目标主机暴露出的共享目录
挂载
临时
mount 192.168.233.10:/opt/gongxiang /opt/test1
永久挂载
vim /etc/fstab
192.168.168.10:/opt/gongxiang /opt/test1 nfs defaults, netdev 0 0
netdev:有网络目录才能挂载成功。
2、指定的主机可以访问共享目录
1、安装软件nfs-utils rpcbind
[root@test1 opt]# yum -y install nfs-utils rpcbind
2、创建共享文件夹gongxiang,修改权限
mkdir /opt/gongxiang
chmod 777 gongxiang
3、进入共享配置文件,写入192.168.168.20可以访问共享目录
vim /etc/exports
/opt/opt 192.168.168.20(rw,sync,no_root_squash)
4、重启服务rpcbind、nfs,展示共享目录
systemctl restart rpcbind
systemctl restart nfs
showmount -e
5、到指定主机192.168.168.20,安装软件,并重启服务
[root@test3 opt]# yum -y install nfs-utils rpcbind
systemctl restart rpcbind
systemctl restart nfs
showmount -e 192.168.168.10
6、创建目录ab,挂载
7、用其他用户挂载不上
8、若是网段192.168.168.0/24,可以挂载,并写入文件
|
六、yum的进阶
1、yum的主要作用:
依赖关系
自动安装
自动升级
centos7 yum
centos 8 dnf (yum的升级版)
dnf -y install
2、Ubuntu
apt
apt -y install 软件=yum -y install 软件
重启网卡命令:netplan apply
安装的包不一样
yum的包都是.rpm
Ubuntu的包都是.deb
3、yum日志文件和缓存
日志文件和缓存/var/log/yum.log
缓存:
下载在/etc/yum.conf
安装日志/var/log/yum.conf
访问目录在/var/www/html
访问192.168.168.10展开的是默认的是/var/www/html
访问192.168.168.10/centos 7的是/usr/share///idex.html
网页版的形式做一个yum源
curl页面测试工具,后面跟上ip地址或者域名可以访问这个页面(测试web软件故障是否正常)
vsftpd
http
混合
1、[root@test1 ~]# yum -y remove nginx
2、/var/cache/yum/x86_64/7/base/packages ##日志文件
3、
[root@test1 ~]# cd /etc/yum[root@test1 yum]# vim /etc/yum
yum/ yum.conf yum.repos.d/
[root@test1 yum]# vim /etc/yum.confcachedir=/var/cache/yum/$basearch/$releasever
keepcache=0 ##不保存安装包
4、安装软件日志。
[root@test1 yum]# tail /var/log/yum.log
Jun 06 17:33:46 Erased: libvirt-daemon-driver-storage-core-4.5.0-10.el7.x86_64
Jun 06 17:33:46 Erased: 1:nfs-utils-1.3.0-0.68.el7.2.x86_64
Jun 06 17:33:46 Erased: 1:quota-4.01-17.el7.x86_64
Jun 06 17:33:47 Erased: rpcbind-0.2.0-49.el7.x86_64
Jun 06 17:34:57 Installed: rpcbind-0.2.0-49.el7.x86_64
Jun 06 17:34:57 Updated: 1:quota-nls-4.01-19.el7.noarch
Jun 06 17:34:57 Installed: 1:quota-4.01-19.el7.x86_64
Jun 06 17:34:57 Installed: 1:nfs-utils-1.3.0-0.68.el7.2.x86_64
Jun 06 19:45:44 Erased: 1:nginx-1.20.1-10.el7.x86_64
Jun 06 19:45:55 Installed: 1:nginx-1.20.1-10.el7.x86_64
4、安装httpd
1、[root@test1 ~]# yum -y install httpd
2、
[root@test1 ~]# systemctl stop nginx
[root@test1 ~]# systemctl restart httpd
[root@test1 ~]# vim /etc/ssh/sshd_config
[root@test1 ~]# systemctl restart sshd
[root@test1 ~]# cd /var/www/html
[root@test1 html]# pwd
/var/www/html
3、此处注意有可能存在永久挂载,需要解除挂载
[root@test1 html]# mount /dev/cdrom /var/www/html/
mount: /dev/sr0 写保护,将以只读方式挂载
4、[root@test1 yum.repos.d]# vim httpd.repo
[httpd]
name=123
baseurl=http://192.168.168.10/centos7
gpgcheck=0
5、
[root@test1 yum.repos.d]# cd /var/www/html/
[root@test1 html]# ls[root@test1 html]# cd /
[root@test1 /]# umount /dev/cdrom
[root@test1 /]# cd /var/www/html/
[root@test1 html]# ls
[root@test1 html]# mkdir centos7
[root@test1 html]# ls
centos7
[root@test1 html]# mount /dev/cdrom /var/www/html/centos7/
6、
[root@test1 html]# yum clean all && yum makecache
7、
8、
访问192.168.168.10
9、[root@test1 html]# vim index.html
[root@test1 html]#
curl页面测试工具
1、[root@test2 ~]# curl www.baidu.com
2、
[root@test2 ~]# curl 192.168.168.10
this is apache
[root@test2 ~]# curl 192.168.168.10/centos7/
Index of /centos7
Name | Last modified | Size | Description | |
---|---|---|---|---|
| ||||
Parent Directory | - | |||
CentOS_BuildTag | 2018-11-26 00:01 | 14 | ||
EFI/ | 2018-11-26 00:20 | - | ||
EULA | 2017-08-30 22:33 | 227 | ||
GPL | 2015-12-10 06:35 | 18K | ||
LiveOS/ | 2018-11-26 00:20 | - | ||
Packages/ | 2018-11-26 07:52 | - | ||
RPM-GPG-KEY-CentOS-7 | 2015-12-10 06:35 | 1.7K | ||
RPM-GPG-KEY-CentOS-T..> | 2015-12-10 06:35 | 1.7K | ||
TRANS.TBL | 2018-11-26 07:54 | 2.8K | ||
images/ | 2018-11-26 00:21 | - | ||
isolinux/ | 2018-11-26 00:20 | - | ||
repodata/ | 2018-11-26 07:53 | - | ||
|
另外一个
[root@test2 ~]# cd /etc/yum.repos.d/
[root@test2 yum.repos.d]# ls
Centos-7.repo CentOS-Debuginfo.repo CentOS-Vault.repo
Centos-7.repo.1 CentOS-fasttrack.repo epel.repo
CentOS-Base.repo CentOS-Media.repo epel-testing.repo
CentOS-CR.repo CentOS-Sources.repo local.repo
[root@test2 yum.repos.d]# rm -rf *
[root@test2 yum.repos.d]# ls
[root@test2 yum.repos.d]# [root@test2 yum.repos.d]# vim local.repo[local]
name=123
baseurl=http://192.168.168.10/centos7
gpgcheck=0[root@test2 yum.repos.d]# yum clean all && yum makecache
5、vsftpd
[root@test3 ~]# yum -y install vsftpd
[root@test3 ~]# cd /var/ftp
[root@test3 ftp]# ls
pub
[root@test3 ftp]# mkdir centos7
[root@test3 ftp]# mount /dev/cdrom /var/ftp/centos7/
mount: /dev/sr0 写保护,将以只读方式挂载
[root@test3 ftp]# cd /etc/yum.repos.d/
[root@test3 yum.repos.d]# rm -rf *
[root@test3 yum.repos.d]# ls
[root@test3 yum.repos.d]# mount /dev/cdrom /var/ftp/centos7/
注意永久挂载
[root@test3 yum.repos.d]# systemctl restart vsftpd
[root@test3 yum.repos.d]# vim local.repo
[local]
name=123
baseurl=ftp://192.168.168.30/centos7
gpgcheck=0
关闭防火墙、安全机制
yum clean all && yum makecache
6、yum混合源
cd /etc/yum.repo.d
vim local.repo
[local]
name=123
baseurl=http://192.168.168.10/centos7
gpgcheck=0
priority=2
#指定优先级,数字越大,优先级越高
[net]
name=456
baseurl=https://mirrors.aliyun.com/epel/7Server/x86_64/
gpgcheck=0
priority=1
[root@test2 yum.repos.d]# yum clean all && yum makecache
.本地安装很快
cd /var/ftp
[root@test3 ftp]# ls
pub
[root@test3 ftp]# mkdir centos7
[root@test3 ftp]# mount /dev/cdrom /var/ftp/centos7/
mount: /dev/sr0 写保护,将以只读方式挂载
[root@test3 ftp]# cd /etc/yum.repos.d/
[root@test3 yum.repos.d]# rm -rf *
[root@test3 yum.repos.d]# ls
[root@test3 yum.repos.d]# mount /dev/cdrom /var/ftp/centos7/
注意永久挂载
[root@test3 yum.repos.d]# systemctl restart vsftpd
[root@test3 yum.repos.d]# vim local.repo
[local]
name=123
baseurl=ftp://192.168.168.30/centos7
gpgcheck=0
关闭防火墙、安全机制
yum clean all && yum makecache
6、yum混合源
cd /etc/yum.repo.d
vim local.repo
[local]
name=123
baseurl=http://192.168.168.10/centos7
gpgcheck=0
priority=2
#指定优先级,数字越大,优先级越高
[net]
name=456
baseurl=https://mirrors.aliyun.com/epel/7Server/x86_64/
gpgcheck=0
priority=1
[root@test2 yum.repos.d]# yum clean all && yum makecache
.本地安装很快
相关文章:
27 ssh+scp+nfs+yum进阶
ssh远程管理 ssh是一种安全通道协议,用来实现字符界面的远程登录。远程复制,远程文本传输。 ssh对通信双方的数据进行了加密。 用户名和密码登录 密钥对认证方式(可以实现免密登录) ssh 22 网络层 传输层 数据传输的过程中是…...
LabVIEW液压伺服压力机控制系统与控制频率选择
液压伺服压力机的控制频率是一个重要的参数,它直接影响系统的响应速度、稳定性和控制精度。具体选择的控制频率取决于多种因素,包括系统的动态特性、控制目标、硬件性能以及应用场景。以下是一些常见的指导原则和考量因素: 常见的控制频率范…...
阿里云(域名解析) certbot 证书配置
1、安装 certbot ubuntu 系统: sudo apt install certbot 2、申请certbot 域名证书,如申请二级域名aa.example.com 的ssl证书,同时需要让 bb.aa.example.com 也可以使用此证书 1、命令:sudo certbot certonly -d “域名” -d “…...
Web LLM 攻击技术
概述 在ChatGPT问世以来,我也尝试挖掘过ChatGPT的漏洞,不过仅仅发现过一些小问题:无法显示xml的bug和错误信息泄露,虽然也挖到过一些开源LLM的漏洞,比如前段时间发现的Jan的漏洞,但是不得不说传统漏洞越来…...
Java等待异步线程池跑完再执行指定方法的三种方式(condition、CountDownLatch、CyclicBarrier)
Java等待异步线程池跑完再执行指定方法的三种方式(condition、CountDownLatch、CyclicBarrier) Async如何使用 使用Async标注在方法上,可以使该方法异步的调用执行。而所有异步方法的实际执行是交给TaskExecutor的。 1.启动类添加EnableAsync注解 2. 方法上添加A…...
秒杀优化+秒杀安全
1.Redis预减库存 1.OrderServiceImpl.java 问题分析 2.具体实现 SeckillController.java 1.实现InitializingBean接口的afterPropertiesSet方法,在bean初始化之后将库存信息加载到Redis /*** 系统初始化,将秒杀商品库存加载到redis中** throws Excepti…...
48、Flink 的 Data Source API 详解
a)概述 本节将描述 FLIP-27 中引入的新 Source API 的主要接口。 b)Source Source API 是一个工厂模式的接口,用于创建以下组件。 Split EnumeratorSource ReaderSplit SerializerEnumerator Checkpoint Serializer 此外,Sou…...
深入解析Java扩展机制:SPI与Spring.factories
目录 Java SPI概述 1.1 什么是SPI?1.2 SPI的工作原理1.3 SPI的优缺点 SPI的应用 2.1 Java标准库中的SPI应用2.2 自定义SPI示例 Spring.factories概述 3.1 什么是spring.factories?3.2 spring.factories的工作原理3.3 spring.factories的优缺点 spring.f…...
Vue2之模板语法
文章目录 1.模板语法1.1 插值语法{{}}可以写什么1.2 指令语法1.2.1 指令概述1.2.2 v-bind指令1.2.3 v-model指令 1.模板语法 1.1 插值语法{{}}可以写什么 (1)在data中声明的 (2)常量 (3)合法的JavaScript…...
java基础练习题
1、一个".java"源文件中是否可以包括多个类?有什么限制? 可以包含多个类。但是只有一个类可以声明为public,且要求声明为public的类的类名与源文件名相同。 2、java的优势? a、跨平台性 b、安全性高 c、简单性 d、…...
unity中通过实现底层接口实现非按钮(图片)的事件监听
编写监听脚本 PEListenter 继承自MonoBehaviour类,并实现了IPointerDownHandler、IPointerUpHandler和IDragHandler接口,按照需求定义需要接收事件(鼠标按下、抬起、拖拽)的回调函数 //监听类(需要挂载在物体上面&am…...
重庆耶非凡科技有限公司的选品师项目加盟靠谱吗?
在当今电子商务的浪潮中,选品师的角色愈发重要。而重庆耶非凡科技有限公司以其独特的选品师项目,在行业内引起了广泛关注。对于想要加盟该项目的人来说,项目的靠谱性无疑是首要考虑的问题。 首先,我们来看看耶非凡科技有限公司的背…...
《青少年编程与数学》课程方案:4、课程策略
《青少年编程与数学》课程方案:4、课程策略 一、工程师思维二、使命感驱动三、价值观引领四、学习现代化五、工作生活化六、与时代共进 《青少年编程与数学》课程策略强调采用工程师思维,避免重复造轮子,培养使命感,通过探索兴趣、…...
用爬虫实现---模拟填志愿
先来说实现逻辑,首先我要获取到这个网站上所有的信息,那么我们就可以开始对元素进行检查 我们发现他的每一个学校信息都有一个对应的属性,并且是相同的,那么我们就可以遍历这个网页中的所有属性一样的开始爬取 在来分析࿰…...
vscode Run Code输出出现中文乱码情况问题解决方案
主要解决方案是通过修改计算机默认的编码格式,来完成的。 chcp 是 Windows 操作系统中的一个命令,用于显示或设置控制台的代码页(code page)。代码页决定了控制台如何解释和显示字符,特别是非 ASCII 字符(例如 Unicode 字符)。 使用方法 显示当前代码页: 输入 chcp 而…...
代码随想录训练营Day30
提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 前言一、重新安排行程 前言 提示:这里可以添加本文要记录的大概内容: 今天是跟着代码随想录刷题的第30天,主要是复习了回溯算法…...
Swift 序列(Sequence)排序面面俱到 - 从过去到现在(二)
概览 在上篇 Swift 序列(Sequence)排序面面俱到 - 从过去到现在(一)博文中,我们讨论了 Swift 语言中序列和集合元素排序的一些基本知识,我们还给出了以自定义类型中任意属性排序的“康庄大道”。 不过在实际的撸码场景中,我们往往需要的是“多属性”同时参与到排序的考…...
STM32F103C8T6基于HAL库移植uC/OS-III
文章目录 一、建立STM32CubeMX工程二、移植1、 uC/OS-III源码2、移植过程 三、配置相关代码1、bsp.c和bsp.h2、main.c3、修改启动代码4、修改app_cfg.h文件5、修改includes.h文件6、修改lib_cfg.h文件 四、编译与烧录总结参考资料 学习嵌入式实时操作系统(RTOS&…...
微服务学习Day9-分布式事务Seata
文章目录 分布式事务seata引入理论基础CAP定理BASE理论 初识Seata动手实践XA模式AT模式TCC模式SAGA模式 高可用 分布式事务seata 引入 理论基础 CAP定理 BASE理论 初识Seata 动手实践 XA模式 AT模式 TCC模式 Service Slf4j public class AccountTCCServiceImpl implements A…...
vue用vite配置代理解决跨域问题(target、rewrite和changeOrigin的使用场景)
Vite的target、rewrite和changeOrigin的使用场景 1. target 使用场景:target 属性在 Vite 的 vite.config.ts 或 vite.config.js 文件的 server.proxy 配置中指定,用于设置代理服务器应该将请求转发到的目标地址。这通常是一个后端服务的API接口地址。…...
为什么PPT录制没有声音 电脑ppt录屏没有声音怎么办
一、为什么PPT录制没有声音 1.软件问题 我们下载软件的时候可能遇到软件损坏的问题,导致录制没有声音,但其他功能还是可以使用的。我建议使用PPT的隐藏功能,下载插件,在PPT界面的加载项选项卡中就能使用。我推荐一款可以解决录屏…...
JDBC学习笔记(三)高级篇
一、JDBC 优化及工具类封装 1.1 现有问题 1.2 JDBC 工具类封装 V1.0 resources/db.properties配置文件: driverClassNamecom.mysql.cj.jdbc.Driver urljdbc:mysql:///atguigu usernameroot password123456 initialSize10 maxActive20 工具类代码: p…...
c++编译器在什么情况下会提供类的默认构造函数等,与析构函数
我们都知道,在 c 里,编写的简单类,若没有自己编写构造析构函数与 copy 构造函数 与 赋值运算符函数,那么编译器会提供这些函数,并实现简单的语义,比如成员赋值。看 源码时,出现了下图类似的情形…...
SpringBoot3整合Mybatis-Plus3.5.5出现的问题
主要是由于 mybatis-plus 中 mybatis 的整合包版本不够导致的 排除 mybatis-plus 中自带的 mybatis 整合包,单独引入即可 java.lang.IllegalArgumentException: Invalid value type for attribute factoryBeanObjectType: java.lang.Stringat org.springframework.…...
服务器数据恢复—强制上线raid5阵列离线硬盘导致raid不可用的数据恢复案例
服务器数据恢复环境: 某品牌2850服务器中有一组由6块SCSI硬盘组建的raid5磁盘阵列,linux操作系统ext3文件系统。 服务器故障: 服务器运行过程中突然瘫痪。服务器管理员检查阵列后发现raid5阵列中有两块硬盘离线,将其中一块硬盘进行…...
初入阿里云,上手走一波
初入阿里云,上手走一波 一阶:ECSMysqlDMS安装Mysql初始化MysqlMysql操作DMS管理Mysql 二阶:ECSOSS远程连接ECSOSS控制台其他图片服务 三阶:更多搭配操作 可以说个人在日常使用过程中,操作最多的阿里云产品就是阿里云服…...
[C++] 小游戏 斗破苍穹 2.2.1至2.11.5所有版本(中) zty出品
目录 2.8.2 2.9.1 2.10.1 2.10.2 2.10.3 2.10.4 2.10.5 2.8.2 #include<stdio.h> #include<iostream> #include<ctime> #include<bits/stdc.h> #include<time.h> //suiji #include<windows.h> //SLEEP函数 using namespace std; st…...
Javaweb---HTTPS
题记 为了保护数据的隐私性我们引入了HTTPS 加密的方式都有那些呢? 1.对称加密: 加密和解密使用的密钥是同一个密钥 2.非对称加密:有两个密钥(一对),分为公钥和私钥(公钥是公开的,私钥是要藏好的) HTTPS的工作过程(旨在对body和header进行加密) 1.对称加密 上述引出的…...
[已解决]ESP32-C3上传程序成功但没有反应的问题
ESP32-C3上传程序成功但没有反应的问题 ESP32-C3是一款功能强大的微控制器,常用于物联网(IoT)应用的开发和原型设计。然而,有时候在上传程序成功后,设备却没有任何反应,十分让人费解。通过各种尝试已解决这…...
使用 OCLint进行静态代码分析:一个完整的配置示例
文章目录 0. 概述1. 安装 oclint2. oclint配置文件3. 脚本详解3.1 禁用的规则列表3.2 需要启用的规则代码风格代码复杂性命名规范性能安全性其他 4. 检测执行1. 使用 CMake 生成 compile_commands.json2. 运行 Oclint 0. 概述 OCLint是一个静态代码分析工具,通过词…...
现在帮别人做网站赚钱不/免费seo技术教程
点击上方 “ 程序IT圈 ”,选择“置顶公众号”工作日每天早晨7点半准点推文打卡签到本文来源于公号:Java后端技术大家周末好!每到周末,就想跟大家分享一些干货,知道大家周末都很有时间,所以今天想跟你推荐来…...
百度网盟有哪些网站/google浏览器官网
jquery 对 Json 的各种遍历 概述: JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式,采用完全独立于语言的文本格式,是理想的数据交换格式。同时,JSON是 JavaScript 原生格式,这意味着在 JavaScript 中…...
app网站公司名称/哔哩哔哩b站在线看免费
前言Excel是很多公司非常流行的工具,数据分析师和数据科学家经常发现他们把它作为数据分析和可视化工具的一部分,但这并不总是最好的选择。尤其是在数据量很大的时候,Excel容易让我们无法使用其他应用程序,而且有些报告需要30分钟…...
南宁做网站价格/google网页搜索
二叉树的镜像之copy树前言一、递归1、思想2、源码总结前言 二叉树的镜像之copy树,通常copy树时,我们需要新的root,copy树的基础同样是遍历,树的遍历就是递归。 所以我们要有树对递归的敏感性。 一、递归 1、思想 在递归的基础上&…...
苹果手机如何做微电影网站/游戏优化大师下载安装
vxe-table官网...
wordpress restapi接口/合肥seo快排扣费
Ansible Roles 详解示例组网及具体配置1、组网拓扑2、进行 Ansible 基本配置(添加 hosts)2.1 添加组名为 webservers ,并进行主机添加2.2 创建密钥,用于免认证登陆 hosts 主机2.3 添加主机 Tang-1(172.16.141.209&…...