`
JadeLuo
  • 浏览: 425691 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

apache +php +postgresql 安装及配置备录

    博客分类:
  • php
阅读更多

sudo vim /etc/apt/source.list 更新源

sudo apt-get update

sudo apt-get install apache2

sudo apt-get install php5

sudo apt-get install php5-pgsql 注意不是php-pgsql   

sudo apt-get install php5-pg 验证码图形库 注意不是php-gd 注意有 5 

sudo apt-get install php5-gd && sudo service apache2 restart

官方参考 http://php.net/manual/zh/image.installation.php

 

window下开发可指定到工作目录下的项目文件夹

DocumentRoot "C:/php-yeneizhibo"  //业内直播项目名php-yeneizhibo

<Directory "C:/php-yeneizhibo">

    #

    # Possible values for the Options directive are "None", "All",

    # or any combination of:

    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    #

    # Note that "MultiViews" must be named *explicitly* --- "Options All"

    # doesn't give it to you.

    #

    # The Options directive is both complicated and important.  Please see

    # http://httpd.apache.org/docs/2.4/mod/core.html#options

    # for more information.

    #

    Options Indexes FollowSymLinks

 

    #

    # AllowOverride controls what directives may be placed in .htaccess files.

    # It can be "All", "None", or any combination of the keywords:

    #   AllowOverride FileInfo AuthConfig Limit

    #

    AllowOverride All

 

    #

    # Controls who can get stuff from this server.

    #

#    Require all granted

#   onlineoffline tag - don't remove

     Require all granted

     Allow from 127.0.0.1

     Allow from 10.0.1.128

     Allow from ::1

     Allow from localhost

</Directory>

 

# deb http://mirrors.aliyun.com/ubuntu trusty main restricted
# deb http://mirrors.aliyuncs.com/ubuntu trusty main restricted

# deb http://mirrors.aliyun.com/ubuntu trusty-updates main restricted
# deb http://mirrors.aliyuncs.com/ubuntu trusty-updates main restricted
# deb http://security.ubuntu.com/ubuntu trusty-security main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://mirrors.aliyun.com/ubuntu trusty main restricted
deb http://mirrors.aliyuncs.com/ubuntu trusty main restricted
deb-src http://mirrors.aliyun.com/ubuntu trusty main restricted
deb-src http://mirrors.aliyuncs.com/ubuntu trusty main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://mirrors.aliyun.com/ubuntu trusty-updates main restricted
deb http://mirrors.aliyuncs.com/ubuntu trusty-updates main restricted
deb-src http://mirrors.aliyun.com/ubuntu trusty-updates main restricted
deb-src http://mirrors.aliyuncs.com/ubuntu trusty-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://mirrors.aliyun.com/ubuntu trusty universe
deb http://mirrors.aliyuncs.com/ubuntu trusty universe
deb-src http://mirrors.aliyun.com/ubuntu trusty universe
deb-src http://mirrors.aliyuncs.com/ubuntu trusty universe
deb http://mirrors.aliyun.com/ubuntu trusty-updates universe
deb http://mirrors.aliyuncs.com/ubuntu trusty-updates universe
deb-src http://mirrors.aliyun.com/ubuntu trusty-updates universe
deb-src http://mirrors.aliyuncs.com/ubuntu trusty-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://mirrors.aliyun.com/ubuntu trusty multiverse
deb http://mirrors.aliyuncs.com/ubuntu trusty multiverse
deb-src http://mirrors.aliyun.com/ubuntu trusty multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu trusty multiverse
deb http://mirrors.aliyun.com/ubuntu trusty-updates multiverse
deb http://mirrors.aliyuncs.com/ubuntu trusty-updates multiverse
deb-src http://mirrors.aliyun.com/ubuntu trusty-updates multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu trusty-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://mirrors.aliyun.com/ubuntu trusty-backports main restricted universe multiverse
deb http://mirrors.aliyuncs.com/ubuntu trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyuncs.com/ubuntu trusty-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu trusty-security main restricted
deb-src http://security.ubuntu.com/ubuntu trusty-security main restricted
deb http://security.ubuntu.com/ubuntu trusty-security universe
deb-src http://security.ubuntu.com/ubuntu trusty-security universe
deb http://security.ubuntu.com/ubuntu trusty-security multiverse
deb-src http://security.ubuntu.com/ubuntu trusty-security multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu trusty partner
# deb-src http://archive.canonical.com/ubuntu trusty partner

## Uncomment the following two lines to add software from Ubuntu's
## 'extras' repository.
## This software is not part of Ubuntu, but is offered by third-party
## developers who want to ship their latest software.
# deb http://extras.ubuntu.com/ubuntu trusty main
# deb-src http://extras.ubuntu.com/ubuntu trusty main

 

分享到:
评论

相关推荐

    PHP教程大全

    通常,PHP与Apache服务器结合使用,形成LAMP(Linux、Apache、MySQL、PHP)或WAMP(Windows、Apache、MySQL、PHP)平台。安装过程中,需要确保PHP模块正确配置,例如,开启GD库用于图像处理,或者安装mysqli扩展以...

    PHP实例开发源码-php某设计公司整站打包下载.zip

    为了深入学习和理解这个网站的工作原理,你需要解压文件,浏览源代码,并可能需要安装和配置相应的运行环境来运行和调试。 通过研究这个实例,你可以了解到实际项目中的代码结构、最佳实践和常见问题解决方案,这...

    基于PHP的创业网站源码.zip

    了解如何在服务器上安装和配置PHP、Web服务器(如Apache或Nginx)以及如何进行版本控制(如Git)是成功运行网站的必备知识。 以上内容涵盖了基于PHP的创业网站源码可能涉及的主要知识点,实际源码中还可能包含更多...

    基于php的图书管理系统.zip

    PHP支持多种Web服务器,如Apache和Nginx,并且与各种数据库(如MySQL、PostgreSQL)有良好的集成,这使得它在构建Web应用时具有高灵活性和可扩展性。 【子文件名称列表】: CMS-LibraryManager-main "CMS-Library...

    基于PHP的信呼在线客服系统.zip

    11. **部署和配置**:系统可能包括了部署文档,指导如何在服务器上安装和配置所有必需的组件,如Web服务器(Apache或Nginx)、PHP解释器、数据库服务等。 12. **测试与维护**:开发完成后,系统需经过单元测试、...

    Linux建站技术大全

    了解如何安装、配置和优化这些服务器是核心技能。同时,学习SSL/TLS证书配置,确保网站的安全通信至关重要。 3. **域名与DNS**:理解域名解析系统(DNS)的工作原理,知道如何配置域名解析记录,使网站能通过互联网...

    keepalived2.0.8

    2. 数据库集群:用于MySQL、PostgreSQL等数据库的主备切换,确保数据服务的稳定运行。 3. API网关:在API网关层部署Keepalived,可以实现API请求的负载均衡和故障切换。 4. 微服务架构:在微服务环境中,Keepalived...

    LINUX网站建设技术指南

    学习如何安装、配置这些服务器,包括设置虚拟主机、SSL证书配置以及日志管理,是网站上线的前提。 3. **数据库管理**:MySQL、PostgreSQL等数据库管理系统在网站开发中不可或缺。了解SQL语言,学会创建、查询、更新...

    zabbix学习文档

    ### Zabbix 学习文档知识点总结 #### 一、Zabbix 概览 **Zabbix 简介:** Zabbix 是一款企业级开源监控工具,...以上内容涵盖了Zabbix从安装到高级配置的各个方面,旨在帮助读者全面了解Zabbix的使用方法和最佳实践。

    OTRS管理员手册

    《OTRS管理员手册》是专为OTRS系统管理员编写的详尽...总之,《OTRS管理员手册》是理解OTRS系统功能、安装配置、日常管理和故障排除的必备资料,对于任何希望提升客户服务质量和效率的企业来说,都是不可或缺的指南。

    latimsys

    2. PHP与Web服务器:PHP通常与Apache、Nginx等Web服务器配合使用,通过解析.php文件,将PHP代码转换为HTTP响应发送给客户端。配置PHP与Web服务器的集成是部署PHP应用的重要步骤。 3. MVC架构:在现代PHP开发中,...

    学术跟进

    9. 部署和优化:了解如何配置Nginx或Apache服务器、使用Composer管理依赖、优化PHP-FPM配置以及使用OPcache提升性能,都是实际项目中不可或缺的技能。 10. 版本控制:使用Git进行版本控制,可以方便地协作开发和...

    RPP程序III

    10. **部署和优化**:了解如何配置服务器环境(如Apache或Nginx)、使用PHP-FPM提升性能、使用OPCache加速代码执行以及监控和调试技巧也是PHP开发者必备的技能。 在"RPP程序III"中,我们可能看到的是一个使用了上述...

    后台开发 核心技术与应用实践

    6. **服务器与部署**:了解服务器操作系统(如Linux),熟悉Nginx或Apache等Web服务器的配置,以及Docker容器化技术对于部署和运维至关重要。版本控制工具如Git也是必备技能。 7. **负载均衡与集群**:随着业务增长...

    乐清同城网(全站源码)下载

    11. **部署与服务器配置**:源码可能包括了部署指南,说明如何将网站部署到服务器,如Nginx或Apache的配置,以及环境变量的设置。 12. **响应式设计**:随着移动设备的普及,网站必须具备良好的跨平台兼容性,源码...

    [整站程序]自由的Linux(LinuxOpe.com)全站程序_linuxope.com.rar

    这个项目可能涉及到使用Apache、Nginx等Web服务器,或者使用像Docker这样的容器化技术进行部署。此外,配置文件、SSL证书和自动化部署工具如Git和Jenkins也可能出现在源码中。 【版本控制】 源码管理工具如Git对于...

    成绩管理系统

    2. **数据库管理**:为了存储学生信息和成绩,系统会依赖关系型数据库,如MySQL、SQLite或PostgreSQL。数据库设计应包括学生表(包含姓名、学号等)、课程表和成绩表,确保数据的一致性和完整性。 3. **后端开发**...

    WEBDEV:漫长的Web开发项目

    6. **数据库设计**:根据项目需求选择关系型(如MySQL、PostgreSQL)或非关系型(如MongoDB、Redis)数据库,并设计合理的数据模型。 7. **响应式设计**:确保网页在不同设备(桌面、平板、手机)上都能良好显示,...

Global site tag (gtag.js) - Google Analytics