真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

docker怎么配置nginx+php+mysql

本篇內(nèi)容主要講解“docker怎么配置nginx+php+MySQL”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“docker怎么配置nginx+php+mysql”吧!

專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)開平免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了近1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

首先了解一個(gè)方法:

使用docker exec進(jìn)入Docker容器

docker在1.3.X版本之后還提供了一個(gè)新的命令exec用于進(jìn)入容器,這種方式相對更簡單一些,下面我們來看一下該命令的使用:

sudo docker exec --help

 docker怎么配置nginx+php+mysql

接下來我們使用該命令進(jìn)入一個(gè)已經(jīng)在運(yùn)行的容器

$ sudo docker ps  
$ sudo docker exec -it 775c7c9ee1e1 /bin/bash

一. 配置nginx

查找 Docker Hub 上的 nginx 鏡像

runoob@runoob:~/nginx$ docker search nginx
NAME                      DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
nginx                     Official build of Nginx.                        3260      [OK]       
jwilder/nginx-proxy       Automated Nginx reverse proxy for docker c...   674                  [OK]
richarvey/nginx-php-fpm   Container running Nginx + PHP-FPM capable ...   207                  [OK]
million12/nginx-php       Nginx + PHP-FPM 5.5, 5.6, 7.0 (NG), CentOS...   67                   [OK]
maxexcloo/nginx-php       Docker framework container with Nginx and ...   57                   [OK]
webdevops/php-nginx       Nginx with PHP-FPM                              39                   [OK]
h4nrik/nginx-ldap         NGINX web server with LDAP/AD, SSL and pro...   27                   [OK]
bitnami/nginx             Bitnami nginx Docker Image                      19                   [OK]
maxexcloo/nginx           Docker framework container with Nginx inst...   7                    [OK]
...

這里我們拉取官方的鏡像

runoob@runoob:~/nginx$ docker pull nginx

等待下載完成后,我們就可以在本地鏡像列表里查到 REPOSITORY 為 nginx 的鏡像。

runoob@runoob:~/nginx$ docker images nginx
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
nginx               latest              555bbd91e13c        3 days ago          182.8 MB

創(chuàng)建并運(yùn)行容器:
docker run --name mynginx -p 80:80 -v /var/www:/var/www -v /usr/local/nginx/conf/conf.d:/etc/nginx/conf.d -d nginx

注意:

-v 添加文件映射關(guān)系,這樣在宿主機(jī)上更改的文件可以直接映射到容器中。這里的目錄根據(jù)自己實(shí)際情況進(jìn)行映射。

創(chuàng)建并運(yùn)行容器后,docker內(nèi)的nginx即啟動(dòng)成功,無需進(jìn)入docker內(nèi)部再次啟動(dòng)nginx, 否則會(huì)提示80等端口被占用,因?yàn)閚ginx已經(jīng)啟動(dòng)。

這時(shí)候便可以訪問nginx配置的域名驗(yàn)證了。

我這里映射的conf.d主要包含nginx的配置文件,php的配置信息為:

復(fù)制代碼

# php
server {
    charset utf-8;
    client_max_body_size 128M;

    listen 80; ## listen for ipv4
    #listen [::]:80 default_server ipv6only=on; ## listen for ipv6

    server_name www.baidu.com;
    root        /var/www;
    index       index.php;

    location / {
        #-e表示只要filename存在,則為真
        if (!-e $request_filename){
            rewrite  ^(.*)$  /index.php?s=$1  last;
            break;
        }
        # Redirect everything that isn't a real file to index.php
        try_files $uri $uri/ /index.php$is_args$args;
    }

    # uncomment to avoid processing of calls to non-existing static files by Yii
    #location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
    #    try_files $uri =404;
    #}
    #error_page 404 /404.html;

    # deny accessing php files for the /assets directory
    location ~ ^/assets/.*\.php$ {
        deny all;
    }

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass 172.17.0.3:9000;
        #fastcgi_pass unix:/var/run/php5-fpm.sock;
        try_files $uri =404;
    }

    location ~* /\. {
        deny all;
    }
}

