CentOS上15分钟内安装LAMP[服务器安全]
本文“CentOS上15分钟内安装LAMP[服务器安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
本文实用于全部的vps,测试环境为YARD 128M OPENVZ和IWEBFUSION 256M OPENVZ
非LNMP,非一键安装包
yum -y update
yum -y install gcc gcc-c++ authconf automake libtool libevent libevent-devel
yum -y install ncurse nucrse-devel gd gd-deevel freetype freetype-devel fontconfig fontconfig-devel libjpeg libjpeg-devel zlib zlib-devel pcre pcre-devel
yum -y install libmcrypt mhash
yum -y install mysql mysql-server mysql-devel
yum -y install httpd httpd-devel
yum -y install php*
启动apache
/etc/init.d/httpd restart
启动mysql
/etc/init.d/mysqld restart
编辑一个php测试文件
vi /var/www/html/info.php
加入:
<?php
phpinfo();
?>
目前可以通过http://ip/info.php查看信息了
比方我的测试机地址是
http://64.34.205.27/info.php
设置开机启动
chkconfig httpd on
chkconfig mysqld on
附:假如需求改正的话,那么改正配置文件便可.
附1:mysql配置文件所在位置:
# ls -l /etc/my.cnf
-rw-r--r-- 1 root root 441 Nov 4 02:53 /etc/my.cnf
#
附2:apache配置文件所在位置:
# ls -l /etc/httpd/
total 8
drwxr-xr-x 2 root root 4096 Jan 11 07:06 conf
drwxr-xr-x 2 root root 4096 Jan 11 07:03 conf.d
lrwxrwxrwx 1 root root 19 Jan 11 06:53 logs -> ../../var/log/httpd
lrwxrwxrwx 1 root root 27 Jan 11 06:53 modules -> ../../usr/lib/httpd/modules
lrwxrwxrwx 1 root root 13 Jan 11 06:53 run -> ../../var/run
#
附3:php配置文件所在位置:
# ls -l /etc/php.ini
-rw-r--r-- 1 root root 45079 Nov 30 00:53 /etc/php.ini
#
以上是“CentOS上15分钟内安装LAMP[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |