腾讯GT中PNET指的是啥
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了腾讯GT中PNET指的是啥相关的知识,希望对你有一定的参考价值。
参考技术A PNET指的是被测应用所接收与传输的流量,NET指的是整个手机产生的流量 参考技术B 1. 配置nginx1. 启动nginx服务。
命令如下:
[root@VM_185_51 /]# service nginx restart
2. 测试nginx服务是否正常运行。
如果最后显示:`index.html' saved ,说明nginx服务正常。
[root@VM_185_51 /]# wget http://127.0.0.1--2013-02-20 17:07:26-- http://127.0.0.1/Connecting to 127.0.0.1:80... connected.HTTP request sent, awaiting response... 200 OKLength: 151 [text/html]Saving to: `index.html'
100%[==========================================================================================>] 151 --.-K/s in 0s
2013-02-20 17:07:26 (37.9 MB/s) - `index.html' saved [151/151]
3. 在浏览器中,通过CentOS云服务器公网IP查看nginx服务是否正常运行。
如果显示如下,说明nginx安装配置成功。
2. 配置php
1. 启动php-fpm。
[root@VM_185_51 /]# service php-fpm start
2. 修改php-fpm和nginx的配置,实现nginx和php联动。
(1)查看php-fpm默认配置。
[root@VM_185_51 /]# cat /etc/php-fpm.d/www.conf |grep -i 'listen ='listen = 127.0.0.1:9000
(2)php-fpm的默认配置的监听端口为9000,现在只用修改配置,将php解析的请求转发到127.0.0.0:9000处理即可。
修改nginx配置,修改命令如下:
[root@VM_185_51 /]# vim /etc/nginx/conf.d/default.conf
修改完成后实际配置如下,红色文字为修改过的部分:
server listen 80;root /usr/share/nginx/html;server_name localhost; #charset koi8-r;#access_log /var/log/nginx/log/host.access.log main; location / index index.html index.htm; #error_page 404 /404.html; # redirect server error pages to the static page /50x.html#error_page 500 502 503 504 /50x.html;location = /50x.html root /usr/share/nginx/html; # proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ # proxy_pass http://127.0.0.1;# # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000#location ~ \.php$ fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params;# deny access to .htaccess files, if Apache's document root# concurs with nginx's one##location ~ /\.ht # deny all;#
修改完成后,按“Esc”键,输入“:wq”,保存文件并返回。
通过下面的命令,查看配置是否正确:
[root@VM_185_51 /]# cat /etc/nginx/conf.d/default.conf
3. 配置生效
重启nginx,使配置生效。
命令如下:
[root@VM_185_51 /]# service nginx restartStopping nginx: [ OK ]Starting nginx: [ OK ]
4. 环境配置验证
1. 在web目录下创建index.php。
命令如下:
[root@VM_185_51 /]# vim /usr/share/nginx/html/index.php
index.php文件的内容如下:
<?phpecho "<title>Test Page</title>";echo "hello world";?>
2. 在浏览器中,通过CentOS云服务器公网IP查看环境配置是否成功。
如果页面可以显示“hello world”,说明配置成功。
GraphQL 错误中的“位置”指的是啥?
【中文标题】GraphQL 错误中的“位置”指的是啥?【英文标题】:What does 'locations' refer to in GraphQL errors?GraphQL 错误中的“位置”指的是什么? 【发布时间】:2019-07-28 13:13:41 【问题描述】:我正在学习 GraphQL 节点/Prisma 服务器教程,但由于我的代码有问题而遇到错误。我已经解决了错误,但我想了解错误消息,特别是locations
指的是什么?也就是说,我有一个第 2 行第 3 列的location
,但是第 2 行第 3 列是什么?我的代码中的相关方法(signup
,在这种情况下)?我的突变?
// error message
"data":
"signup": null
,
"errors": [
"message": "secretOrPrivateKey must have a value",
"locations": [
"line": 2,
"column": 3
],
"path": [
"signup"
]
]
【问题讨论】:
【参考方案1】:就像path
一样,locations
指的是您的 GraphQL 文档中发生错误的位置。您可以使用SWAPI GraphQL endpoint 之类的东西自己查看。我们可以通过请求一个不存在的字段来触发验证错误:
allFilmz
产生的错误有这个locations
数组:
[
"line": 2,
"column": 3
]
这是因为违规字段位于第 2 行,从第 3 列开始。如果我们改为发送:
allFilmz
我们得到:
[
"line": 1,
"column": 2
]
通常,错误的path
将比locations
提供更多信息,但当您的文档中存在语法错误时,path
将不存在——在这些情况下,locations
是唯一可以用来追踪语法错误发生位置的方法。
如果使用 GraphQL Playground,请注意 - 与 GraphiQL 不同,Playground 会在发送请求之前去除 cmets 并格式化您的请求,因此 locations
可能与您在 Playground UI 中看到的不匹配。
【讨论】:
以上是关于腾讯GT中PNET指的是啥的主要内容,如果未能解决你的问题,请参考以下文章