5-29shell编程实战入门

1、服务器本地端口监控:

过滤端口然后转成行数。

netstat -lntup|grep nginx|wc -l(推荐)

ss -lntup|grep nginx|wc -l

lsof -i :80|wc -l

2、远端端口监控:

看返回的行数,为1正常,否则不正常。

nmap 127.0.0.1 -p 80|grep open|wc -l(推荐)

echo -e "\n"|telnet 127.0.0.1 80 2>/dev/null|grep Connected|wc -l

看返回值,为0正常。

[root@web01 ~]# nc -z 127.0.0.1 80

[root@web01 ~]# echo $?

0

nc的控制参数不少,常用的几个参数如下所列:

1) -l

用于指定nc将处于侦听模式。指定该参数,则意味着nc被当作server,侦听并接受连接,而非向其它地址发起连接。

2) -p <port>

暂未用到(老版本的nc可能需要在端口号前加-p参数,下面测试环境是centos6.6,nc版本是nc-1.84,未用到-p参数)

3) -s

指定发送数据的源IP地址,适用于多网卡机

4) -u

指定nc使用UDP协议,默认为TCP

5) -v

输出交互或出错信息,新手调试时尤为有用

6)-w

超时秒数,后面跟数字

7)-z

表示zero,表示扫描时不发送任何数据

3、客户端模拟监控:看返回值或者看返回字符串

wget -q 127.0.0.1 &>/dev/null (推荐)

echo $?

curl 127.0.0.1 &>/dev/null

echo $?

7

看返回字符串是否为www7

[root@web01 /etc/nginx/conf.d]# curl -s 127.0.0.1 2>/dev/null(推荐)

www7

环境准备:

[root@oldboy ~]# touch /etc/rsyncd.conf

[root@oldboy ~]#

[root@oldboy ~]# rsync --daemon

[root@oldboy ~]# lsof -i :873

COMMAND  PID USER  FD  TYPE DEVICE SIZE/OFF NODE NAME

rsync  1690 root    4u  IPv4  14658      0t0  TCP *:rsync (LISTEN)

rsync  1690 root    5u  IPv6  14659      0t0  TCP *:rsync (LISTEN)

[root@oldboy ~]# pkill rsync

[root@oldboy ~]# lsof -i :873

启动脚本:

3、写一个rsync/sersync/nginx的启动脚本。

/etc/init.d/rsync {start|stop|restart}

C6:用chkconfig实现开机自启动管理。

C7:用systemctl实现开机自启动管理。

1)启动:rsync --daemon

2)停止:pkill rsync

  kill `cat /var/run/rsyncd.pid`


3)监控手段:netstat -lntup|grep rsync|wc -l

/etc/init.d/rsyncd {start|stop|restart}

[root@oldboy init.d]# cat rsyncd

#!/bin/bash

if [ "$1" = "start"  ]

then

  if [ -f /var/run/rsyncd.pid -a -s /var/run/rsyncd.pid ]

  then

      :

  else

      rsync --daemon

  fi

elif [ "$1" = "stop"  ]

then

    if [ -f /var/run/rsyncd.pid -a -s /var/run/rsyncd.pid ]

    then

        kill `cat /var/run/rsyncd.pid`

    else

        echo "Failed to stop rsync Unit rsync not loaded."

        exit 1

    fi

elif [ "$1" = "restart"  ]

then

    if [ -f /var/run/rsyncd.pid -a -s /var/run/rsyncd.pid ]

    then

        kill `cat /var/run/rsyncd.pid`

    fi

  sleep 2

  if [ -f /var/run/rsyncd.pid -a -s /var/run/rsyncd.pid ]

  then

      :

  else

      rsync --daemon

  fi

else

    echo "Usage;$0 {start|stop|restart}"

fi

C7:systemctl

c6:管理开机自启动服务,用的chkconfig

[root@oldboy init.d]# cat /etc/redhat-release

CentOS release 6.9 (Final)

[root@oldboy init.d]#

[root@oldboy init.d]#

[root@oldboy init.d]#

[root@oldboy init.d]# chkconfig --list

abrt-ccpp      0:off 1:off 2:off 3:on 4:off 5:on 6:off

abrtd          0:off 1:off 2:off 3:on 4:off 5:on 6:off

acpid          0:off 1:off 2:on 3:on 4:on 5:on 6:off

atd            0:off 1:off 2:off 3:on 4:on 5:on 6:off

auditd        0:off 1:off 2:on 3:on 4:on 5:on 6:off

blk-availability 0:off 1:on 2:on 3:on 4:on 5:on 6:off

cpuspeed      0:off 1:on 2:on 3:on 4:on 5:on 6:off

crond          0:off 1:off 2:on 3:on 4:on 5:on 6:off

haldaemon      0:off 1:off 2:off 3:on 4:on 5:on 6:off

htcacheclean  0:off 1:off 2:off 3:off 4:off 5:off 6:off

httpd          0:off 1:off 2:off 3:off 4:off 5:off 6:off

ip6tables      0:off 1:off 2:on 3:on 4:on 5:on 6:off

iptables      0:off 1:off 2:on 3:on 4:on 5:on 6:off

irqbalance    0:off 1:off 2:off 3:on 4:on 5:on 6:off

kdump          0:off 1:off 2:off 3:on 4:on 5:on 6:off

lvm2-monitor  0:off 1:on 2:on 3:on 4:on 5:on 6:off

mdmonitor      0:off 1:off 2:on 3:on 4:on 5:on 6:off

messagebus    0:off 1:off 2:on 3:on 4:on 5:on 6:off

netconsole    0:off 1:off 2:off 3:off 4:off 5:off 6:off

netfs          0:off 1:off 2:off 3:on 4:on 5:on 6:off

