- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试为一个小项目注入(inject)数据库。按照以下链接在 ubuntu 17.04 上运行 docker 镜像。 https://hub.docker.com/_/influxdb/
使用以下命令启动容器,influxdb 完美启动。
foo@ubuntu:~/software/influxdb$sudo docker run -p 8086:8`enter code here`086 -v $PWD:/var/lib/influxdb influxdb
当为 CLI/SHELL 执行以下命令时出现错误。
foo@ubuntu:~/software/influxdb$ sudo docker run --rm --link=influxdb -it influxdb influx -host influxdb
docker: Error response from daemon: Cannot link to a non running container: /influxdb AS /epic_lumiere/influxdb.
foo@ubuntu:~/software/influxdb$ sudo docker exec -it influxdb influx
Error response from daemon: Container c04706b2bbcd5cfa70f66d156f1b8f513f2214d5bf2f7a0dd3ff517b45774e08 is not running
注意:influxdb 运行良好,我可以使用 http 连接到它。
foo@ubuntu:~/software/influxdb$ sudo docker run -p 8086:8086 -v $PWD:/var/lib/influxdb influxdb
[I] 2018-02-21T08:21:12Z InfluxDB starting, version 1.4.3, branch 1.4, commit 60d27e6995558f38a39e90b35a92cbac080310a3
[I] 2018-02-21T08:21:12Z Go version go1.9.2, GOMAXPROCS set to 4
[I] 2018-02-21T08:21:12Z Using configuration at: /etc/influxdb/influxdb.conf
[I] 2018-02-21T08:21:12Z Using data dir: /var/lib/influxdb/data service=store
[I] 2018-02-21T08:21:12Z reading file /var/lib/influxdb/wal/_internal/monitor/1/_00001.wal, size 877606 engine=tsm1 service=cacheloader
[I] 2018-02-21T08:21:12Z reading file /var/lib/influxdb/wal/_internal/monitor/1/_00002.wal, size 0 engine=tsm1 service=cacheloader
[I] 2018-02-21T08:21:12Z /var/lib/influxdb/data/_internal/monitor/1 opened in 88.565658ms service=store
[I] 2018-02-21T08:21:12Z opened service service=subscriber
[I] 2018-02-21T08:21:12Z Starting monitor system service=monitor
[I] 2018-02-21T08:21:12Z 'build' registered for diagnostics monitoring service=monitor
[I] 2018-02-21T08:21:12Z 'runtime' registered for diagnostics monitoring service=monitor
[I] 2018-02-21T08:21:12Z 'network' registered for diagnostics monitoring service=monitor
[I] 2018-02-21T08:21:12Z 'system' registered for diagnostics monitoring service=monitor
[I] 2018-02-21T08:21:12Z Starting precreation service with check interval of 10m0s, advance period of 30m0s service=shard-precreation
[I] 2018-02-21T08:21:12Z Starting snapshot service service=snapshot
[I] 2018-02-21T08:21:12Z Starting continuous query service service=continuous_querier
[I] 2018-02-21T08:21:12Z Starting HTTP service service=httpd
[I] 2018-02-21T08:21:12Z Authentication enabled:false service=httpd
[I] 2018-02-21T08:21:12Z Listening on HTTP:[::]:8086 service=httpd
[I] 2018-02-21T08:21:12Z Starting retention policy enforcement service with check interval of 30m0s service=retention
[I] 2018-02-21T08:21:12Z Listening for signals
[I] 2018-02-21T08:21:12Z Sending usage statistics to usage.influxdata.com
[I] 2018-02-21T08:21:12Z Storing statistics in database '_internal' retention policy 'monitor', at interval 10s service=monitor
[httpd] 172.17.0.1 - - [21/Feb/2018:08:22:28 +0000] "HEAD /ping HTTP/1.1" 204 0 "-" "curl/7.52.1" 5ad8ee44-16e0-11e8-8001-000000000000 3075
[I] 2018-02-21T08:51:12Z Retention policy shard deletion check commencing. service=retention
[I] 2018-02-21T09:13:48Z SHOW DATABASES service=query
[httpd] 172.17.0.1 - - [21/Feb/2018:09:13:48 +0000] "GET /query?q=show+databases HTTP/1.1" 200 109 "-" "curl/7.52.1" 86ae24be-16e7-11e8-8002-000000000000 3423
在此先感谢您的帮助。
foo@ubuntu:~/software/influxdb$ sudo docker ps -a | grep influxdb
[sudo] password for foo:
5e73d087fc19 influxdb "/entrypoint.sh infl…" About an hour ago Created sleepy_lumiere
18acacfc6377 influxdb "/entrypoint.sh infl…" 5 days ago Up 5 days 0.0.0.0:8086->8086/tcp loving_benz
97d935acebd7 influxdb "/entrypoint.sh infl…" 5 days ago Exited (255) 5 days ago 0.0.0.0:8086->8086/tcp happy_agnesi
5d6491f9f143 influxdb "/entrypoint.sh infl…" 5 days ago Exited (255) 5 days ago 0.0.0.0:8086->8086/tcp wizardly_bhabha
7d30f3891672 influxdb "/entrypoint.sh infl…" 7 days ago Exited (0) 6 days ago elastic_booth
2a5451537561 influxdb "/entrypoint.sh infl…" 7 days ago Exited (255) 7 days ago 0.0.0.0:8086->8086/tcp flamboyant_ride6
646581f7bcf9 influxdb "/entrypoint.sh infl…" 7 days ago Exited (0) 7 days ago competent_blackwell
c04706b2bbcd influxdb "/entrypoint.sh infl…" 8 days ago Created influxdb
97fcd152046d influxdb "/entrypoint.sh infl…" 8 days ago Exited (0) 7 days ago flamboyant_tereshkova
ee562bceaa51 influxdb "/entrypoint.sh infl…" 8 days ago Exited (0) 8 days ago objective_cray
问题已解决,以下是我需要执行的命令来为 influxdb 运行 cli/shell(感谢 rajiv)
foo@ubuntu:~/software/influxdb$sudosudo docker run --rm --link=<container_name> -it influxdb influx -host <container_name>
最佳答案
您必须使用 influxdb 容器的实际名称运行它,即 loving_benz。下面的命令应该可以工作。
sudo docker run --rm --link=loving_benz -it influxdb influx -host loving_benz
关于ubuntu - 无法为 influxdb docker 镜像运行 CLI/SHELL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48903052/
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我相信我在子 shell 中调用 exit 会导致我的程序继续: #!/bin/bash grep str file | while read line do exit 0 done
我有几个脚本,它们的第一部分看起来是一样的。这部分的功能是识别脚本在哪台机器上运行并相应地设置几个变量。它看起来像这样: ENV=`echo $LOGNAME | cut -c1-8` if
这是我正在尝试做的事情。我有 4 个 shell 脚本。脚本 1 需要先运行,然后是 2,然后是 3,然后是 4,并且它们必须按此顺序运行。脚本 1 需要运行(并在后台等待)2 才能正常运行,但是脚本
我有一个名为 a.sh 的脚本,其中的内容是: //a.sh: #!/bin/bash temp=0 while [ "$temp" -ne 500 ] do echo `date`
在snakemake中,使用shell()函数执行多个命令的推荐方式是什么? 最佳答案 您可以调用shell()多次内run规则块(规则可以指定 run: 而不是 shell: ): rule pro
我有一个 shell 脚本,我向其中传递了一些参数。Test1.sh -a 1 -b 2 -c“一二三” 在 Test1.sh 中,我按以下方式调用另一个 shell 脚本。Test2.sh $* 我
我有 2 个 shell 脚本。 第二个shell脚本包含以下函数第二个.sh func1 func2 first.sh 将使用一些参数调用第二个 shell 脚本, 将使用特定于该函数的一些其他参数
我有一个 Unix shell 脚本 test.sh。在脚本中,我想调用另一个 shell,然后从子 shell 执行 shell 脚本中的其余命令并退出 说清楚: test.sh #! /bin/b
我想在 shell 脚本中更改路径环境变量。路径变量需要在shell脚本执行后修改。 最佳答案 我知道有两种方法可以做到这一点。第一种是在当前 shell 的上下文中运行脚本: . myscript.
此 shell 脚本按预期运行。 trap 'echo exit' EXIT foo() { exit } echo begin foo echo end 这是输出。 $ sh foo.sh
我正在使用 vimshell在 vim 中执行命令 nnoremap vs :VimShellPop 使用此键映射,我可以打开 vim shell 并执行诸如“捆绑安装”之类的命令,然后 输入 exi
我想连接到不同的 shell(csh、ksh 等)并在每个切换的 shell 中执行命令。 下面是反射(reflect)我的意图的示例程序: #!/bin/bash echo $SHELL csh e
我目前正在尝试使用 BNF 和 LL 解析器在 C 中重新编写 shell。 否则,我需要知道 shell 运算符的优先级是什么| , > , > , & , ; ? 有没有人可以提供给我? 谢谢 最
不幸的是,我没有suspend 命令(busybox/ash)。但是我可以使用 kill -STOP $$ 从后台 shell (sh &) 返回到父 shell(以及 fg 之后)。 但是我不想输入
我需要知道,当用户切换到另一个 shell 时,通过单击它。 我试过 shellListener.shellDeactivated()但是当 shell 失去对它自己的控件的焦点时,会触发此事件,这意
file1.txt aaaa bbbb cccc dddd eeee file2.txt DDDD cccc aaaa 结果 bbbb eeee 如果能不区分大小写就更好了! 谢谢! 最佳答案 gre
我见过解压缩目录中所有 zip 文件的循环。但是,在运行此之前,我宁愿确保我将要运行的内容正常工作: for i in dir; do cd $i; unzip '*.zip'; rm -rf *.z
我对编程还很陌生,但我想知道 vim、emacs、nano 等 shell 文本编辑器如何能够控制命令行窗口。我主要是一名 Windows 程序员,所以可能在 *nix 上有所不同。据我所知,只能将文
我有一个包含第 7 列日期的文件,我的要求是将它与今天的日期进行比较,如果小于它,则删除该完整行。 此外,如果第 7 列中提到的任何日期超过 15 天,则将其修改为最多 15 天 下面的例子- now
我是一名优秀的程序员,十分优秀!