docker怎么配置nginx+php+mysql

注意最后面的fastcgi_pass的ip地址,在php配置常見問題有詳細(xì)介紹。

二. php配置

查找Docker Hub上的php鏡像

runoob@runoob:~/php-fpm$ docker search php
NAME                      DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
php                       While designed for web development, the PH...   1232      [OK]       
richarvey/nginx-php-fpm   Container running Nginx + PHP-FPM capable ...   207                  [OK]
phpmyadmin/phpmyadmin     A web interface for MySQL and MariaDB.          123                  [OK]
eboraas/apache-php        PHP5 on Apache (with SSL support), built o...   69                   [OK]
php-zendserver            Zend Server - the integrated PHP applicati...   69        [OK]       
million12/nginx-php       Nginx + PHP-FPM 5.5, 5.6, 7.0 (NG), CentOS...   67                   [OK]
webdevops/php-nginx       Nginx with PHP-FPM                              39                   [OK]
webdevops/php-apache      Apache with PHP-FPM (based on webdevops/php)    14                   [OK]
phpunit/phpunit           PHPUnit is a programmer-oriented testing f...   14                   [OK]
tetraweb/php              PHP 5.3, 5.4, 5.5, 5.6, 7.0 for CI and run...   12                   [OK]
webdevops/php             PHP (FPM and CLI) service container             10                   [OK]
...

這里我們拉取官方的鏡像,標(biāo)簽為5.6-fpm

runoob@runoob:~/php-fpm$ docker pull php:5.6-fpm

等待下載完成后,我們就可以在本地鏡像列表里查到REPOSITORY為php,標(biāo)簽為5.6-fpm的鏡像。

runoob@runoob:~/php-fpm$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
php                 5.6-fpm             025041cd3aa5        6 days ago          456.3 MB

創(chuàng)建并運(yùn)行php容器:

docker run -p 9000:9000 --name  phpfpm -v /var/www:/var/www -d php:5.6-fpm

注意這里一定要?jiǎng)?chuàng)建文件映射,或者php容器內(nèi)有對應(yīng)的php代碼。上一步nginx的文件映射,在這里是找不到的。所以如果沒有文件映射,127.0.0.1:9000 在此容器內(nèi)就找不到文件 。

常見問題:

啟動(dòng)php容器后,如果訪問nginx為:502 Bad Gateway

嘗試以下方法:

查看php鏡像的ip地址

docker inspect --format='{{.NetworkSettings.IPAddress}}' phpfpm

 
如:192.168.4.202
 
那么修改nginx的conf配置文件,使fastcgi_pass的值為 192.168.4.202:9000
vim /docker/nginx/conf.d/default.conf
fastcgi_pass 192.168.4.202:9000;


重啟nginx容器后,就可以正常訪問。

三. mysql配置

查找Docker Hub上的mysql鏡像

runoob@runoob:/mysql$ docker search mysql
NAME                     DESCRIPTION                                     STARS     OFFICIAL   AUTOMATED
mysql                    MySQL is a widely used, open-source relati...   2529      [OK]       
mysql/mysql-server       Optimized MySQL Server Docker images. Crea...   161                  [OK]
centurylink/mysql        Image containing mysql. Optimized to be li...   45                   [OK]
sameersbn/mysql                                                          36                   [OK]
google/mysql             MySQL server for Google Compute Engine          16                   [OK]
appcontainers/mysql      Centos/Debian Based Customizable MySQL Con...   8                    [OK]
marvambass/mysql         MySQL Server based on Ubuntu 14.04              6                    [OK]
drupaldocker/mysql       MySQL for Drupal                                2                    [OK]
azukiapp/mysql           Docker image to run MySQL by Azuki - http:...   2                    [OK]
...

這里我們拉取官方的鏡像,標(biāo)簽為5.6

runoob@runoob:~/mysql$ docker pull mysql:5.6

