文章目录

  • 1. rsync简介
  • 2. rsync特性
  • 3. rsync的ssh认证协议
  • 4. rsync命令
  • 5. rsync+inotify
    • 5.1 rsync+inotify组合的优势
    • 5.2 rsync+inotify部署
      • 在目标服务器上做以下操作:
      • 在源服务器上做以下操作:
      • 实时触发rsync进行同步
      • 源服务器设置脚本开机自动启动:
      • 源服务器重启后,生成新文件到目标服务器验证:

1. rsync简介

rsync是linux系统下的数据镜像备份工具。使用快速增量备份工具Remote Sync可以远程同步,支持本地复制,或者与其他SSH、rsync主机同步。

2. rsync特性

rsync支持很多特性:

  • 镜像可以保存整个目录树和文件系统
  • 镜像可以保持文件原有属性,如文件的权限、时间、软硬链接等
  • 无须特殊权限,普通用户也可安装
  • 高速:第一次同步时rsync会复制全部内容,但在下一次只传输修改过的文件。rsync在传输数据的过程中可以实行压缩及解压缩操作,因此可以使用更少的带宽
  • 安全:可以使用scp、ssh等方式来传输文件,当然也可以通过直接的socket(套接字IP+端口)连接
  • 支持匿名传输,以方便进行网站镜像

3. rsync的ssh认证协议

rsync命令来同步系统文件之前要先登录remote主机认证,认证过程中用到的协议有2种:

  • ssh协议
  • rsync协议

rsync server端不用启动rsync的daemon进程,只要获取remote host的用户名和密码就可以直接rsync同步文件
rsync server端因为不用启动daemon进程,所以也不用配置文件/etc/rsyncd.conf

ssh认证协议跟scp的原理是一样的,如果在同步过程中不想输入密码就用ssh-keygen -t rsa打通通道

rsync -avz /SRC  root@192.168.177.139:/DEST
//这种方式默认是省略了 -e ssh 的,与下面等价:rsync -avz /SRC -e ssh root@192.168.177.139:/DEST -a  //文件宿主变化,时间戳不变-z  //压缩数据传输-v  //显示详细信息 /SRC 原目录 /DEST 默认目录rsync -avz /SRC -e "ssh -p2222" root@192.168.177.139:/DEST
//修改了ssh 协议的端口,默认是22

4. rsync命令

//Rsync的命令格式常用的有以下三种:rsync [OPTION]... SRC DESTrsync [OPTION]... SRC [USER@]HOST:DESTrsync [OPTION]... [USER@]HOST:SRC DEST//对应于以上三种命令格式,rsync有三种不同的工作模式:
1)拷贝本地文件。当SRC和DES路径信息都不包含有单个冒号":"分隔符时就启动这种工作模式。如:
[root@node5 ~]# ls
anaconda-ks.cfg  nfs.sh
[root@node5 ~]# rsync -a nfs.sh a.sh
[root@node5 ~]# ll
total 12
-rw-------. 1 root root 1453 Jun 13 19:27 anaconda-ks.cfg
-rwxr-xr-x  1 root root 1041 Aug  8 18:14 a.sh
-rwxr-xr-x  1 root root 1041 Aug  8 18:14 nfs.sh
[root@node5 ~]# ll -i
total 12
33574978 -rw-------. 1 root root 1453 Jun 13 19:27 anaconda-ks.cfg
33574979 -rwxr-xr-x  1 root root 1041 Aug  8 18:14 a.sh
33574990 -rwxr-xr-x  1 root root 1041 Aug  8 18:14 nfs.sh2)使用远程shell程序(如rsh、ssh)将本地机器的内容拷贝到远程机器。当DST路径地址包 \
含单个冒号":"分隔符时启动该模式。如:
[root@node5 ~]# rsync -avz nfs.sh root@192.168.177.139:/root/b.sh
sending incremental file list
nfs.shsent 643 bytes  received 35 bytes  1,356.00 bytes/sec
total size is 1,041  speedup is 1.54
[root@node5 ~]# ssh root@192.168.177.139 'ls -l /root'
total 8
-rw-------. 1 root root 1454 Aug  6 04:39 anaconda-ks.cfg
-rwxr-xr-x  1 root root 1041 Aug  8  2018 b.sh3)使用远程shell程序(如rsh、ssh)将远程机器的内容拷贝到本地机器。当SRC地址路径 \
包含单个冒号":"分隔符时启动该模式。如:
[root@node5 ~]# ls
anaconda-ks.cfg  a.sh  nfs.sh
[root@node5 ~]# rsync -avz root@192.168.177.139:/etc/yum.repos.d /root/
receiving incremental file list
yum.repos.d/
yum.repos.d/163.repo
yum.repos.d/redhat.reposent 66 bytes  received 918 bytes  1,968.00 bytes/sec
total size is 1,820  speedup is 1.85
[root@node5 ~]# ls
anaconda-ks.cfg  a.sh  nfs.sh  yum.repos.d
[root@node5 ~]# ls yum.repos.d/
163.repo  redhat.reporsync -avH --port 873 --progress --delete /root/etc/ admin@192.168.177.139::20220321  --password-file=/etc/.rsync.passwd
//rsync常用选项:-a, --archive       //归档-v, --verbose       //啰嗦模式-q, --quiet         //静默模式-r, --recursive     //递归-p, --perms         //保持原有的权限属性-z, --compress      //在传输时压缩,节省带宽,加快传输速度--delete            //在源服务器上做的删除操作也会在目标服务器上同步

