91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

centos7 安裝apache+mysql+php環境

發布時間:2020-06-30 13:53:52 來源:網絡 閱讀:2123 作者:vperson 欄目:MySQL數據庫

環境:

Centos 7.0

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/

[root@fangshaoxia support-files]# useradd-M -s /sbin/nologin mysql

 

2 新建一個文件填入如下參數,可以直接復制,參數看個人所需求吧,不一定要這些,還有很多參數。

 

vim 1.txt

./configure \

--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

[root@fangshaoxia mysql-5.1.72]# echo $?

0

##查看是否有錯誤,如果非零說明有錯誤

 

[root@fangshaoxia mysql-5.1.72]# make  

[root@fangshaoxia mysql-5.1.72]# echo $?

[root@fangshaoxia mysql-5.1.72]#make    install

[root@fangshaoxia mysql-5.1.72]# echo $?

[root@fangshaoxia mysql-5.1.72]# cd   support-files/

[root@fangshaoxia support-files]# cp   my-medium.cnf /etc/my.cnf

[root@fangshaoxia support-files]# cd      /application/

[root@fangshaoxia application]# ln -s   /application/mysql5.1.72/ mysql

##調優去版本號

[root@fangshaoxia bin]# cd      /application/mysql/bin/

[root@fangshaoxia bin]# mkdir    /application/mysql/data     -p

提示:這里的路徑一定要和上面編譯的路勁一樣否則會出錯

[root@fangshaoxiabin]#./mysql_install_db     --basedir=/application/mysql     --datadir=/application/mysql/data     --user=mysql

提示:mysql_install_db里還有其他參數可以通過”./mysql_install_db  --help”,一定不能忘記”./”

[root@fangshaoxiabin]# cd /application/

[root@fangshaoxiaapplication]# chown -R mysql mysql5.1.72/

[root@fangshaoxiabin]# echo "export PATH=/application/mysql5.1.72/bin/:$PATH" >>/etc/profile

[root@fangshaoxiabin]# source     /etc/profile

[root@fangshaoxia support-files]# cd   /home/tools/LAMP/mysql-5.1.72/support-files/

[root@fangshaoxiasupport-files]# cp   mysql.server /etc/init.d/mysqld

[root@fangshaoxia support-files]# chmod +x   /etc/init.d/mysqld

[root@fangshaoxia support-files]#/etc/init.d/mysqld start

[root@fangshaoxia support-files]# chkconfig   --add mysqld

[root@fangshaoxia support-files]# chkconfig    mysqld     on

[root@fangshaoxia support-files]#mysql_secure_installation

提示:出現的問題看情況和需求而定

出現兩個OK,而且沒有其他問題就是好了,安全初始化成功

[root@fangshaoxia support-files]# mysql  -uroot   -p

##輸入前面設置的密碼就可以進入mysql了

 

 

下面開始安裝PHP

1 解壓

[root@fangshaoxia LAMP]# tar zxvf php-5.3.27.tar.gz

[root@fangshaoxia LAMP]# tar zxvf  libiconv-1.14.tar.gz

[root@fangshaoxia LAMP]# cd libiconv-1.14/

[root@fangshaoxia libiconv-1.14]#./configure  --prefix=/usr/local/libiconv

[root@fangshaoxia libiconv-1.14]#make         

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

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

 

解決:

[root@fangshaoxia libiconv-1.14]# vim  srclib/stdio.in.h

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里沒有遇到過


[root@fangshaoxia LAMP]# cd     php-5.3.27/

[root@fangshaoxia php-5.3.27]# yum  install   libxml2-devel.x86_64    libxml2.x86_64 openssl-devel.x86_64    libcurl-devel.x86_64    libjpeg-turbo.x86_64   libjpeg-turbo-devel.x86_64    png*    libpng-devel.x86_64    freetype.x86_64      freetype-devel.x86_64 libxslt-devel.x86_64    libxslt.x86_64

##以上是安裝PHP所必須的包,一個不能落下

 

2 新建一個文件填入如下參數,可以直接復制,參數看個人所需求吧,不一定要這些,還有很多參數。

[root@fangshaoxia php-5.3.27]# vim 1.txt

./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路徑必須正確。

[root@fangshaoxiaphp-5.3.27]# make && make installmake

 

[root@fangshaoxiaphp-5.3.27]# cd   /application/

[root@fangshaoxia application]# ln -s   php5.3.27/ php

[root@fangshaoxia application]# cd -

/home/tools/LAMP/php-5.3.27

[root@fangshaoxia php-5.3.27]# cp  php.ini-production /application/php/lib/php.ini


4編輯httpd配置文件

[root@fangshaoxia php-5.3.27]# cd  /application/apache/conf/

[root@fangshaoxia conf]# vim httpd.conf

    DirectoryIndex index.html index.php

##在169行添加index.php

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

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

centos7 安裝apache+mysql+php環境

##在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){

               echo "mysqlsuccessful by fangshaoxiade lake !";

       }else{

                echo mysql_error();

       }

?>

[root@fangshaoxia num1]# /application/apache/bin/apachectl graceful



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

日土县| 长春市| 泗洪县| 新民市| 屏南县| 遂溪县| 宁波市| 商城县| 衡山县| 常宁市| 宿迁市| 改则县| 莒南县| 涿鹿县| 谢通门县| 沂源县| 宣化县| 广丰县| 吴堡县| 英吉沙县| 荥经县| 泽库县| 丘北县| 扶沟县| 沧州市| 富锦市| 额济纳旗| 洪洞县| 泌阳县| 临颍县| 葵青区| 呼玛县| 横山县| 罗定市| 乡宁县| 罗甸县| 诸城市| 辽宁省| 会东县| 南靖县| 镇远县|