这期内容当中小编将会给大家带来有关使用Docker怎么制作分布式lnmp 镜像,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。一、docker 分布式 lnmp 镜像制作1、运行Nginx、MySQL、PH
这期内容当中小编将会给大家带来有关使用Docker怎么制作分布式lnmp 镜像,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
一、docker 分布式 lnmp 镜像制作
#关闭防火墙及核心防护systemctl disable firewalldsystemctl stop firewalldsetenforce 0#查看3306、80及9000端口是否被占用ss -natp | grep 3306ss -natp | grep 80ss -natp | grep 9000#创建自定义网络docker network create -d bridge --subnet 172.168.184.0/24 --gateway 172.168.184.1 lnmp#运行Nginx容器docker run -itd --name nginx --network lnmp -p 80:80 --ip 172.168.184.10 nginx:1.12.0#运行Mysql容器docker run -itd --name mysql --network lnmp -p 3306:3306 --ip 172.168.184.20 -e MYsql_ROOT_PASSWord=010230 mysql:5.7#运行php容器docker run -itd --name phpfpm --network lnmp -p 9000:9000 --ip 172.168.184.30 php:7.1-fpm
docker exec -it nginx /bin/bashecho -e "server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htmi index.php; } error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } location ~ \.php$ { root /usr/share/nginx/html; fastcgi_pass 172.168.184.30:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME \$document_root\$fastcgi_script_name; include fastcgi_params; }}" > /etc/nginx/conf.d/default.confnginx -s reloaddocker exec -it phpfpm /bin/bashmkdir -p /usr/share/nginx/htmlecho "<?phpphpinfo();?>" > /usr/share/nginx/html/index.php
虚拟机输入localhost/index.php
本机输入 192.168.184.70/index.php (我虚拟机地址是192.168.184.70)
上述就是小编为大家分享的使用docker怎么制作分布式lnmp 镜像了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网精选频道。
--结束END--
本文标题: 使用docker怎么制作分布式lnmp 镜像
本文链接: https://lsjlt.com/news/278752.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0