首先使用composer安装扩展 composer require elasticsearch/elasticsearch composer require nunomaduro/collision 开启你的 elasticsearch 与 kibana HTML代码 使用vue进行数据渲染 <!d ...
分类:
其他好文 时间:
2021-03-17 14:12:05
阅读次数:
0
systemctl是RHEL 7 的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。可以使用它永久性或只在当前会话中启用/禁用服务。 1.服务权限 systemd有系统和用户区分;系统(/user/lib/systemd/system/)、用户(/etc/lib/ ...
分类:
其他好文 时间:
2021-03-16 14:04:20
阅读次数:
0
```python #先安装 pip install django-debug-toolbar #在settings.py里面设置 #在本机调试就写本机的IP地址 INTERNAL_IPS = ['127.0.0.1', ] #要引入jquery,自己在bootcdn上面选一个合适的 DEBUG_T ...
分类:
其他好文 时间:
2021-03-16 11:41:15
阅读次数:
0
ref #include <stdio.h> #include <stdlib.h> typedef struct node { int data; struct node *lchild, *rchild; }bitree_t; bitree_t *createNode(int data) { b ...
分类:
编程语言 时间:
2021-03-15 11:35:22
阅读次数:
0
vim /usr/lib/systemd/system/nginx.service # 创建服务文件 nginx.service脚本内容如下: [Unit] # 服务的说明 Description=nginx # 描述服务 After=network.target # 描述服务类别 [Service ...
分类:
其他好文 时间:
2021-03-15 11:26:49
阅读次数:
0
1.修改setting.xml,在mirrors节点下加入一个新的mirror节点,配置阿里镜像地址,完整配置如下: 2.创建本地储存仓库Maven_repo,复制路径到localRepository,完整配置如下: 点击保存setting.xml配置文件 打开idea软件配置本地仓库 ①点击设置进 ...
分类:
其他好文 时间:
2021-03-12 14:19:35
阅读次数:
0
官方文档:https://github.com/alibaba/fastjson/wiki/JSONPath Entity entity = new Entity(123, new Object());JSONPath.eval(entity, "$.value")); API public cla ...
分类:
编程语言 时间:
2021-03-11 14:23:45
阅读次数:
0
Haproxy的使用 1.安装haproxy yum install -y haproxy 2.配置haproxy vim /etc/haproxy/haproxy.cfg global maxconn 100000 chroot /var/lib/haproxy uid 99 gid 99 dae ...
分类:
其他好文 时间:
2021-03-09 13:56:04
阅读次数:
0
1. 修改文件如下 vim /lib/systemd/system/docker.service [Service]Type=notifyLimitNOFILE=1048576LimitNPROC=1048576LimitCORE=infinity 2. 重启服务 sudo systemctl da ...
分类:
其他好文 时间:
2021-03-09 13:55:48
阅读次数:
0
在VS2017 X64下加载NIDAQmx 报error LNK2019,是加载的lib路径问题 不要使用下面目录的库 C:\Program Files (x86)\National Instruments\NI-DAQ\DAQmx ANSI C Dev 而要使用以下目录的库 C:\Program ...
分类:
其他好文 时间:
2021-03-09 13:44:36
阅读次数:
0