09 2020 档案
摘要:#!/bin/bash # find out my ip to exclude... MY_MERCHINE_IP=`ifconfig eth0 |awk -F "[: ]+" '/inet addr/{print $4}'`; MERCHINE_IP_LIST="172.1.2.7 172.1.3
阅读全文
摘要:初始化本地仓库 git init 设置账户、邮箱 git config --global user.name "test" git config --global user.email "test@zhclyg.com" clone下载 git clone 地址 git add . (-a) git
阅读全文
摘要:gitlab部署 1.安装依赖 yum install -y curl openssh-server openssh-clients postfix cronie policycoreutils-python 2.启动postfix systemctl start postfix systemctl
阅读全文
摘要:QPS、TPS、并发用户数、吞吐量关系 1、QPS QPS Queries Per Second 是每秒查询率 ,是一台服务器每秒能够相应的查询次数,是对一个特定的查询服务器在规定时间内所处理流量多少的衡量标准, 即每秒的响应请求数,也即是最大吞吐能力。 2、TPS TPS Transactions
阅读全文
摘要:Windows Admin Center 是传统的内置服务器管理工具的演进。这些传统的方法包括使用远程桌面 (RDP) 连接到服务器进行故障排除或配置。 Windows Admin Center 不是由策略驱动,而是使用远程 PowerShell 和基于 WinRM 的 WMI 实现 Windows
阅读全文
摘要:参考链接 https://help.upyun.com/knowledge-base/developer_tools/ https://github.com/upyun/upx
阅读全文
摘要:FTP、FTPS 与 SFTP 简介 FTP 客户端有三种不同的协议,分别是 FTP、FTPS 与 SFTP; 首先来了解一下什么是 FTP,维基百科说:FTP 即 文件传输协议(英语:File Transfer Protocol 的缩写)是一个用于计算机网络上在客户端和服务器之间进行文件传输的应用
阅读全文
摘要:可用来按进程或程序实时统计网络带宽使用率 安装依赖包 yum install libpcap libpcap-devel epel-release -y 安装epel源 yum install epel-release -y 安装Nethogs yum install nethogs -y 运行测试
阅读全文