跳至内容
iDste
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
在ubuntu上部署公司网站
本页面只读。您可以查看源文件,但不能更改它。如果您觉得这是系统错误,请联系管理员。
=====在Ubtuntu上部署公司网站===== ==== 概述 ==== 公司网站是php项目,主要操作是将该项目成功部署Ubuntu云服务器(www.idste.com)上。 =====Ubuntu上搭建php运行环境 ===== ====1.安装Apache:==== <WRAP center round box 100%> apt-get install apache2\\ 验证apache2.0安装是否完成,在浏览器中打开http://www.idste.com/,如果出现It works!,那证明成功。 </WRAP> ====2.安装php5:==== <WRAP center round box 100%> apt-get install php5 </WRAP> ====3.配置Apache+php:==== <WRAP center round box 100%> apt-get install libapache2-mod-php5\\ 配置后重新启动Apache:/etc/init.d/apache2 restart\\ 测试php+Apache配置结果:vi /var/www/testphp.php,并输入测试内容:如HelloWorld!\\ 在浏览器中输入http://www.idste.com/testphp.php/,如果显示出测试内容,则表示配置成功。 </WRAP> ====4.安装mysql:==== <WRAP center round box 100%> apt-get install mysql-server </WRAP> ====5.让Apache、php支持mysql:==== <WRAP center round box 100%> apt-get install php5-gd php5-mysql\\ apt-get install libapache2-mod-auth-mysql </WRAP> ====6.配置后重新启动Apache:==== <WRAP center round box 100%> /etc/init.d/apache2 restart </WRAP> =====获取项目文件,完成部署 ===== ====1.获取项目安装包:==== <WRAP center round box 100%> wget --http-user=idste --http-passwd=idste http://dev.idste.org:3280/svn/release/Release/Tools/kangxinda.rar </WRAP> ====2.将打包的php项目解压:==== <WRAP center round box 100%> 解压php项目(unrar e kangxinda.rar)到/home/下,由于Apache2会自动加载/var/www下的文件,建立/var/www与php项目的连接(ln -s /home/kangxinda /var/www),这样就可以加载项目了。 </WRAP> ====3.获取备份数据库:==== <WRAP center round box 100%> wget --http-user=idste --http-passwd=idste http://dev.idste.org:3280/svn/release/Release/Tools/kangxinda.sql </WRAP> ====4.将取备份数据库导入mysql中:==== <WRAP center round box 100%> mysql -u root -p\\ 设置连接数据库的文件:common.inc.php(/home/kangxinda/data/),默认即可。\\ 创建数据库表空间:mysql> create database kangxinda\\ 退出sql编辑状态:exit\\ 导入数据:mysql -u root -p kangxinda < kangxinda.sql </WRAP> ====5.修改/etc/php5/apache2 下的php.ini文件,将request_order=GP,改为:request_order=CGP:==== <WRAP center round box 100%> vi php.ini </WRAP> ====6.配置后重新启动Apache2:==== <WRAP center round box 100%> /etc/init.d/apache2 restart </WRAP> ====验证项目部署是否成功 ==== <WRAP center round box 100%> 在浏览器中输入http://www.idste.com/,如果显示项目的信息,则表示项目运行成功。否则,根据页面提示,做相应调整即可。 </WRAP>
在ubuntu上部署公司网站.txt
· 最后更改: 2020/08/24 14:45 (外部编辑)
页面工具
显示页面
修订记录
反向链接
回到顶部