等待下載完成后,我們就可以在本地鏡像列表里查到REPOSITORY為mysql,標(biāo)簽為5.6的鏡像。

runoob@runoob:~/mysql$ docker images |grep mysql
mysql               5.6                 2c0964ec182a        3 weeks ago         329 MB

創(chuàng)建并運(yùn)行MySQL容器:

docker run -p 3306:3306 --name mysql -v /usr/local/mysql:/etc/mysql/sqlinit -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.6

這里的文件映射主要目的是把宿主機(jī)的sql數(shù)據(jù)庫數(shù)據(jù)文件映射到docker mysql容器,方便導(dǎo)入,注意這里mysql容器的目錄不能是已有的目錄,否則會(huì)覆蓋。

注意:

這里創(chuàng)建容易已經(jīng)有了my.cnf,無需自己添加。

 拓展

使用外部工具navicat連接docker 內(nèi)mysql

mysql的host 填寫docker內(nèi)的IP,獲取方式為: 

1 docker inspect --format='{{.NetworkSettings.IPAddress}}' mysql

docker怎么配置nginx+php+mysql

即可連接成功!

注意:

docker的容器啟動(dòng)順序問題會(huì)導(dǎo)致容器的IP地址不一致,如果在連接數(shù)據(jù)庫和fastcgi處有用到容器的IP,要注意容器的啟動(dòng)順序。

重啟容器:docker restart 容器名/容器ID

關(guān)閉容器:docker stop xxx

開啟容器:docker start xxx

查看正在運(yùn)行的容器:docker ps

查看所有容器(包括未運(yùn)行的容器): docker ps -a

創(chuàng)建并運(yùn)行容器: docker run

 ---------------------------------------

常見報(bào)錯(cuò):

1.  thinkphp報(bào)錯(cuò) Undefined class constant 'MYSQL_ATTR_INIT_COMMAND'

缺少pdo_mysql擴(kuò)展,鏈接數(shù)據(jù)庫失敗

找到php.ini,docker中在/usr/local/etc/php中,復(fù)制一份php.ini,增加 extension=pdo_mysql.so  ,重啟phpfpm。

如果還不行,訪問phpinfo頁面,查看是否有pdo_mysql

docker怎么配置nginx+php+mysql

 缺少gd擴(kuò)展,安裝:

docker-php-ext-install gd

可能以下報(bào)錯(cuò):

If configure fails try --with-webp-dir=
If configure fails try --with-jpeg-dir=
configure: error: png.h not found.

安裝:

apt-get install libpng-dev libjpeg-dev

再次執(zhí)行:

// 增加freetype配置
docker-php-ext-configure gd --enable-gd-native-ttf --with-freetype-dir=/usr/include/freetype2 --with-png-dir=/usr/include --with-jpeg-dir=/usr/include

// 安裝
docker-php-ext-install gd

php.ini增加php_gd2.so

docker怎么配置nginx+php+mysql

phpinfo中顯示gd庫 

 

注意如果phpinfo的gd庫中沒有freetype的支持,驗(yàn)證碼依然顯示不出來, 會(huì)報(bào)錯(cuò):

Call to undefined function Think\imagettftext()

如果gd庫中沒有freeType,則按照以下步驟進(jìn)行:

docker-php-ext-configure gd --enable-gd-native-ttf --with-freetype-dir=/usr/include/freetype2 --with-png-dir=/usr/include

重新編譯:
docker-php-ext-install gd

如果報(bào)錯(cuò):

configure: error: freetype-config not found.

運(yùn)行: apt-get -y install libfreetype6-dev ,然后再繼續(xù)運(yùn)行上面的命令。 

gd庫中有了freetype,則驗(yàn)證碼顯示正常了:

 docker怎么配置nginx+php+mysql

到此,相信大家對“docker怎么配置nginx+php+mysql”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


網(wǎng)頁題目:docker怎么配置nginx+php+mysql
網(wǎng)站網(wǎng)址:http://weahome.cn/article/ijspij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部