- 1、本文档共5页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
在虚拟机下安装了个 CentOS,5.6版本的。利用 NAT模式与宿主 pc 共享上网!
当然可以采用编译源码的方式搭建 lamp。这里只是介绍快速搭建 php 开发框架的方法。其实也没什么,主要是是是使用 linux 的 yum 来在线安装。如果上不了网请查找编译源码搭建 lamp 的文章。网上 N 多的哈^_^
安装 mysql 数据库
命令行下:yum -y install mysql mysql-server
Setting up Install Process Setting up repositories...
Installed: mysql-server.i386 0:4.1.20-1.RHEL4.1
Dependency Installed: mysql.i386 0:2.9004-3.1 perl-DBI.i386 0:1.40-8
Complete!
安装完毕,配置 mysql:
0:4.1.20-1.RHEL4.1 perl-DBD-MySQL.i386
命令行下:vi /etc/f 提示:红色字为添加的行,主要是设置数据库默认的字符集为 utf8
[mysqld] datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock user=mysql
# Default to using old password format for compatibility with mysql 3.x # clients (those using the mysqlclient10 compatibility package). old_passwords=1
default-character-set = utf8
# Disabling symbolic-links is recommended to prevent assorted security risks; # to do so, uncomment this line:
# symbolic-links=0
[mysql]
default-character-set = utf8
保存退出后,设置 mysql 服务随系统自启动, 命令行下:chkconfig mysqld on
可以通过 chkconfig --list mysqld 查看设置状态,显示 mysqld 0:off 1:off 2:on 3:on
4:on 5:on 6:off,2~5显示 On 就可以了。
启动 mysql 服务, /etc/rc.d.init.d/mysqld start
Initializing MySQL database: [ OK ]
Starting MySQL: [ OK ]
可以登录 mysql 进行测试:mysql -u -root *(默认 root 的密码是空的)
出现提示符“mysql〉”后,设置 root 的密码。以下动作出于安全考虑:
命令行下:mysql use mysql;
mysql set password for root@localhost = password(你的密码); mysql set password for root@localhost.localdomain=password( 你
的密码);
删除匿名用户: mysql delete from user where user=;
删除测试数据库: mysql drop database test;
至此,mysql 数据安装完成,可以用 sql 操作 mysql 测试。
安装 apache
命令行下:yum -y install apache
Setting up Install Process Setting up repositories
Complete!
接下来配置 apache,编辑 Apache 的配置文件,命令行下: vi /etc/httpd/conf/httpd.conf
#
# Dont give away too much information about all the subcomponents # we are running. Comment out this line if you dont mind remote sites # finding out what major optional modules you are running
ServerTokens OS ← 找到这一行,将“OS”改为“Prod”(在出现错误页的时候不显示服务器
操作系统的名称)
↓
ServerTokens Prod ← 变为此状态
#
# Optionally add a line co
文档评论(0)