Home php教程 php手册 在CentOS6.4中安装配置LAMP环境的详细步骤

在CentOS6.4中安装配置LAMP环境的详细步骤

Jun 13, 2016 am 09:40 AM
aspnet software programming

  本文详细介绍了CentOS6.4系统中安装LAMP服务并对其进行配置的过程,即安装Apache+PHP+Mysql,参照了网上大神的设置,其他Linux发行系统可以参考~

  在本文中部分命令操作需要root权限,输入‘’命令后输入密码即可切换root身份。

设置文件允许80端口和3306端口。因为80端口是http协议所使用的端口,如果防火墙禁止80端口的话,网站配置好了也无法从外网访问。3306端口是MySql数据库的默认端口。使用VIM打开iptables文件并添加规则:

 

<span 1</span> <span 打开iptables文件进行修改
</span><span 2</span> vim /etc/sysconfig/<span iptables
</span><span 3</span> 
<span 4</span> <span 加入下列两行
</span><span 5</span> -A INPUT -p tcp -m state --state NEW -m tcp --dport <span 80</span> -<span j ACCEPT
</span><span 6</span> -A INPUT -p tcp -m state --state NEW -m tcp --dport <span 3306</span> -j ACCEPT
Copy after login

  添加好后文件应该如下图,如果以前修改过该文件责可能和笔者的图中略有不同:

  

2. 关闭SELINUX

中提供的()系统。对于目前可用的 安全模块来说,SELinux 是功能最全面基本上都是用负载均衡设备做流量分发,对外仅开放了仅有的几个端口。所以综合安全性和复杂性来说,SELinux的性价比并不高。修改文件关闭SELinux,设置后如图:

<span 1</span> vim /etc/selinux/<span config
</span><span 2</span> 
<span 3</span> <span 注释掉如下两行,在行首添加#注释。
</span><span 4</span> SELINUX=<span enforcing
</span><span 5</span> SELINUXTYPE=<span targeted
</span><span 6</span> 
<span 7</span> <span 在后面增加:
</span><span 8</span> SELINUX=disabled
Copy after login

’重启系统。

<span  1</span> <span 通过yum软件包管理器安装MySql,管理器会自动安装依赖项,遇到询问直接输入y确认,直到显示&ldquo;Complete!&rdquo;完成。
</span><span  2</span> <span yum</span> <span install</span> mysql mysql-<span server
</span><span  3</span> 
<span  4</span> <span 启动MySql
</span><span  5</span> /etc/init.d/<span mysqld start
</span><span  6</span> 
<span  7</span> <span 设置MySql服务为开机启动
</span><span  8</span> <span chkconfig mysqld on
</span><span  9</span> 
<span 10</span> <span 复制MySql默认配置文件,直接覆盖/etc/my.cnf
</span><span 11</span> <span cp</span> /usr/share/mysql/my-medium.cnf /etc/my.cnf
Copy after login

MySql设置:

<span <span 输入如下命令后需要连续输入两次密码确认,有询问输入Y同意即可,成功后显示</span></span><span Thanks for using MySQL!。</span>
Copy after login
<span mysql_secure_installation</span>
Copy after login

  设置成功后需要重启MySql服务:

<span 1</span> /etc/init.d/<span mysqld stop
</span><span 2</span> /etc/init.d/mysqld start
Copy after login

2. Apache服务的安装和配置

  

<span  1</span> <span 安装httpd
</span><span  2</span> <span yum</span> <span install</span><span  httpd
</span><span  3</span> 
<span  4</span> <span 启动Apache服务
</span><span  5</span> /etc/init.d/<span httpd start
</span><span  6</span> 
<span  7</span> <span 编辑apache设置
</span><span  8</span> vim /etc/httpd/conf/<span httpd.conf
</span><span  9</span> <span 查找 <span #ServerName www.example.com:80</span></span>
<span 10</span> <span 修改成 <span ServerName</span> <span www.XXXX.com:80</span></span> 
<span 11</span> <span 其中的&ldquo;www.XXXX.com&rdquo;自己的域名,没有可设置为localhost,如图
</span><span 12</span> 
<span 13</span> <span 设置Apache服务开机启动
</span><span 14</span> <span chkconfig httpd on
</span><span 15</span> 
<span 16</span> <span 重启Apache服务
</span><span 17</span> /etc/init.d/httpd restart
Copy after login

3.安装PHP

  

<span 遇到询问直接输y确认
</span><span yum</span> <span install</span> php
Copy after login

  安装PHP插件:

<span 插件包括MySql支持等,遇到询问一如既往的y确认~~
</span><span yum</span> <span install</span> php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt
Copy after login

  安装完成后不要忘了重启Apache和MySql:

/etc/init.d/<span mysqld restart
</span>/etc/init.d/httpd restart
Copy after login
Copy after login

  

  到此软件的安装就结束了,接下来进行配置和测试。

<span  1</span> <span 编辑文件Apache设置文件
</span><span  2</span> <span vi</span> /etc/httpd/conf/<span httpd.conf
</span><span  3</span> 
<span  4</span> <span <span 44行:</span> 修改 <span ServerTokens OS</span>  为 <span ServerTokens Prod
</span></span><span  5</span> <span 防止错误页显示操作系统名字
</span><span  6</span> 
<span  7</span> <span <span 76行:</span> 修改 <span KeepAlive Off</span> 为 <span KeepAlive On
</span></span><span  8</span> <span 允许程序性联机
</span><span  9</span> 
<span 10</span> <span 83行:</span> 修改 <span MaxKeepAliveRequests 100</span> 为 <span MaxKeepAliveRequests 1000</span>
<span 11</span> <span 增加同时连接数
</span><span 12</span> 
<span 13</span> <span <span 331行:</span> 修改 <span Options Indexes FollowSymLinks</span> 为 <span Options Includes ExecCGI FollowSymLinks
</span></span><span 14</span> <span 允许服务器执行CGI及SSI,防止列出目录
</span><span 15</span> 
<span 16</span> <span <span 338行:</span> 修改 <span AllowOverride None</span>  为 <span AllowOverride All
</span></span><span 17</span> <span 允许.htaccess
</span><span 18</span> 
<span 19</span> <span <span 402行:</span> 修改 <span DirectoryIndex index.html index.html.var</span>  为 <span DirectoryIndex index.php Default.php index.html index.htm Default.html Default.htm
</span></span><span 20</span> <span 添加php默认文档
</span><span 21</span> 
<span 22</span> <span <span 536行:</span>  修改 <span ServerSignature On</span> 为 ServerSignature Off 
</span><span 23</span> <span 防止错误页显示Apache版本
</span><span 24</span> 
<span 25</span> <span <span 554行:</span> 修改 <span Options Indexes MultiViews FollowSymLinks</span>  为 <span Options MultiViews FollowSymLinks
</span></span><span 26</span> <span 不显示树状目录结构
</span><span 27</span> 
<span 28</span> <span 759行:</span> 根据需要设置为 <span AddDefaultCharset UTF-8</span><span  或者 <span AddDefaultCharset GB2312
</span></span><span 29</span> <span 笔者大多数时候都在使用UTF-8编码,所以不进行修改
</span><span 30</span> 
<span 31</span> <span 796行:</span> 修改 <span #AddHandler cgi-script .cgi</span> 为 <span AddHandler cgi-script .cgi .pl
</span><span 32</span> <span 允许扩展名为.pl的CGI脚本运行</span>
Copy after login

  修改完成后保存退出并重启Apache,删除测试网页:

/etc/init.d/<span httpd restart

<span 删除测试网页
</span></span><span rm</span> -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html 
Copy after login

<span  1</span> <span 编辑php设置文件
</span><span  2</span> vim /etc/<span php.ini
</span><span  3</span> 
<span  4</span> <span 946行:</span> 修改 <span ;date.timezone = PRC</span> 为 <span date.timezone =</span><span <span  PRC</span>  <span (去掉分号)
</span></span><span  5</span> 
<span  6</span> <span 386行:</span> 修改 <span disable_functions =</span> 为 <span disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
</span><span  7</span> <span 设置PHP的禁用函数,若程序中需要使用的函数可以删除掉。
</span><span  8</span> 
<span  9</span> <span 432行:</span> 设置 <span expose_php = Off
</span><span 10</span> <span 禁止显示php版本的信息
</span><span 11</span> 
<span 12</span> <span 745行:</span> 设置 <span magic_quotes_gpc = On
</span><span 13</span> <span 打开magic_quotes_gpc,用于防止SQL注入
</span><span 14</span> 
<span 15</span> <span 229行:</span> 设置 <span short_open_tag = ON
</span><span 16</span> <span 支持php短标签
</span><span 17</span> 
<span 18</span> <span 380行:</span> 设置 <span open_basedir = .:/tmp/</span> 
<span 19</span> <span 设置允许访问的目录和/tmp/目录,防止php木马跨站</span>
Copy after login

  修改完成保存后重启服务:

/etc/init.d/<span mysqld restart
</span>/etc/init.d/httpd restart
Copy after login
Copy after login

  输入“

<span 1</span> <?<span php
</span><span 2</span>     <span phpinfo</span><span ();
</span><span 3</span> ?>
Copy after login

  保存退出后在浏览器中输入localhost查看php信息:

apache.apache -R /var/www/html

 

