소스 검색

Fix path to cacert in check-running.asciidoc (#83888)

Co-authored-by: Arbkz <arbkz@users.noreply.github.com>
Quentin Pradet 3 년 전
부모
커밋
f033f5879e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/reference/setup/install/check-running.asciidoc

+ 1 - 1
docs/reference/setup/install/check-running.asciidoc

@@ -5,7 +5,7 @@ You can test that your {es} node is running by sending an HTTPS request to port
 
 ["source","sh",subs="attributes"]
 ----
-curl --cacert {os-dir}{slash}certs{slash}http_ca.crt -u elastic https://localhost:9200 <1>
+curl --cacert {os-dir}{slash}config{slash}certs{slash}http_ca.crt -u elastic https://localhost:9200 <1>
 ----
 // NOTCONSOLE
 <1> Ensure that you use `https` in your call, or the request will fail.