码迷,mamicode.com
首页 > 其他好文 > 详细

yum 在线安装LAMP

时间:2014-07-01 19:23:45      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   文件   

系统环境:Centos6.5 x64

虚拟机:vmware10

网络连接:桥接,选好之后在选择网卡(本机实际上网走的网卡)

bubuko.com,布布扣

 

bubuko.com,布布扣

 

 

设置网络:
setup (网络这设置工具)

 

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

 

bubuko.com,布布扣

service network restarts(重启网络)

 

桥接用的是自己网卡的网络,想要虚拟机上网,必要要四个条件:ip地址,子网掩码,网关,DNFS服务器(写自己当地的DNS服务器地址)

比如你网卡ip 是192.168.1.100,那虚拟机ip 就在是192.168.1.x 网段(写个没人用的如133)

子网掩码:255.255.255.0

网关:就是路由器地址 我这是192.168.1.1

DNS服务器 :写你所在地DNS所在服务器,或者其他8.8.8.8,8.8.4.4

 

yum 一键安装环境

yum -y install httpd mysql mysql-server php* 

service httpd restart (报错是由于 配置文件httpd.conf里面的 ServerName前面#号没有去掉,无视,也可以改成ServerName localhost)

chkconfig httpd on (把apache加入开启启动)

chkconfig --list httpd (查看是否加入开机启动成功:2到5是启用表示成功加入)

vi /etc/httpd/conf/httpd.conf (修改配置文件)


402行:修改为DirectoryIndex index.php index.html index.htm(优先执行index.php)

780行:添加AddType application/x-httpd-php .php(解释php)

mysql 配置

service mysqld restart (启动)

chkconfig mysqld on

chkconfig --list mysqld(3-5启用)

vi /etc/my.cnf (修该配置文件,如果不存在这个my.cnf 那就 cp /usr/share/mysql/my-medium.cnf  /etc/my.cnf)

在[mysqld]下面加入:default-character-set=utf8

设置mysql 密码 mysqladmin -u root password 123123 (会有报错,无视)

mysql -uroot -p123123 (成功进入mysql)

php配置

vi /etc/php.ini

229行:short_open_tag = On (开短标记,就是支持<? ?>)

yum 在线安装LAMP,布布扣,bubuko.com

yum 在线安装LAMP

标签:style   blog   http   color   strong   文件   

原文地址:http://www.cnblogs.com/bgcolor/p/3817139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!