CentOS 7 安装MySQL+PHP环境

环境:

Apache 2.2.27

MySQL 5.1.72

libiconv 1.14

##Apache 请自行使用编译安装.内容从我自己的word复制过来的,wold里面是好的,有的地方复制过来就重叠了,看的时候注意下

1 解压mysql

tar zxvf mysql-5.1.72.tar.gz

cd mysql-5.1.72/

2 新建一个文件填入如下参数,可以直接复制,参数看个人所需求吧,不一定要这些,还有很多参数。

vim 1.txt

./configure \

扫描二维码关注公众号,回复: 2011799 查看本文章

--prefix=/application/mysql5.1.72 \

--with-unix-socket-path=/application/mysql5.1.72/tmp/mysql.sock\

--localstatedir=/application/mysql5.1.72/data\

--enable-assembler \

--enable-thread-safe-client \

--with-mysqld-user=mysql \

--with-big-tables \

--without-debug \

--with-pthread \

--enable-assembler \

--with-extra-charsets=complex \

--with-readline \

--with-ssl \

--with-embedded-server \

--enable-local-infile \

--with-plugins=partition,innobase \

--with-mysqld-ldflags=-all-static \

--with-client-ldflags=-all-static

3 开始编译mysql

cat 1.txt | bash

      提示:

      checkingfor termcap functions library... configure: error: No curses/termcap libraryfound

            解决:yum install      ncurses-static.x86_64    -y

0

##查看是否有错误,如果非零说明有错误

##调优去版本号

提示:这里的路径一定要和上面编译的路劲一样否则会出错

提示:mysql_install_db里还有其他参数可以通过”./mysql_install_db  --help”,一定不能忘记”./”

提示:出现的问题看情况和需求而定

出现两个OK,而且没有其他问题就是好了,安全初始化成功

##输入前面设置的密码就可以进入mysql了

下面开始安装PHP

1 解压

提示:错误./stdio.h:1010:1: error: ‘gets’undeclared here (not in a function)

 _GL_WARN_ON_USE (gets, "gets is asecurity hole - use fgets instead");

解决:

698行的代码:_GL_WARN_ON_USE (gets, "gets is a security hole - use fgetsinstead");替换为:

#if defined(__GLIBC__)&& !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16)

 _GL_WARN_ON_USE (gets, "gets is asecurity hole - use fgets instead");

#endif

##这个问题centos6.8里没有遇到过

##以上是安装PHP所必须的包,一个不能落下

2 新建一个文件填入如下参数,可以直接复制,参数看个人所需求吧,不一定要这些,还有很多参数。

./configure \

--prefix=/application/php5.3.27 \

--with-apxs2=/application/apache/bin/apxs \

--with-mysql=/application/mysql \

--with-xmlrpc \

--with-openssl \

--with-zlib \

--with-freetype-dir \

--with-gd \

--with-jpeg-dir \

--with-png-dir \

--with-iconv=/usr/local/libiconv \

--enable-short-tags \

--enable-sockets \

--enable-zend-multibyte \

--enable-soap \

--enable-mbstring \

--enable-static \

--enable-gd-native-ttf \

--with-curl \

--with-xsl \

--enable-ftp \

--with-libxml-dir

##上面apache的路劲和mysql路径必须正确。

/home/tools/LAMP/php-5.3.27

 

4编辑httpd配置文件

    DirectoryIndex index.html index.php

##在169行添加index.php

  AddTypeapplication/x-httpd-php  .php  .phtml(注意.php和.phtml的空格)

AddTypeapplication/x-httpd-php-source  .phps(注意.phps前的空格)

wKiom1jgdNfgBX8tAAAc8BZuZ4c199.png

##在311行添加上面两个配置

去站点下添加一个index.php页面,测试PHP和mysql的工作状态是否OK

vim index.php

<?php

       //$link_id=mysql_connect('主机名','用户','密码');

       $link_id=mysql_connect('localhost','root','*******') or mysql_error();

 

       if($link_id){

       }else{

                echo mysql_error();

       }

?>

猜你喜欢

转载自www.linuxidc.com/Linux/2017-04/142641.htm
今日推荐