1.服务简介和分类 #

1.1 运行级别 #

1.1.1 运行级别分类 #

运行级别 含义
0 关机
1 单用户,类似于Window的安全模式,主要用于系统修复
2 不完全多用户,类似于字符界面,但不包含NFS(Linux和Window进行文件共享)服务
3 完整的命令行模式,就是标准的字符界面
4 系统保留未使用
5 图形界面
6 重启

1.1.2 查看上一个级别和当前级别 #

runLevel 
N 3

1.1.3 切换运行级别 #

init 5

1.1.4 设置默认运行级别 #

vi /etc/inittab
id:3:initdefault:

1.2 服务的分类 #

1.2.1 服务管理的方式 #

1.2.2 查看RPM包安装的服务 #

chkconfig --list

1.2.3 查看源码包安装的服务 #

1.2.4 启动和自启动 #

1.3 服务与端口 #

查看系统中的运行中的进程

ps -aux

查看常见服务端口

cat /etc/services

1.4 查询系统中监听的端口 #

参数 含义
-t 列出tcp数据
-u 列出udp数据
-l 列出正在监听的网络服务
-n 用端口号来显示服务,而非服务名
-p 列出该服务的进程ID

2. PRM包服务管理 #

2.1 rpm命令 #

用途 命令
安装软件 执行rpm -ivh rpm包名 其中i表示安装install,v表示显示安装过程verbose,h表示显示进度
升级软件 执行rpm -Uvh rpm包名 U表示升级update
反安装 执行rpm -e rpm包名
查询软件包的详细信息 执行rpm -qpi rpm包名
查询某个文件是属于那个rpm包的 执行rpm -qf rpm包名
查该软件包会向系统里面写入哪些文件 执行 rpm -qpl rpm包名

2.2 repo #

cat /etc/yum.conf
/etc/yum.repos.d
/etc/yum.repos.d/nginx.repo

2.3 RPM包的默认安装位置 #

文件 含义
/etc 配置文件位置
/etc/init.d 启动脚本位置
/etc/sysconfig 初始化环境配置文件位置
/var/lib 服务产生的数据放在这里
/var/log 日志

2.4 启动命令 #

Linux通用命令

服务名 命令
/etc/init.d/独立的服务名 start stop status restart

ReactHat特有的命令

服务名 命令
service 独立的服务名 start stop status restart
rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
yum info nginx
yum install -y nginx 
/etc/init.d/nginx start
netstat -ltun
service nginx status
curl http://localhost

2.5 防火墙 #

操作 命令
查询防火墙状态 service iptables status
停止防火墙 service iptables stop
启动防火墙 service iptables start
重启防火墙 service iptables restart
永久关闭防火墙 chkconfig iptables off
永久关闭后启用 chkconfig iptables on
查看防火墙状态 service iptables status

2.6 自启动服务 #

2.6.1 chkconfig #

chkconfig --list | grep nginx
chkconfig --level 2345 nginx on 
chkconfig nginx off

2.6.2 ntsysv #

2.6.3 /etc/rc.d/rc.local #

/etc/rc.d/rc.local
/etc/init.d/nginx start

3. 源码包服务管理 #

3.1 安装nginx #

3.1.1 root安装依赖 #

yum install gcc gcc-c++ perl -y

3.1.2 下载源文件 #

3.1.2.1 PCRE #
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.43.tar.gz
3.1.2.2 zlib #
wget http://prdownloads.sourceforge.net/libpng/zlib-1.2.11.tar.gz
3.1.2.3 openssl #
wget https://www.openssl.org/source/openssl-1.0.2n.tar.gz
yum install gcc gcc-c++ perl -y

3.1.2.4 nginx #
wget http://nginx.org/download/nginx-1.10.1.tar.gz

3.1.3 解压文件 #

tar -zxvf nginx-1.10.1.tar.gz
tar -zxvf openssl-1.0.2h.tar.gz
tar -zxvf pcre-8.43.tar.gz
tar -zxvf zlib-1.2.11.tar.gz

3.1.3 配置和安装 #

cd nginx-1.10.1
./configure --prefix=/usr/local/nginx \
--pid-path=/usr/local/nginx/nginx.pid \
--error-log-path=/usr/local/nginx/error.log \
--http-log-path=/usr/local/nginx/access.log \
--with-http_ssl_module \
--with-mail --with-mail_ssl_module \
--with-stream --with-threads \
--user=comex --group=comexgroup \
--with-pcre=/root/package/pcre-8.43 \
--with-zlib=/root/package/zlib-1.2.11 \
--with-openssl=/root/package/openssl-1.0.2n
make && make install

sudo /home/www/nginx/sbin/nginx -t
nginx: [emerg] getpwnam("comex") failed
vi /home/www/nginx/conf/nginx.conf
user  www;
sudo /home/www/nginx/sbin/nginx

3.1.4 管理命令 #

功能 命令
启动 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
从容停止 ps -ef grep nginx;kill -QUIT 2072
快速停止 ps -ef grep nginx;kill -TERM 2132; kill -INT 2132
强制停止 pkill -9 nginx
验证nginx配置文件是否正确 nginx -t
重启Nginx服务 nginx -s reload
查找当前nginx进程号 kill -HUP 进程号

3.1.5 自动启动 #

vi /etc/rc.local
/home/www/nginx/sbin/nginx

3.1.6 service #

/etc/init.d/nginx start
service nginx start
#! /bin/bash
# chkconfig: 35 86 76
# description: nginx manager
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: starts the nginx web server

NAME=nginx
DAEMON=/usr/local/nginx/sbin/$NAME
CONFIGFILE=/usr/local/nginx/conf/$NAME.conf
PIDFILE=/usr/local/nginx/logs/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

set -e
[ -x "$DAEMON" ] || exit 0

do_start() {
 $DAEMON -c $CONFIGFILE  || echo -n "nginx already running"
 pid=$(ps -ef | grep nginx | grep master | awk '{print $2}')
 echo $pid > "$PIDFILE"
}

do_stop() {
 kill -INT `cat $PIDFILE` || echo -n "nginx not running"
}

do_reload() {
 kill -HUP `cat $PIDFILE` || echo -n "nginx can't reload"
}

case "$1" in
 start)
 echo -n "Starting  $NAME"
 do_start
 echo "."
 ;;
 stop)
 echo -n "Stopping  $NAME"
 do_stop
 echo "."
 ;;
 reload|graceful)
 echo -n "Reloading  configuration"
 do_reload
 echo "."
 ;;
 restart)
 echo -n "Restarting  $NAME"
 do_stop
 do_start
 echo "."
 ;;
 *)
 echo "Usage: $SCRIPTNAME {start|stop|reload|restart}" >&2
 exit 3
 ;;
esac

exit 0

3.1.7 chkconfig和ntsysv #

3.1.7.1 添加nginx #
chkconfig --add nginx
3.1.7.2 配置脚本 #
#! /bin/bash
# chkconfig: 35 86 76
# description: nginx manager