`
arpenker
  • 浏览: 330906 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
启动了。 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" />

Java连接Zabbix

下面例子我们通过调用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

vue界面自动化生成

    博客分类:
  • vue
<!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 搜索页 ...

实时界面生成

    博客分类:
  • vue
把代码贴进来 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就是对的了. 简单的一句话总结:必 ...

vue内外表弹窗

    博客分类:
  • vue
<!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 ...

vue常用的缩写

    博客分类:
  • vue
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 ...
<!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">     < ...
如何使用vue对象,取一个json里各个对象的值。并显示出来。 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue3(runoob.com)</title> <script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script> </head> <body>     <div i ...
Global site tag (gtag.js) - Google Analytics