Statement of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The combination of Vue.js and ASP.NET provides tips and suggestions for performance optimization and expansion of web applications. The combination of Vue.js and ASP.NET provides tips and suggestions for performance optimization and expansion of web applications. Jul 29, 2023 pm 05:19 PM

The combination of Vue.js and ASP.NET provides tips and suggestions for performance optimization and expansion of web applications. With the rapid development of web applications, performance optimization has become an indispensable and important task for developers. As a popular front-end framework, Vue.js combined with ASP.NET can help us achieve better performance optimization and expansion. This article will introduce some tips and suggestions, and provide some code examples. 1. Reduce HTTP requests The number of HTTP requests directly affects the loading speed of web applications. pass

MySQL connection pool usage and optimization techniques in ASP.NET programs MySQL connection pool usage and optimization techniques in ASP.NET programs Jun 30, 2023 pm 11:54 PM

How to correctly use and optimize the MySQL connection pool in ASP.NET programs? Introduction: MySQL is a widely used database management system that features high performance, reliability, and ease of use. In ASP.NET development, using MySQL database for data storage is a common requirement. In order to improve the efficiency and performance of database connections, we need to correctly use and optimize the MySQL connection pool. This article will introduce how to correctly use and optimize the MySQL connection pool in ASP.NET programs.

Ten ways generative AI will change software development Ten ways generative AI will change software development Mar 11, 2024 pm 12:10 PM

Translator | Reviewed by Chen Jun | Chonglou In the 1990s, when people mentioned software programming, it usually meant choosing an editor, checking the code into the CVS or SVN code base, and then compiling the code into an executable file. Corresponding integrated development environments (IDEs) such as Eclipse and Visual Studio can integrate programming, development, documentation, construction, testing, deployment and other steps into a complete software development life cycle (SDLC), thus improving the work of developers. efficiency. In recent years, popular cloud computing and DevSecOps automation tools have improved developers' comprehensive capabilities, making it easier for more enterprises to develop, deploy and maintain software applications. Today, generative AI is the next generation development

How to reconnect to MySQL in ASP.NET program? How to reconnect to MySQL in ASP.NET program? Jun 29, 2023 pm 02:21 PM

How to reconnect to MySQL in ASP.NET program? In ASP.NET development, it is very common to use the MySQL database. However, due to network or database server reasons, the database connection may sometimes be interrupted or time out. In this case, in order to ensure the stability and reliability of the program, we need to re-establish the connection after the connection is disconnected. This article will introduce how to reconnect MySQL connections in ASP.NET programs. To reference the necessary namespaces first, reference them at the head of the code file

The combination of Vue.js and ASP.NET enables the development and deployment of enterprise-level applications The combination of Vue.js and ASP.NET enables the development and deployment of enterprise-level applications Jul 29, 2023 pm 02:37 PM

The combination of Vue.js and ASP.NET enables the development and deployment of enterprise-level applications. In today's rapidly developing Internet technology field, the development and deployment of enterprise-level applications has become more and more important. Vue.js and ASP.NET are two technologies widely used in front-end and back-end development. Combining them can bring many advantages to the development and deployment of enterprise-level applications. This article will introduce how to use Vue.js and ASP.NET to develop and deploy enterprise-level applications through code examples. First, we need to install

How to correctly configure and use MySQL connection pool in ASP.NET program? How to correctly configure and use MySQL connection pool in ASP.NET program? Jun 29, 2023 pm 12:56 PM

How to correctly configure and use MySQL connection pool in ASP.NET program? With the development of the Internet and the increase in data volume, the demand for database access and connections is also increasing. In order to improve the performance and stability of the database, connection pooling has become an essential technology. This article mainly introduces how to correctly configure and use the MySQL connection pool in ASP.NET programs to improve the efficiency and response speed of the database. 1. The concept and function of connection pooling. Connection pooling is a technology that reuses database connections. At the beginning of the program,

What are the built-in objects in aspnet? What are the built-in objects in aspnet? Nov 21, 2023 pm 02:59 PM

The built-in objects in ASP.NET include "Request", "Response", "Session", "Server", "Application", "HttpContext", "Cache", "Trace", "Cookie" and "Server.MapPath": 1. Request, indicating the HTTP request issued by the client; 2. Response: indicating the HTTP response returned by the web server to the client, etc.

Recommended configuration for ASP.NET development using Visual Studio on Linux Recommended configuration for ASP.NET development using Visual Studio on Linux Jul 06, 2023 pm 08:45 PM

Overview of the recommended configuration for using Visual Studio for ASP.NET development on Linux: With the development of open source software and the popularity of the Linux operating system, more and more developers are beginning to develop ASP.NET on Linux. As a powerful development tool, Visual Studio has always occupied a dominant position on the Windows platform. This article will introduce how to configure VisualStudio for ASP.NE on Linux

See all articles