5. rsync+inotify

5.1 rsync+inotify组合的优势

rsync与传统的cp、tar备份方式相比,rsync具有安全性高、备份迅速、支持增量备份等优点,通过rsync可以解决对实时性要求不高的数据备份需求,例如定期的备份文件服务器数据到远端服务器,对本地磁盘定期做数据镜像等。

随着应用系统规模的不断扩大,对数据的安全性和可靠性也提出的更好的要求,rsync在高端业务**系统中也逐渐暴露出了很多不足 **;

  • 首先,rsync同步数据时,效率较低。它需要扫描所有文件后进行比对,进行差量传输。如果文件数量达到了百万甚至千万量级,扫描所有文件将是非常耗时的。而且正在发生变化的往往是其中很少的一部分,这是非常低效的方式。
  • 其次,rsync不能实时的去监测、同步数据。虽然它可以通过linux守护进程的方式进行触发同步,但是两次触发动作一定会有时间差,这样就导致了服务端和客户端数据可能出现不一致,无法在应用故障时完全的恢复数据。

基于以上原因,rsync+inotify组合出现了!

Inotify是一种强大的、细粒度的、异步的文件系统事件监控机制,linux内核从2.6.13起,加入了Inotify支持,通过Inotify可以监控文件系统中添加、删除,修改、移动等各种细微事件,利用这个内核接口,第三方软件就可以监控文件系统下文件的各种变化情况,而inotify-tools就是这样的一个第三方软件。

在前面有讲到,rsync可以实现触发式的文件同步,但是通过crontab守护进程方式进行触发,同步的数据和实际数据会有差异,而inotify可以监控文件系统的各种变化,当文件有任何变动时,就触发rsync同步,这样刚好解决了同步数据的实时性问题。

5.2 rsync+inotify部署

  • 环境说明:
服务器类型 IP地址 应用 操作系统
源服务器node5 192.168.177.137 rsync、inotify-tools、脚本 centos7/redhat7
目标服务器 node4 192.168.177.139 rsync centos7/redhat7
  • 需求:
    把源服务器上/runtime目录实时同步到目标服务器的/sanjin/下

在目标服务器上做以下操作:

//关闭防火墙与SELINUX
[root@node4 ~]# systemctl stop firewalld
[root@node4 ~]# systemctl disable firewalld
[root@node4 ~]# getenforce
Enforcing
[root@node4 ~]# setenforce 0
[root@node4 ~]sys# sed -ri 's/^(SELINUX=).*/\1disabled/g' /etc/sysconfig/selinux//安装rsync服务端软件
[root@node4 ~]# yum -y install rsync  rsync-daemon
Total                                            549 kB/s | 450 kB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing        :                                                         1/1 Installing       : rsync-3.1.3-16.el8.x86_64                               1/2 Installing       : rsync-daemon-3.1.3-16.el8.noarch                        2/2 Running scriptlet: rsync-daemon-3.1.3-16.el8.noarch                        2/2 Verifying        : rsync-3.1.3-16.el8.x86_64                               1/2 Verifying        : rsync-daemon-3.1.3-16.el8.noarch                        2/2
Installed products updated.Installed:rsync-3.1.3-16.el8.x86_64           rsync-daemon-3.1.3-16.el8.noarch          Complete!//设置数据同步目录
[root@node4 ~]# mkdir /sanjin
[root@node4 ~]# ls /sanjin//设置rsyncd.conf配置文件
[root@node4 ~]# vim /etc/rsyncd.conf
log file = /var/log/rsyncd.log    # 日志文件位置,启动rsync后自动产生这个文件,无需提前创建
pidfile = /var/run/rsyncd.pid     # pid文件的存放位置
lock file = /var/run/rsync.lock   # 支持max connections参数的锁文件
secrets file = /etc/.rsync.passwd    # 用户认证配置文件,里面保存用户名称和密码,必须手动创建这个文件[20220321]     # 自定义同步名称
path = /sanjin/          # rsync服务端数据存放路径,客户端的数据将同步至此目录
comment = sync etc from client
uid = root        # 设置rsync运行权限为root
gid = root        # 设置rsync运行权限为root
port = 873        # 默认端口
ignore errors     # 表示出现错误忽略错误
use chroot = no       # 默认为true,修改为no,增加对目录文件软连接的备份
read only = no    # 设置rsync服务端为读写权限
list = no     # 不显示rsync服务端资源列表
max connections = 200     # 最大连接数
timeout = 600     # 设置超时时间
auth users = admin        # 执行数据同步的用户名,可以设置多个,用英文状态下逗号隔开//创建用户认证文件
[root@node4 ~]# echo 'admin:123456' > /etc/.rsync.passwd
[root@node4 ~]# cat /etc/.rsync.passwd
admin:123456//设置文件权限
[root@node4 ~]# chmod 600 /etc/.rsync.passwd
[root@node4 ~]# ll /etc/.rsync.passwd
-rw------- 1 root root 13 Aug  9 15:41 /etc/.rsync.passwd//启动rsync服务并设置开机自启动
[root@node4 ~]# systemctl enable --now rsyncd
Created symlink from /etc/systemd/system/multi-user.target.wants/rsyncd.service to /usr/lib/systemd/system/rsyncd.service.
[root@node4 ~]# ss -antl
State    Recv-Q   Send-Q     Local Address:Port     Peer Address:Port  Process
LISTEN   0        5                0.0.0.0:873           0.0.0.0:*
LISTEN   0        128              0.0.0.0:22            0.0.0.0:*
LISTEN   0        5                   [::]:873              [::]:*
LISTEN   0        128                 [::]:22               [::]:*

在源服务器上做以下操作:

