阿里云 centos 安装apache和php

mysql使用阿里云的rds

httpd服务

1. 安装apr和apr-util

2. 安装 httpd

apache.org,apr.apache.org

安装命令:

./configure --prefix=/usr/local/apache  --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-mpm --with-mpm=worker

这里的with-mpm=worker自己确认选择哪一种模式,个人推荐worker

配置httpd.conf

主要是性能参数配置和vhosts配置

3. 安装php

./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql --with-mysqli --enable-mysqlnd --with-pdo-mysql --with-mysql-sock=/tmp/mysql.sock --with-gd --with-iconv --with-zlib --enable-xml --enable-inline-optimization --with-curl=/usr --enable-mbregex --enable-fpm --enable-mbstring --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --with-bz2 --enable-soap --with-pear --with-gettext --enable-session --with-mcrypt --with-curl --with-gd --with-png-dir=/usr --with-libxml-dir=/usr --enable-exif --enable-bcmath --enable-shmop --enable-sysvsem --enable-sysvmsg --enable-sysvshm --with-mhash --with-openssl

这里不需要 mysql_sock

时间: 2024-11-13 10:11:49

阿里云 centos 安装apache和php的相关文章

阿里云centos安装docker-engine实践

近日在阿里云ECS服务器(centos系统)中安装docker,参考官方指南 https://docs.docker.com/engine/installation/linux/centos/  大概流程都能跑通,但是中途发生了一些意外情况,特记录备案以免后来再次踩坑. 一.需要有登录ECS的工具(推荐Xshell)和拥有root权限的用户. 二.确保linux内核版本是3.10以上并且是64位的centos版本.如果不能满足这个前提,建议看官绕道走吧. 检查linux版本命令如下 $ unam

阿里云centos部署apache+php

经过一个下午的尝试,终于完成了阿里云apache+php服务器的搭建,我的数据库用的是阿里云的RDS,不需要在服务器中安装mysql了.在我的服务器中最后部署了phpMyAdmin,测试可以管理RDS上的数据库.服务器的搭建宣布完成.留下了做个记录.下次再部署的话就不用大量的搜索和尝试了. 一.下载Xshell+xftp,安装xftp. 二.Xshell新建连接,服务器的外网IP,用户名:root,密码:连接服务的密码 三.打开刚创建的连接,确保成功连接到服务器 四.因为我没有买数据盘,所以数据

阿里云 CentOS 安装JDK

初用阿里云,使用centOS linux64操作系统 . 自己上传jdk文件总是安装失败,原因估计是因为我的网络不好,导致文件损坏. 解决办法,直接在linux命令行模式下,到官网下载 jdk,命令如下 : wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/

阿里云CentOS安装PostgreSQL

在PostgreSQL官方文档:https://www.postgresql.org/download/linux/redhat/ 有选项和说明 1.检查有没安装:rpg -ga | grep postgresql 2.下载 从上述网址得到YUM地址,即在终端输入:yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-7-x86_64/pgdg-centos11-11-2.noarch.rpm 注意:整个

阿里云centos安装docker

近期转向core开发,mssql也支持了docker,索性把手上的一台服务改成centos做测试开发.中间安装docker碰到的问题做个记录. docker版本 docker从1.13版本之后采用时间线的方式作为版本号,分为社区版CE和企业版EE.Docker CE即社区免费版,Docker EE即企业版,付费使用. 初次安装问题 直接用yum安装docker,一次就成功,正常启动.但是修改/etc/docker/daemon.json后无法正常启动docker. 提示: unable to c

阿里云 centos7 安装apache php mysql环境

采用yum安装 启动apache #systemctl start  httpd.service 安装mysql5.6 # wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # rpm -ivh mysql-community-release-el7-5.noarch.rpm # yum install mysql-community-server -y #systemctl start  httpd.s

阿里云Centos 安装 jdk,tomcat,mysql

在服务器安装文件上传和下载工具: yum -y install lrzsz 一.安装 jdk 1. 源码包准备: 1.1 下载jdk,http://www.oracle.com/technetwork/java/javase/downloads/index.html 1.2 使用 rz 命令将包上传到你希望存的目录,传好后解压文件: tar -zxvf filename 2. 配置文件: 2.1 设置环境变量: vi /etc/profile, 在最后添加: JAVA_HOME=/usr/loc

【CentOS】阿里云CentOS安装php环境

本文在介绍安装php环境前,已安装了nginx.mysql. 一.安装 使用国内的搜狐镜像站下载php5.6安装包,执行: wget  http://mirrors.sohu.com/php/php-5.6.2.tar.gz 安装之前,先安装php5.6编译时所依赖的软件包.如下: yum -y install gcc gcc-c++ libxml2 libxml2-devel 接下来解压安装php5.6,先执行解压: tar -xf php-5.6.2.tar.gz 接着进入php5.6的解压

阿里云centos 安装 nodejs npm express

yum check-update vi /etc/vsftpd/vsftpd.conf anonymous_enable=NO service vsftpd startuseradd -s /sbin/nologin -d /var/www/ aatii(为默认ftp路径)设置密码chown -R aatii /usr/local/lib yum install gcc gcc-c++ 编译wget http://...tar xvf node-vXXXX.tar.gzcd node-v*./c