- 浏览: 358143 次
- 性别:
- 来自: 广州
最新评论
-
ian_jiang:
不知道 你说了个 什么?
GWT下如何获取到javaee servlet下会话信息 -
心愿:
index.jsp应该建立在哪个目录下
dwr3.0的HELLOWORLD创建过程 -
349446658:
classpath:path是老的指定配置文件路径的方式。升级 ...
升级2 -
349446658:
新版本不是在type中指定first,而是指定1来表示跳到第一 ...
分页错误2 -
349446658:
这是因为后面的版本规范了指定配置文件路径的方式,必须指定为如下 ...
升级错误
文章列表
CREATE DATABASE IF NOT EXISTS test_database;
DROP table if exists product_id;
CREATE TABLE product_id
(
factory_goods_id UInt32 COMMENT '工厂商品ID',
goods_name String COMMENT '商品名称',
shop_id UInt32 COMMENT '店铺ID',
shop_name String COMMENT '店铺名称',
create_time DateTime COMMENT '创建时间', ...
找了一圈,没找到比较流程化的说明。东一句西一句。搞的最后,连接建不起来。
docker下安装clickhouse
docker ps -a //查看所有容器
docker rm *****
docker stop ******
docker pull yandex/clickhouse-server:21.12.4.1
docker run -d --rm --name=clickhouse yandex/clickhouse-server:21.12.4.1
mkdir -p /data/udata/clickhouse01/conf /data/udata/clickhouse ...
启动了。
docker run -d --name=single-clickhouse-server -p 8123:8123 -p 9000:9000 -p 9009:9009 --ulimit nofile=262144:262144 --volume /clickhouse/data:/var/lib/clickhouse:rw --volume /clickhouse/conf:/etc/clickhouse-server:rw --volume /clickhouse/log:/var/log/clickhouse-server:rw yandex/clickhouse-server
...
docker run -d --name=clickhouse-server -p 8123:8123 -p 9009:9009 -p 9090:9000 --ulimit nofile=262144:262144 -v /data/clickhouse/data:/var/lib/clickhouse:rw -v /data/clickhouse/conf/config.xml:/etc/clickhouse-server/config.xml -v /data/clickhouse/conf/users.xml:/etc/clickhouse-server/users.xml -v /dat ...
当前工程的源代码路径下的.idea/workspace.xml
<property name="dynamic.classpath" value="true" />
下面例子我们通过调用Zabbix的API获取到我们Zabbix所产生的告警信息。
Zabbix Api官方手册:https://www.zabbix.com/documentation/3.0/en/manual/api
要想获取到Zabbix上的其他信息,可以参考我们的Zabbix Api进行配置!
导入相关maven
复制代码
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</ ...
docker pull yandex/clickhouse-server
docker pull yandex/clickhouse-client
# 默认直接启动即可
docker run -d --name [启动之后的名称] --ulimit nofile=262144:262144 yandex/clickhouse-server
# 如果想指定目录启动,这里以clickhouse-test-server命令为例,可以随意写
mkdir /work/clickhouse/clickhouse-test-db ## 创建数据文件目录
# 使用以下路径启动,在外只能访问cl ...
docker run -d --name clickhouse-server --ulimit nofile=262144:262144 yandex/clickhouse-server
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vue.js 搜索页 ...
把代码贴进来
https://www.runoob.com/try/try.php?filename=vue2-example-4
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="widt ...
当用es的sql插件连es查询时一直报错.
咋整.
注意:二步.
地址栏是这个.http://localhost:8080
打开页面后.页面里右边框里必须改成这个
http://localhost:9200/
然后就可以测试查询了.
kinbana里DEV里写入这个:
post /test/users/
{
"name":"zs",
"age":18
}
然后在ES的MYSQL查询页面里写入这个就可以测了.
SELECT * FROM test
,
看到返回的RESULT就是对的了.
简单的一句话总结:必 ...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href=&qu ...
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href=&qu ...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue (runoob.com)</title>
<script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="app">
<div v-if=&quo ...
v-bind 缩写
Vue.js 为两个最为常用的指令提供了特别的缩写:
<!-- 完整语法 -->
<a v-bind:href="url"></a>
<!-- 缩写 -->
<a :href="url"></a>
v-on 缩写
<!-- 完整语法 -->
<a v-on:click="doSomething"></a>
<!-- 缩写 -->
<a @click="doSomething&quo ...