//关闭防火墙与SELINUX
[root@node5 ~]# systemctl disable --now firewalld
[root@node5 ~]# getenforce
Enforcing
[root@node5 ~]# setenforce 0
[root@node5 ~]# sed -ri 's/^(SELINUX=).*/\1disabled/g' /etc/selinux/config//配置yum源
[root@node5 ~]# cd /etc/yum.repos.d/
[root@node5 yum.repos.d]# wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
--2018-08-10 12:07:17--  http://mirrors.163.com/.help/CentOS7-Base-163.repo
Resolving mirrors.163.com (mirrors.163.com)... 59.111.0.251
Connecting to mirrors.163.com (mirrors.163.com)|59.111.0.251|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1572 (1.5K) [application/octet-stream]
Saving to: ‘CentOS7-Base-163.repo’100%[=================================>] 1,572       --.-K/s   in 0s2018-08-10 12:07:17 (191 MB/s) - ‘CentOS7-Base-163.repo’ saved [1572/1572]
[root@node5 ~]# sed -i 's/\$releasever/7/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@node5 ~]# sed -i 's/^enabled=.*/enabled=1/g' /etc/yum.repos.d/CentOS7-Base-163.repo
[root@node5 ~]# yum -y install epel-release
安装过程略。。。。//安装rsync服务端软件,只需要安装,不要启动,不需要配置
[root@node5 ~]# yum -y install rsync
Total download size: 405 k
Installed size: 819 k
Downloading Packages:
rsync-3.1.3-12.el8.x86_64.rpm                    435 kB/s | 405 kB     00:00
---------------------------------------------------------------------------------
Total                                            434 kB/s | 405 kB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing        :                                                         1/1 Installing       : rsync-3.1.3-12.el8.x86_64                               1/1 Running scriptlet: rsync-3.1.3-12.el8.x86_64                               1/1 Verifying        : rsync-3.1.3-12.el8.x86_64                               1/1
Installed products updated.Installed:rsync-3.1.3-12.el8.x86_64                                                      Complete!//创建认证密码文件
[root@node5 ~]# echo 123456 > /etc/.rsync.passwd
[root@node5 ~]# cat /etc/.rsync.passwd
123456//设置文件权限,只设置文件所有者具有读取、写入权限即可
[root@node5 ~]# chmod 600 /etc/.rsync.passwd
[root@node5 ~]# ll /etc/.rsync.passwd
-rw-------. 1 root root 7 Aug  9 14:46 /etc/.rsync.passwd//在源服务器上创建测试目录,然后在源服务器运行以下命令
[root@node5 ~]# ls
anaconda-ks.cfg
[root@node5 ~]# mkdir -pv /runtime/test
mkdir: created directory '/runtime'
mkdir: created directory '/runtime/test'
[root@node5 ~]# echo abc > /runtime/test/zxc
[root@node5 ~]# mkdir /runtime/abc
[root@node5 ~]# rsync -avH --port 873 --progress --delete /runtime admin@192.168.177.139::20220321  --password-file=/etc/.rsync.passwdsending incremental file list
runtime/
runtime/abc/
runtime/test/
runtime/test/zxc4 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=0/4)sent 196 bytes  received 55 bytes  502.00 bytes/sec
total size is 4  speedup is 0.02//运行完成后,在目标服务器上查看,在/tmp目录下有test目录,说明数据同步成功
[root@node4 ~]# ls /sanjin/
runtime
[root@node4 ~]# tree /sanjin/
/sanjin/
└── runtime├── abc└── test└── zxc3 directories, 1 file

实时触发rsync进行同步

//安装inotify-tools工具,实时触发rsync进行同步
//查看服务器内核是否支持inotify
[root@node5 ~]# ll /proc/sys/fs/inotify/
total 0
-rw-r--r--. 1 root root 0 Aug  9 15:50 max_queued_events
-rw-r--r--. 1 root root 0 Aug  9 15:50 max_user_instances
-rw-r--r--. 1 root root 0 Aug  9 15:50 max_user_watches//如果有这三个max开头的文件则表示服务器内核支持inotify//安装inotify-tools
[root@node5 ~]# yum -y install inotify-tools
Total                                            131 kB/s |  57 kB     00:00     Preparing        :                                                         1/1 Installing       : inotify-tools-3.14-19.el8.x86_64                        1/1 Running scriptlet: inotify-tools-3.14-19.el8.x86_64                        1/1 Verifying        : inotify-tools-3.14-19.el8.x86_64                        1/1
Installed products updated.Installed:inotify-tools-3.14-19.el8.x86_64 //写同步脚本,此步乃最最重要的一步,请慎之又慎。让脚本自动去检测我们制定的目录下文件发生的变化,然后再执行rsync的命令把它同步到我们的服务器端去
[root@node5 ~]# mkdir /scripts
[root@node5 ~]# touch /scripts/inotify.sh
[root@node5 ~]# chmod 755 /scripts/inotify.sh
[root@node5 ~]# ll /scripts/inotify.sh
-rwxr-xr-x. 1 root root 0 Aug  9 15:52 /scripts/inotify.sh
[root@node5 ~]# vim /scripts/inotify.sh
#! /bin/bash
host=192.168.177.139      # 目标服务器的ip(备份服务器)
src=/runtime       # 在源服务器上所要监控的备份目录(此处可以自定义,但是要保证存在)
des=20220321     # 自定义的模块名,需要与目标服务器上定义的同步名称一致
password=/etc/.rsync.passwd        # 执行数据同步的密码文件
user=admin          # 执行数据同步的用户名
inotifywait=/usr/bin/inotifywait$inotifywait -mrq --timefmt '%Y%m%d %H:%M' --format '%T %w%f %e' -e modify,delete,create,attrib $src \
| while read files;dorsync -avzP --delete  --timeout=100 --password-file=${password} $src $user@$host::$desecho "${files} was rsynced" >>/tmp/rsync.log 2>&1
done//启动脚本
[root@node5 ~]# nohup bash /scripts/inotify.sh &
[1] 2774
[root@node5 ~]# nohup: ignoring input and appending output to 'nohup.out'[root@node5 ~]# ps -ef|grep inotify
root        2774    2726  0 15:58 pts/1    00:00:00 bash /scripts/inotify.sh
root        2775    2774  0 15:58 pts/1    00:00:00 /usr/bin/inotifywait -mrq --timefmt %Y%m%d %H:%M --format %T %w%f %e -e modify,delete,create,attrib /runtime
root        2776    2774  0 15:58 pts/1    00:00:00 bash /scripts/inotify.sh
root        2779    2726  0 15:58 pts/1    00:00:00 grep --color=auto inotify//在源服务器上生成一个新文件 验证
[root@node5 ~]# tree /runtime/
/runtime/
├── abc
└── test└── zxc2 directories, 1 file
[root@node5 ~]# echo "hello world" > /runtime/abc/test[root@node4 ~]# ls /sanjin/
runtime
[root@node4 ~]# tree /sanjin/
/sanjin/
└── runtime├── abc│   └── test└── test└── zxc3 directories, 2 files[root@node4 ~]# cat /sanjin/runtime/abc/test
hello world//查看inotify生成的日志
[root@node5 ~]# tail /tmp/rsync.log
20220809 16:00 /runtime/abc/test CREATE was rsynced
20220809 16:00 /runtime/abc/test CREATE was rsynced
20220809 16:00 /runtime/abc/test MODIFY was rsynced
20220809 16:00 /runtime/abc/test MODIFY was rsynced
//从日志上可以看到,我们生成了一个test文件,并且添加了内容到其里面

