首页 > 代码库 > LAMP相关Linux常用操作

LAMP相关Linux常用操作

1,一些文件的位置

hosts文件    ----   /etc/hosts

环境变量配置文件    ---     /etc/profile

系统用户组文件       ---    /etc/group

系统用户文件          ----   /etc/passwd

各种系统可执行文件目录    ---  /etc/init.d/

2,环境变量配置方法:

export PATH="$PATH:/usr/local/php/bin/"

在shell中查看当前环境变量项目:echo   $PATH

注意:更改过环境变量文件之后需要执行:source   /etc/profile   来使之立即生效哦!

3,启动项设置

命令:chkconfig

man  chkconfig  去详细的了解一下关于chkconfig的信息吧~~

4,把apache设置成开机启动:

首先,复制apache的启动文件到/etc/init.d/目录下,命令如下:

cp  /usr/local/apache2/bin/apachectl   /etc/init.d/apache

然后给它增加可执行的权限:chmod  +x  /etc/init.d/apache

然后执行添加:chkconfig  --add  apache

会有如下提示:service apache does not support chkconfig

这个时候就需要对 /etc/init.d/apache 做一下修改,使用 vim 打开在最上面增加如下命令:

#!/bin/sh
#chkconfig: 2345 20 80

注意:需要带上“#”

然后继续执行:chkconfig  --add  apache

继续执行:chkconfig --list apache

显示:apache             0:off    1:off    2:on    3:on    4:on    5:on    6:off

表示apache在2,3,4,5级别上可以随机启动~

然后就可以使用:service  命令来启动和停止服务了,如:service  apache  start/stop/restart

最后:可以使用 chkconfig   apache   off/on   来关闭/开启 apache 是否可以随机启动




LAMP相关Linux常用操作