1.64位CentOS 6.0下搭建LAMP环境详细步骤
2.LAMP和LNMP区别是源码什么?
3.CentOS7.9基于PHP8.0+Apache+MySQL安装Nextcloud
4.LAMP平台安装Xcache和Memcached加速网站运行
5.lampLAMP安装
64位CentOS 6.0下搭建LAMP环境详细步骤
这篇文章主要介绍了系统环境:Centos6.0 x的lamp运行环境配置教程,需要的源码朋友可以参考下1、确认搭建LAMP所需要的源码环境是否已经安装
[root@centos6 ~]# rpm -q make gcc gcc-c++ zlib-devel libaio
备注:安装libpng时候需要zlib-devel
安装mysql时候需要libaio
2、如果没安装则yum安装
[root@centos6 ~]# yum install make gcc gcc-c++ zlib-devel libaio -y
3、源码关于struts配置源码由于要使用编译安装,源码所以查看f /etc/my.cnf(将当前目录下的源码如何应用php源码配置文件拷贝到系统配置文件下,并更名为my.cnf)
[root@centos6 mysql]# cp support-files/mysql.server /etc/init.d/mysqld
[root@centos6 mysql]# chmod +x /etc/init.d/mysqld
[root@centos6 mysql]# chkconfig --add mysqld
[root@centos6 mysql]# chkconfig --level mysqld on
[root@centos6 mysql]# service mysqld restart
[root@centos6 mysql]#
/usr/local/mysql/bin/mysqladmin -u root password ''(设置root用户登录mysql的源码密码)
[root@centos6 mysql]# /usr/local/mysql/bin/mysql -u root –p(进入并访问mysql数据)
Enter password:
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 2
Server version: 5.5.-log MySQL Community Server (GPL)
Copyright (c) , , Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
mysql(成功登录mysql)
、 编译安装php
[root@centos6 LAMP]# pwd
/tmp/LAMP
[root@centos6 LAMP]# tar -zxvf php-5.3.7.tar.gz
[root@centos6 LAMP]# cd ./php-5.3.7
[root@centos6 php-5.3.7]#
./configure --prefix=/usr/local/php/ --with-apxs2=/usr/local/apache/bin/apxs --with-libxml-dir=/usr/local/libxml2/ --with-jpeg-dir=/usr/local/jpeg/ --with-freetype-dir=/usr/local/freetype/--with-gd-dir=/usr/local/gd/--with-zlib-dir=/usr/local/zlib/--with-mcrypt=/usr/local/libmcrypt/--with-mysqli=/usr/local/mysql/bin/mysql_config --enable-soap --enable-mbstring=all --enable-sockets
[root@centos6 php-5.3.7]# make ; make install
[root@centos6 php-5.3.7]#
cp php.ini-development /usr/local/php/lib/php.ini
#vim /usr/local/php/lib/php.ini
//这里需要将register_globals=Off更改on模式,源码还有时间格式改为本地
、源码 更改apache的源码配置文件,达到解析php文件的源码目的
[root@centos6 ~]# vim /usr/local/apache/conf/f
PHP:/etc/php.ini /etc/php.d
pure-ftpd:/etc/pure-ftpd.conf
特别注意,mysql的源码root密码存储在/root/my.cnf文件中,添加虚拟主机时需要使用。源码android查询类源码若修改了root密码,源码需手动更新my.cnf文件以保持同步。源码扩展资料
Linux+Apache+Mysql+Perl/PHP/Python一组常用来搭建动态网站或者服务器的如何反编译源码开源软件,本身都是各自独立的程序,但是因为常被放在一起使用,拥有了越来越高的圈子系统源码兼容度,共同组成了一个强大的Web应用程序平台。随着开源潮流的蓬勃发展,开放源代码的LAMP已经与J2EE和.Net商业软件形成三足鼎立之势,并且该软件开发的项目在软件方面的投资成本较低,因此受到整个IT界的关注。从网站的流量上来说,%以上的访问流量是LAMP来提供的,LAMP是最强大的网站解决方案.