1. 安装apache及查看相关配置
# apache安装命令
$ sudo yum install httpd
Loaded plugins: fastestmirror, langpacks
Loading mirror speedsfrom cached hostfile
Package httpd-2.4.6-45.el7.centos.4.x86_64 already installed and latest version
Nothingtodo
# 查看apache文件的位置
$ sudo find / -name httpd
/run/httpd
/etc/logrotate.d/httpd
/etc/sysconfig/httpd
/etc/httpd
/var/log/httpd
/var/cache/httpd
/usr/sbin/httpd
/usr/lib64/httpd
/usr/share/httpd
/usr/include/httpd
/usr/libexec/initscripts/legacy-actions/httpd
Apache配置文件位于/etc/httpd/conf
,主要的配置文件是/etc/httpd/conf/httpd.conf
, apache相关的配置信息都可以在这个文件中看到。
2. apache服务的启动与关闭
# 启动服务$sudo systemctl start httpd.service
# 查看服务
$ps aux | grep httpd
root * 0.30.02204444956 ?Ss15:460:00 /usr/sbin/httpd -DFOREGROUND
apache * 0.00.02204442492 ?S15:460:00 /usr/sbin/httpd -DFOREGROUND
apache * 0.00.02204442488 ?S15:460:00 /usr/sbin/httpd -DFOREGROUND
apache * 0.00.02204442488 ?S15:460:00 /usr/sbin/httpd -DFOREGROUND
apache * 0.00.02204442488 ?S15:460:00 /usr/sbin/httpd -DFOREGROUND
apache * 0.00.02204442488 ?S15:460:00 /usr/sbin/httpd -DFOREGROUND
# 停止服务
$sudo systemctl stop httpd.service
# 重启服务
$sudo systemctl restart httpd.service
3. chkconfig 命令详解
chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level <等级代号>][系统服务][on/off/reset]
--add 增加所指定的系统服务,让chkconfig指令得以管理它,并同时在系统启动的叙述文件内增加相关数据。
--del 删除所指定的系统服务,不再由chkconfig指令管理,并同时在系统启动的叙述文件内删除相关数据。
--level<等级代号> 指定读系统服务要在哪一个执行等级中开启或关毕。
等级0表示:表示关机
等级1表示:单用户模式
等级2表示:无网络连接的多用户命令行模式
等级3表示:有网络连接的多用户命令行模式
等级4表示:不可用
等级5表示:带图形界面的多用户模式
等级6表示:重新启动
需要说明的是,level选项可以指定要查看的运行级而不一定是当前运行级。对于每个运行级,只能有一个启动脚本或者停止脚本。当切换运行级时,init不会重新启动已经启动的服务,也不会再次去停止已经停止的服务。
chkconfig --add httpd #增加httpd服务
chkconfig --del httpd #删除httpd服务
chkconfig --level httpd 2345 on #设置httpd在运行级别为2、3、4、5的情况下都是on(开启)的状态
chkconfig --list #列出系统所有的服务启动情况
chkconfig --list mysqld #列出mysqld服务设置情况
chkconfig --level 35 mysqld on #设定mysqld在等级3和5为开机运行服务,--level 35表示操作只在等级3和5执行,on表示启动,off表示关闭
chkconfig mysqld on #设定mysqld在各等级为on,“各等级”包括2、3、4、5等级
1.服务脚本必须存放在/etc/ini.d/目录下;
2.chkconfig --add servicename
在chkconfig工具服务列表中增加此服务,此时服务会被在/etc/rc.d/rcN.d中赋予K/S入口了;
3.chkconfig --level 35 mysqld on
修改服务的默认启动等级。