源服务器设置脚本开机自动启动:

[root@node5 ~]# chmod +x /etc/rc.d/rc.local
[root@node5 ~]# ll /etc/rc.d/rc.local
-rwxr-xr-x. 1 root root 510 Aug  9 16:07 /etc/rc.d/rc.local
[root@node5 ~]# echo 'nohup /bin/bash /scripts/inotify.sh' >> /etc/rc.local
[root@node5 ~]# tail /etc/rc.local
#
# In contrast to previous versions due to parallel execution during boot
# this script will NOT be run after all other services.
#
# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
# that this script will be executed during boot.touch /var/lock/subsys/localnohup /bin/bash /scripts/inotify.sh

源服务器重启后,生成新文件到目标服务器验证:

[root@node5 ~]# reboot
[root@node5 ~]# cp -a /var/ /runtime/
[root@node5 ~]# ls /runtime/
abc  test  var
[root@node5 ~]# ls /runtime/var/
adm    crash  empty  games   kerberos  local  log   nis  preserve  spool  yp
cache  db     ftp    gopher  lib       lock   mail  opt  run       tmp[root@node4 ~]# ls /sanjin/runtime/
abc  test  var
[root@node4 ~]# ls /sanjin/runtime/var/
adm    crash  empty  games   kerberos  local  log   nis  preserve  spool  yp
cache  db     ftp    gopher  lib       lock   mail  opt  run       tmp[root@node5 runtime]# rm -rf var/
[root@node5 runtime]# ls
abc  test
[root@node5 runtime]# pwd
/runtime
[root@node5 ~]# tail /tmp/rsync.log
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/callweaver/cil DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/callweaver/hll DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/callweaver/lang_ext DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/callweaver DELETE,ISDIR was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/certmaster/cil DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/certmaster/hll DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/certmaster/lang_ext DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/certmaster DELETE,ISDIR was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/cgdcbxd/cil DELETE was rsynced
20220809 16:24 /runtime/var/lib/selinux/targeted/active/modules/100/cgdcbxd/hll DELETE was rsynced[root@node4 runtime]# ls
abc  test
[root@node4 runtime]# pwd
/sanjin/runtime//由此可见,已将源服务器的/runtime目录整个同步到了目标服务器,且删除等操作同步

