分类目录归档:系统运维

腾讯的cli工具的安装和使用


1、安装tccli

pip3.8 install  -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com tccli

如果在线安装tencentcloud-sdk-python过程出现安装错误,可以尝试先从官网下载whl文件本地安装 https://pypi.org/project/tencentcloud-sdk-python/#files

2、配置tccli

$ tccli configure
TencentCloud API secretId [*afcQ]:AKIDwLw1234xxxxxxe2g9nR2OTI

Read more

openvpn 打通分公司隧道


一、服务端部署

# 安装
wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh
或
wget http://tool-box.oss-cn-hangzhou.aliyuncs.com/openvpn-install.sh

# openvpn server 停止、启动

# 启动
systemctl start openvpn-server@server.service
# 停止
systemctl stop openvpn-server@server.service
# 自启动

Read more

nginx 配置文件介绍


1、nginx.conf 的文件结构

# 全局块
...
# events 块
events{
     ...
}
# http块
http{
    #http全局块
    ...
    #server 块
    server{
        #server全局块
        ...
        #location块
        location{
            ...
        }
        location{
            ...
        }
    }
}
  • 全局快: 通常包含nginx服务器的用户(组)、允许生成的wor

Read more

记一次nginx 概率性出现499问题


1、现象

nginx 日志概率性出现499 通过postman也能复现超时

2、原因分析

正常200返回的请求时间只有零点几秒,部分请求超过3秒的,就会出现499,网上很多都说是结果都是说客户端主动断开了连接 还有一种原因是 我后来测试发现 确实是客户端关闭了连接,或者说连接超时 ,无论你设置多少超时时间多没用 原来是php进程不够用了 改善一下php进程数 问题解决 。

3、解决办法

在前端nginx代理配置 proxy_ignore_client_abort on ; #表示代理服务端不要主动关闭客户端连接。

Read more

常用shell 工具使用技巧汇总


1、用|| 来表示如果第一个命令执行不成功就执行第二个命令

# 例如 在不同操作系统下获取mac地址
cat /sys/class/net/[^vtlsb]*/address || esxcfg-vmknic -l |awk '{print $8}'|grep ':'

2、dmidecode 获取服务器相关信息

yum -y install dmidecode
dmidecode -s system-manufacturer # 获取厂商
dmidecode -s system-product-name # 服务器型号
dmidecode -s system-

Read more

OSS 对象存储工具ossutil64的安装与使用


1、下载与安装

wget http://gosspublic.alicdn.com/ossutil/1.6.10/ossutil64
chmod 755 ossutil64
./ossutil64 config
请输入配置文件名,文件名可以带路径(默认为:/home/user/.ossutilconfig,回车将使用默认路径。如果用户设置为其它路径,在使用命令时需要将--config-file选项设置为该路径): 
未输入配置文件路径,将使用默认配置文件:/home/user/.ossutilconfig。 
对于下述配置,回车将跳过相关配置项的设置,配置项的具体含义,请使用"hel

Read more

CentOS 7 系统初始化脚本(CentOS7-minimal版本的安装)


完整脚本:

#!/bin/bash
## for CentOS7-minimal版本的安装

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

yum install wget net-tools -y
systemctl enable rc-local.service
chmod +x /etc/rc.d/rc.local

## 修改yum资源库为阿里的镜像
cd /etc/yum.repos.d/
rm -f  *.repo 
wget -O /etc/yum.repos.d/CentOS-

Read more

htop 的使用心得


一、htop 比top的优势

可以通过鼠标操作
直接选择到进程直接kill进程
可以横向或纵向滚动进程列表,同时可以查看进程完整的命令行

二、下载安装

Centos 7

yum install epel-release -y
yum install htop -y

Centos 6

rpm -ivh https://mirrors.tuna.tsinghua.edu.cn/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL
yum install htop -y

Read more