分类标签归档:Linux

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

snmp 获取设备信息


1、安装snmp 客户端 Centos

yum -y install net-snmp-utils
#snmpwalk  简单实用
snmpwalk -v 2c -c public 192.168.31.225

python

pip install -i http://pypi.douban.com/simple --trusted-host=pypi.douban.com pysnmp

2、pysnmp的使用

In [1]: from pysnmp.entity.rfc3413.oneliner import cmdgen                                 

Read more

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


1、现象

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

2、原因分析

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

3、解决办法

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

Read more

记一次认真学习iptables(汇总)


一、通过什么方式管理你的iptables

1、通过iptables 自带的工具

# iptables 安装
yum -y install iptables
# iptables 自带  iptables 、iptables-save、iptables-restore等工具
iptables -F # 清空iptables
iptables-save > /etc/sysconfig/iptables # 将现有的iptables保存到指定文件
iptables-restore < /etc/sysconfig/iptables #将文件中的iptables还原到现有的iptable

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

局域网探测工具nmap、telnet的使用


1、软件安装

Linux系统下安装

yum -y install nmap

python 模块安装

pip install python-nmap

2、软件使用

linux 下面

macdeMac:~ mac$ nmap -n -PS -PE 192.168.31.225
Starting Nmap 7.80 ( https://nmap.org ) at 2020-01-21 17:43 CST
Nmap scan report for 192.168.31.225
Host is up (0.012s latency).
Not shown: 995 closed ports
PORT

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

nginx 部署


1、下载链接

wget https://tool-box.oss-cn-hangzhou.aliyuncs.com/nginx-1.10.0.tar.gz

2、安装

yum install gcc gcc-c++ net-snmp net-snmp-devel curl-devel perl-DBI libxml2 libxml2-devel openssl-devel libpng-devel freetype-devel libmcrypt libmcrypt-devel cmake bzip2-libs bzip2-devel libjpeg libjpeg-devel libxslt

Read more