network        0:off 1:off 2:on 3:on 4:on 5:on 6:off

nfs-rdma      0:off 1:off 2:off 3:off 4:off 5:off 6:off

ntpd          0:off 1:off 2:off 3:off 4:off 5:off 6:off

ntpdate        0:off 1:off 2:off 3:off 4:off 5:off 6:off

postfix        0:off 1:off 2:on 3:on 4:on 5:on 6:off

psacct        0:off 1:off 2:off 3:off 4:off 5:off 6:off

quota_nld      0:off 1:off 2:off 3:off 4:off 5:off 6:off

rdisc          0:off 1:off 2:off 3:off 4:off 5:off 6:off

rdma          0:off 1:on 2:on 3:on 4:on 5:on 6:off

restorecond    0:off 1:off 2:off 3:off 4:off 5:off 6:off

rngd          0:off 1:off 2:off 3:off 4:off 5:off 6:off

rsyslog        0:off 1:off 2:on 3:on 4:on 5:on 6:off

saslauthd      0:off 1:off 2:off 3:off 4:off 5:off 6:off

smartd        0:off 1:off 2:off 3:off 4:off 5:off 6:off

sshd          0:off 1:off 2:on 3:on 4:on 5:on 6:off

svnserve      0:off 1:off 2:off 3:off 4:off 5:off 6:off

sysstat        0:off 1:on 2:on 3:on 4:on 5:on 6:off

udev-post      0:off 1:on 2:on 3:on 4:on 5:on 6:off

[root@oldboy init.d]# chkconfig crond status

chkconfig version 1.3.49.5 - Copyright (C) 1997-2000 Red Hat, Inc.

This may be freely redistributed under the terms of the GNU Public License.

usage:  chkconfig [--list] [--type <type>] [name]

        chkconfig --add <name>

        chkconfig --del <name>

        chkconfig --override <name>

        chkconfig [--level <levels>] [--type <type>] <name> <on|off|reset|resetpriorities>

[root@oldboy init.d]# chkconfig --list crond

crond          0:off 1:off 2:on 3:on 4:on 5:on 6:off

[root@oldboy init.d]# chkconfig crond off

[root@oldboy init.d]# chkconfig --list crond

crond          0:off 1:off 2:off 3:off 4:off 5:off 6:off

[root@oldboy init.d]# chkconfig crond on

[root@oldboy init.d]# chkconfig --list crond

crond          0:off 1:off 2:on 3:on 4:on 5:on 6:off

[root@oldboy init.d]# chkconfig --level 3 crond off

[root@oldboy init.d]# chkconfig --list crond

crond          0:off 1:off 2:on 3:off 4:on 5:on 6:off

[root@oldboy init.d]# chkconfig --level 45 crond off

[root@oldboy init.d]# chkconfig --list crond

crond          0:off 1:off 2:on 3:off 4:off 5:off 6:off

[root@oldboy init.d]# chkconfig --list rsyncd

service rsyncd does not support chkconfig

      For example, random.init has these three lines:

      # chkconfig: 2345 20 80

      # description: Saves and restores system entropy pool for \

      #              higher quality random number generation.

      This says that the random script should be started in levels 2, 3, 4, and 5, that its start  priority

      should  be  20,  and  that its stop priority should be 80.  You should be able to figure out what the

      description says; the \ causes the line to be continued.  The extra space in front  of  the  line  is

      ignored.

[root@oldboy init.d]# ll /etc/init.d/rsyncd

-rwxr-xr-x. 1 root root 763 May 30 09:55 /etc/init.d/rsyncd

[root@oldboy init.d]# chmod +x /etc/init.d/rsyncd

[root@oldboy init.d]# chkconfig --add rsyncd

[root@oldboy init.d]# chkconfig --list rsyncd

rsyncd        0:off 1:off 2:on 3:on 4:on 5:on 6:off

[root@oldboy init.d]# head -3 rsyncd

#!/bin/bash

# chkconfig: 2345 21 81

# description: startup rsync scripts

[root@oldboy init.d]# chkconfig rsyncd off

[root@oldboy init.d]# chkconfig --list rsyncd

rsyncd        0:off 1:off 2:off 3:off 4:off 5:off 6:off

[root@oldboy init.d]# chkconfig rsyncd on

[root@oldboy init.d]# chkconfig --list rsyncd

rsyncd        0:off 1:off 2:on 3:on 4:on 5:on 6:off

[root@oldboy init.d]# ls /etc/rc.d/rc3.d/|grep rsync

S21rsyncd

[root@oldboy init.d]# ls /etc/rc.d/rc3.d/-l|grep rsync

ls: cannot access /etc/rc.d/rc3.d/-l: No such file or directory

[root@oldboy init.d]# ls /etc/rc.d/rc3.d/ -l|grep rsync

lrwxrwxrwx. 1 root root 16 May 30 09:58 S21rsyncd -> ../init.d/rsyncd

[root@oldboy init.d]# chkconfig rsyncd off

[root@oldboy init.d]# ls /etc/rc.d/rc3.d/ -l|grep rsync

lrwxrwxrwx. 1 root root 16 May 30 09:59 K81rsyncd -> ../init.d/rsyncd

cat >/etc/systemd/system/oldboy_rsync.service<<EOF

[Unit]

Description=MySQL Server by oldboy

Documentation=man:mysqld(8)

Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html

After=network.target

After=syslog.target

[Install]

WantedBy=multi-user.target

[Service]

User=rsync

Group=rsync

ExecStart=/etc/init.d/rsyncd start

LimitNOFILE = 5000

EOF

systemctl start mysqld

systemctl enable mysqld

netstat -lntup|grep mysql

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容