service XXX restart的执行流程

当我们执行service ssh restart时,做了些什么?
/etc/rc.d/init.d/sshd代码如下
#!/bin/sh
if [ ! -x /usr/sbin/sshd ]
then
    exit 0
fi
if [ "$1" = "stop" -o "$1" = "restart" ]
then
    echo "Stopping the ssh server: "
    killall sshd
fi
if [ "$1" = "start" -o "$1" = "restart" ]
then
    # assume if one key is missing, all are
    if [ ! -f /etc/ssh/ssh_host_key ]
    then
        echo "Generating keys for the ssh server: "
        ssh-keygen -q -t rsa1 -f /etc/ssh/ssh_host_key  -C '' -N ''
        ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key  -C '' -N ''
        ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key  -C '' -N ''
    fi
    for i in ssh_host_key ssh_host_rsa_key ssh_host_dsa_key
    do
        chmod 600 /etc/ssh/$i
    done
    echo "Starting the ssh server: "
    /usr/sbin/sshd
fi
service smb restart
#!/bin/sh
case "$1" in
  start)
    echo -n "Starting SMB services: "
    nmbd $NMBD_ARGS
    sleep 1
    smbd $SMBD_ARGS
    ;;
  stop)
    echo -n "Shutting down SMB services: "
    killall smbd
    killall nmbd
    ;;
  *)
    echo "Usage: smb {start|stop}"
    exit 1
esac
当我们执行service ssh restart时,做了些什么?
/etc/rc.d/init.d/sshd代码如下
#!/bin/sh
if [ ! -x /usr/sbin/sshd ]
then
    exit 0
fi
if [ "$1" = "stop" -o "$1" = "restart" ]
then
    echo "Stopping the ssh server: "
    killall sshd
fi
if [ "$1" = "start" -o "$1" = "restart" ]
then
    # assume if one key is missing, all are
    if [ ! -f /etc/ssh/ssh_host_key ]
    then
        echo "Generating keys for the ssh server: "
        ssh-keygen -q -t rsa1 -f /etc/ssh/ssh_host_key  -C '' -N ''
        ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key  -C '' -N ''
        ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key  -C '' -N ''
    fi
    for i in ssh_host_key ssh_host_rsa_key ssh_host_dsa_key
    do
        chmod 600 /etc/ssh/$i
    done
    echo "Starting the ssh server: "
    /usr/sbin/sshd
fi
service smb restart
#!/bin/sh
case "$1" in
  start)
    echo -n "Starting SMB services: "
    nmbd $NMBD_ARGS
    sleep 1
    smbd $SMBD_ARGS
    ;;
  stop)
    echo -n "Shutting down SMB services: "
    killall smbd
    killall nmbd
    ;;
  *)
    echo "Usage: smb {start|stop}"
    exit 1
esac

当我们执行service ssh restart时,做了些什么?
/etc/rc.d/init.d/sshd代码如下
#!/bin/sh

if [ ! -x /usr/sbin/sshd ]
then
    exit 0
fi

if [ "$1" = "stop" -o "$1" = "restart" ]
then
    echo "Stopping the ssh server: "
    killall sshd
fi

if [ "$1" = "start" -o "$1" = "restart" ]
then
    # assume if one key is missing, all are
    if [ ! -f /etc/ssh/ssh_host_key ]
    then
        echo "Generating keys for the ssh server: "
        ssh-keygen -q -t rsa1 -f /etc/ssh/ssh_host_key  -C '' -N ''
        ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key  -C '' -N ''
        ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key  -C '' -N ''
    fi
    for i in ssh_host_key ssh_host_rsa_key ssh_host_dsa_key
    do
        chmod 600 /etc/ssh/$i
    done
    echo "Starting the ssh server: "
    /usr/sbin/sshd
fi

service smb restart
#!/bin/sh

case "$1" in
  start)
    echo -n "Starting SMB services: "
    nmbd $NMBD_ARGS
    sleep 1
    smbd $SMBD_ARGS
    ;;
  stop)
    echo -n "Shutting down SMB services: "
    killall smbd
    killall nmbd
    ;;
  *)
    echo "Usage: smb {start|stop}"
    exit 1
esac

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值