rsync同步工具介绍与部署相关推荐

  1. rsync同步工具学习笔记

    rsync同步工具 1.rsync介绍 rsync是一款开源的.快速的.多功能的.可实现全量及增量的本地或远程数据同步备份的优秀工具.rsync软件适用于unix/linux/windows等多种操作 ...

  2. Ansible自动化运维工具介绍与部署

    ansible自动化运维工具介绍与部署 文章目录 一.什么是自动化运维? 二.常用的自动化运维工具 2.1 Ansible 2.2 SaltStack 2.3 Puppet 2.4 三种自动化工具特点 ...

  3. 云盘 同步盘介绍 同步工具介绍

    转载: https://www.zhihu.com/question/388093965 转载:https://www.zhihu.com/question/388093965 在对比之前,我们先必须 ...

  4. 日常运维--rsync同步工具

    1. 概述 rsync命令是一个远程数据同步工具,可通过LAN/WAN快速同步多台主机间的文件.rsync使用所谓的"rsync算法"来使本地和远程两个主机之间的文件达到同步,这个 ...

  5. 数据同步工具—DataX—Web部署使用

    DataX-Web 部署使用 Datax 的使用过程中,我们会发现,不管是利用 java 调用以及 python 命令启动的方式,我们都无法进行任务的管理,并且每次执行任务前,我们 都需要编辑 Jso ...

  6. PXE自动化安装系统工具介绍与部署

    女主宣言 对于单台服务器上的os安装,我们可以手动进行.那若是一个集群中的大量节点服务器需要安装os,手动安装显然是费时费力.作为系统运维工程师,自动化运维是我们必不可少的技能.下来就跟随作者去探索下 ...

  7. Rsync备份工具讲解(一)

    文章目录 什么是rsync软件 增量与全量 什么是全量传输 什么是增量传输 rsync对比其他命令 对比测试: rsync的特性 rsync复制原理 rsync的企业工作场景说明 本文分多章发布更新, ...

  8. linux 文件夹同步工具

    背景: 这篇文放到一群共享里,网上被摘抄了一下,但未注明出处.这里申明一下,摘抄可以,但请注明出处.同样,也是未完之作. 几种文件夹同步工具介绍 1 前言 我们日常工作中,经常会遇到下面的一些情况:静 ...

  9. Rsync下行同步+inotify实时同步介绍和部署

    Rsync下行同步+inotify实时同步介绍和部署 一.Rsync 1.Rsync同步源 2.Rsync服务器 3.同步方式 二.配置rsync源 三.rsync命令 四.配置源的两种表示方法 1. ...

最新文章

  1. logitech g hub一直在初始化_Wi-Fi中“2.4G”和“5G”的那些事儿
  2. 种草之火,何以燎原?
  3. Android 动态修改参数配置
  4. curaengine linux编译,CuraEngine开源程序解读
  5. Java日志框架之JUL(java util logging)详解
  6. 曾有望成为第三大移动系统:如今正式告别,明日停止一切支持
  7. 异步请求引发的Chrome死锁
  8. AJAX技术文案沙雕,vue-router 中使用 keep-alive 控制 ajax 请求的缓存策略(二)
  9. 我的世界HMCL安装与使用
  10. 鸿翼上线DMSTMS管理系统,助力智飞龙科马打造数字化质量安全生命线
  11. 网络货运平台申请后的优劣势分析
  12. 是西电梦了我,还是我梦了西电
  13. 获取本地视频文件的缩略图
  14. 计算机科学与技术选修课方向,计算机与科学专业主要的课程和学习方向是什么?...
  15. [附源码]Node.js计算机毕业设计房屋出租管理系统Express
  16. 磁盘管理找不到新加硬盘,借助DG(DiskGenius)实现新加硬盘初始化分区和之前硬盘的数据迁移
  17. 看大数据平台如何打造餐饮业务一体化?
  18. Chrome 开发者工具的 11 个骚技巧
  19. [Go菜牛系列]通过go-wrk进行HTTP接口压力测试
  20. NB-IoT技术在远程抄表的应用以及对比GPRS的优势。

热门文章

  1. 初次使用hammer.js做卡片滑动效果
  2. 43岁读博士,无关年龄 ,一位70后大哥的励志人生
  3. Netlink通信机制
  4. 「newbee-mall新蜂商城开源啦」1000 Star Get !仓库Star数破千!记录一下
  5. 代码审计--23--FindBugs详细
  6. buuctf逆向simple rev
  7. 学技能需要怎样配置的电脑?
  8. 第13期 《不一样的选择,不一样的世界》2017年3月 期刊
  9. 学术写作中的字体应用规则:斜体、罗马体、粗体与希腊字母的使用
  10. 2022-2028年全球及中国透气纺织品行业投资前景分析