一、需求 由于需要将json存储在influxdb中,为了解析各个key/value所以需要变换成HashMap. 二、所用依赖 Maven: <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jac…
一、需求 由于需要将json存储在influxdb中,为了解析各个key/value所以需要变换成HashMap. 二、所用依赖 Maven: <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jac…
一、基础 1.1 数据类型 连接:https://docs.influxdata.com/influxdb/v1.2/write_protocols/line_protocol_reference/#data-types 二、增 三、查 1、查询最后几条数据 select * from disk group by * order by desc limit 10 3.2 查询字段数据类型 SHOW FIELD KEYS FROM device_D0002_realtime N、疑问 insert时手动…
安装网卡居然都用了半个小时,所以总结一下。 kvm host:Centos7 Kvm client:Windows 7 一、安装不走 1.1 下载kvm驱动包virtio-win-0.1.126.iso 1.2 意见将virtio-win-0.1.126.iso解压后,打包到windows7.iso镜像中 1.3 安装win7后打开设备管理器 1.4 右键,选择更新驱动程序软件 1.5 选择第二个 1.6 定位到驱动目录 1.7 选择网络适配器 1.8 点击“从磁盘安装” 1.9 定位到目录 1.10点击安装即可 …
一、构建CORS响应域 项目目录下运行: php artisan make:middleware Cors 二、修改Cors.php 文件目录:\app\Http\Middleware\Cors.php 修改后内容如下: <?php namespace App\Http\Middleware; use Closure; class Cors { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @p…
一、博主版本 Laravel:5.4 php 7.0 二、过程 打开文件:\vendor\laravel\passport\src\Bridge\UserRepository.php 找到函数:getUserEntityByUserCredentials($username, $password, $grantType, ClientEntityInterface $clientEntity) 原函数内容如下: public function getUserEntityByUserCredentials($user…
一、环境 php:7.0 laravel:5.4 二、安装passport配置 九、测试API编写 Route::group([ 'prefix'=>'/v1', 'middleware' => 'auth:api' ], function () { Route::group([ 'prefix'=>'/auth' ], function () { Route::get('/user/current',function (Request $request) {return $request->…
一、composer速度太慢 解决方法:切换至国内源即可。 参考链接:https://pkg.phpcomposer.com/ 镜像用法 有两种方式启用本镜像服务: 系统全局配置: 即将配置信息添加到 Composer 的全局配置文件 config.json 中。见“方法一” 单个项目配置: 将配置信息添加到某个项目的 composer.json 文件中。见“方法二” 方法一: 修改 composer 的全局配置文件(推荐方式) 打开命令行窗口(windows用户)或控制台(Linux、Mac 用户)并执行如下命令…
一、使用教程 请见以下链接: http://www.jianshu.com/p/484564beda1d http://www.jianshu.com/p/01188607a794 https://zhuanlan.zhihu.com/p/22184691?refer=dataeye 二、服务器信息 azkaban地址:http://127.0.0.1:8081 账号:azkaban 密码:azkaban 三、使用规范 1、多版本python选择 系统默认python版本为2.7.5,如果使用python2.7.5…
配置文件如下: [program:azkaban] command=bash -c 'cd /home/azkaban/azkaban/azkaban-solo-server/build/install/azkaban-solo-server && bin/azkaban-solo-start.sh' directory=/home/azkaban/azkaban/azkaban-solo-server/build/install/azkaban-solo-server user=root auto…