search
HomeBackend DevelopmentPHP Tutorial阿里云centos部署apache+php

       经过一个下午的尝试,终于完成了阿里云apache+php服务器的搭建,我的数据库用的是阿里云的RDS,不需要在服务器中安装mysql了。在我的服务器中最后部署了phpMyAdmin,测试可以管理RDS上的数据库。服务器的搭建宣布完成。留下了做个记录。下次再部署的话就不用大量的搜索和尝试了。

一、下载Xshell+xftp,安装xftp。

二、Xshell新建连接,服务器的外网IP,用户名:root,密码:连接服务的密码



三、打开刚创建的连接,确保成功连接到服务器


四、因为我没有买数据盘,所以数据盘的挂载略过;

五、安装apache,执行 yum install httpd 安装apache。

        执行:chkconfig --levels 235 httpd on 使apache开机自启动,执行:chkconfig --list 可以查看设置是否成功

六、在浏览器中输入服务器地址访问,如果正常打开页面,说明apache安装成功;

七、安装PHP,执行 yum install php安装;安装完成php后,执行命令安装 yum install php-mysql php-gd php-imap php-mbstring 等php模块,我暂时用这几个。

八、新建一个php文件,index.php。

        内容:

       

<span style="font-family:Microsoft YaHei;font-size:14px;">	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">	<title>my www</title>	<?php phpinfo()	?></span>
        将文件上传到服务器中 /var/www/html/ 目录下。

九、在浏览器中输入服务器地址访问,如果正常打开如下页面,说明php安装成功

十、我买了阿里云RDS数据库,所以没有安装mysql。如果需要安装mysql,执行命令 yum -install mysql-server,自启动设置同apache,具体的配置我没有尝试。

十一、部署phpMyAdmin到服务器上,管理RDS上的远程数据库。

          下载phpMyAdmin,解压后上传到服务的 /var/www/html/ 目录中。

          

           进入phpMyAdmin配置文件目录 /var/www/html/phpMyAdmin/libraries/,

           编辑config.default.php文件(执行:vim config.default.php)

           设置$cfg['Servers'][$i]['host'] = '(RDS内网地址)';(因为服务器是阿里云的,所以可以直接用RDS的内网地址访问数据库)

           保存,退出(:wq)

           在浏览器中输入:服务器地址/phpMyAdmin/

          

输入用户名和密码,执行->

大功告成!!!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools