zoukankan      html  css  js  c++  java
  • centos 7 安装官方LAMP(Apache+PHP5+MySQL)

    启用Apache2

    yum install httpd

    systemctl start httpd.service

    systemctl status httpd

    systemctl enable httpd.service

     



    vi /etc/httpd/conf/httpd.conf #编辑文件

    ServerSignature On  #添加,在错误页中显示Apache的版本,Off为不显示

    Options Indexes FollowSymLinks  #修改为:Options Includes ExecCGI FollowSymLinks(允许服务器执行CGI及SSI,禁止列出目录)

    #AddHandler cgi-script .cgi #修改为:AddHandler cgi-script .cgi .pl (允许扩展名为.pl的CGI脚本运行)

    AllowOverride None  #修改为:AllowOverride All (允许.htaccess)

    AddDefaultCharset UTF-8 #修改为:AddDefaultCharset GB2312 (添加GB2312为默认编码)

    #Options Indexes FollowSymLinks  #修改为 Options FollowSymLinks(不在浏览器上显示树状目录结构)

    DirectoryIndex index.html  #修改为:DirectoryIndex index.html index.htm Default.html Default.htm index.php(设置默认首页文件,增加index.php)

    MaxKeepAliveRequests 500  #添加MaxKeepAliveRequests 500 (增加同时连接数)

    :wq! #保存退出

    systemctl restart httpd.service #重启apache

    rm -f /etc/httpd/conf.d/welcome.conf /var/www/error/noindex.html #删除默认测试页

    安装MariaDB数据库

    CentOS 7.0中MariaDB替代了MySQL数据库,

    安装:yum -y install mariadb-server mariadb

    启动:systemctl start mariadb.service

    开机启动:systemctl enable mariadb.service

    配置:cp /usr/share/mysql/my-huge.cnf /etc/my.cnf  覆盖原配置就好了。

    设置数据库管理员密码:mysql_secure_installation  一路y就可以了,当然第一次y后面要输入两次密码。

    安装PHP5

    yum -y install php

    安装PHP组件,使PHP支持 MariaDB

    yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel

    重启: systemctl restart httpd.service

    配置: vi /etc/php.ini

    date.timezone = PRC #把前面的分号去掉,改为date.timezone = PRC

    disable_functions = passthru,exec,system……#列出PHP可以禁用的函数,如果某些程序需要用到这个函数,可以删除,取消禁用。

    expose_php = Off #禁止显示php版本的信息

    short_open_tag = ON #支持php短标签

    open_basedir = .:/tmp/  #设置表示允许访问当前目录(即PHP脚本文件所在之目录)和/tmp/目录,可以防止php木马跨站,如果改了之后安装程序有问题(例如:织梦内容管理系统),可以注销此行,或者直接写上程序的目录/data/www.osyunwei.com/:/tmp/

    *********************************************************************************************************************************************************

    测试一下:vi /var/www/html/index.php  输入
    <?php
    phpinfo();
    ?> 
    保存退出。
    打开http://192.168.1.108 如果能看到PHP配置信息页,说明PHP服务器正常。

    LAMP平台就搭建好了,您可以在上面搭建Worldpress网站了!

    当然也可以用yum install phpMyAdmin安装图形化管理工具。

  • 相关阅读:
    MySQL------Navicat安装与激活
    MySQL------如何将SQLServer文件数据迁移到MySQL
    WinForm------如何跳转另一个窗口,同时关闭当前窗口
    C#------如何判断输入的是否为纯数字
    WinForm------GridControl显示每行的Indicator中的行号
    WinForm------给GridControl添加搜索功能
    WinForm------分页控件dll下载地址
    WinForm------ToolTipController与GridControl的连用
    利用IE/FF的不同识别CSS来使用浏览器兼容问题
    互换两条记录中的字段值方法(有待测试,,)
  • 原文地址:https://www.cnblogs.com/k98091518/p/9100171.html
Copyright © 2011-2022 走看看