Docker使用nodejs镜像构建express服务的方法

这篇文章主要介绍了Docker使用nodejs镜像构建express服务,主要包括nodejs容器的启动,安装nodejs第三方依赖模块及启动nodejs服务的相关操作,本文给大家介绍的非常详细,需要的朋友可以参考下
目录
  • 1 nodejs容器的启动
  • 2 安装nodejs第三方依赖模块
  • 3 启动nodejs服务

1 nodejs容器的启动

安装docker

curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun  

启动docker

systemctl start docker

拉取轻量级的nodejs镜像

docker pull node:slim

推荐拉取最稳定的nodejs版本:

docker pull node:16.16.0-slim

Docker使用nodejs镜像构建express服务的方法

启动nodejs容器,事先指定好端口映射,容器内的8000端口映射到主机的7000端口,容器内的8000供接下来启动的nodejs服务使用

docker run -itd -p 7000:8000 --name node-test node:slim

查看是否启动:

docker ps -a

Docker使用nodejs镜像构建express服务的方法

2 安装nodejs第三方依赖模块

进入到容器中安装nodejs的第三方依赖包

docker exec -it 6976215ae574 /bin/bash

可以打印node的版本:

Docker使用nodejs镜像构建express服务的方法

配置nodejs模块的全局变量路径,首先打印下默认的模块lib所在目录:

npm prefix -g

Docker使用nodejs镜像构建express服务的方法

向/etc/profile文件中写入nodejs模块所在目录路径:

cat >> /etc/profile <<EOF

Docker使用nodejs镜像构建express服务的方法

输入如下内容:

export NODE_PATH=/usr/local/lib/node_modules

Docker使用nodejs镜像构建express服务的方法

然后使环境变量生效:

source /etc/profile

安装express服务需要的第三方模块:

npm install -g expressnpm install -g body-parser

3 启动nodejs服务

在主机中新建一个test.js文件,内容如下:

var express = require('express');  const bodyParser = require('body-parser');    var app = express();    app.use(bodyParser.json());    app.get('/', function(req, res){     res.send('welcome to my server!');   });  //  POST 请求  app.post('/', function (req, res) {      console.log(req.body);      res.send('Hello POST');   })     var server = app.listen(8000, function () {      console.log('服务已启动.......');    })  

输入exit退出容器回到主机,把这个js文件复制到容器中:

docker cp test.js 6976215ae574:/

重新进入容器中,可以发现从主机复制过来的js文件

Docker使用nodejs镜像构建express服务的方法

启动服务:

node test.js 

服务启动成功后,在主机中访问7000端口,既可以访问这个nodejs服务:

Docker使用nodejs镜像构建express服务的方法

到此这篇关于Docker使用nodejs镜像构建express服务的文章就介绍到这了,更多相关Docker构建express服务内容请搜索好主机以前的文章或继续浏览下面的相关文章希望大家以后多多支持好主机!

主题测试文章,只做测试使用。发布者:松, 赵,转转请注明出处:https://www.haozhuji.com.cn/jc/jingyan/84892.html

(0)
上一篇 2022年11月10日 21:35
下一篇 2022年11月10日 22:36

相关推荐

发表评论

邮箱地址不会被公开。 必填项已用*标注


Warning: file_get_contents(https://www.jb51.net/list/list_82_4.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_5.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_6.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_7.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_8.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_9.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_10.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_11.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_12.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_13.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_14.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_15.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_16.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_17.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_18.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_19.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_20.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_21.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_22.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_23.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_24.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_25.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_26.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_27.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_28.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_29.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_30.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_31.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_32.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_33.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_34.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_35.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_36.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_37.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_38.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_39.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_40.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_41.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_42.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_43.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_44.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_45.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_46.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_47.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_48.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_49.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_50.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_51.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_52.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_53.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_54.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_55.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_56.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_57.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_58.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_59.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_60.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_61.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_62.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_63.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_64.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_65.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_66.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_67.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_68.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_69.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_70.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_71.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_72.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_73.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_74.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_75.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_76.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_77.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_78.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_79.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_80.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_81.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_82.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_83.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_84.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_85.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_86.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_87.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431

Warning: file_get_contents(https://www.jb51.net/list/list_82_88.htm): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in D:\wwwroot\www.haozhuji.com.cn\wp-content\plugins\wp-autopost-pro\wp-autopost-function.php on line 3431