【Elasticsearch】ERROR: [1] bootstrap checks failed. You must address the points described in the following [1] lines before starting Elasticsearch. ものづくりのブログ【Elasticsearch】ERROR: [1] bootstrap checks failed. You must address the poi…https://a1026302.hatenablog.com/entry/2022/11/18/095749以下のコマンドを実行後にエラーで困ったので対応方法をここにメモします。 $ docker run –name es01 –net elastic -p 9200:9200 -p 9300:9300 -it docker.elastic.co/elasticsearch/elasticsearch:8.5.1 ・ ・ ・ ERROR: bootstrap checks failed. You must address the points described in the following lines before starting Elasticsearch.調べてみたら… 続きを読む 2022年11月18日2023年5月24日ブログDB, Elasticsearch
MeiliSearch を使ってみました MeiliSearch を触る機会があったのでここにメモします。 ものづくりのブログ 1 UserMeiliSearch を使ってみました – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2022/11/15/195117MeiliSearch を触る機会があったのでここにメモします。 環境 Ubuntu: 22.04.1 LTS meilisearch: v0.29.1 MeiliSearch とは? 高速なオープンソースの検索エンジン、またはRESTベースの検索APIです。 github.com Rust で実装されているようで、メイリサーチと読むようです。 docker を使った起動方法 docker-compose.yml $ cat docker-compose.yml version: "3.7" services: meilisearch: container_name: meilisearch … 続きを読む 2022年11月15日2023年5月24日ブログDB, MeiliSearch
PostgreSQL でユーザ一覧とロール一覧を表示する方法 ものづくりのブログPostgreSQL でユーザ一覧を表示する方法 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2022/05/01/000000PostgreSQL でユーザ一覧は以下のコマンドで表示させます。 方法1 select usename from pg_user; 方法2 \du 続きを読む 2022年5月1日2023年6月17日ブログDB, postgresql
PostgreSQL でユーザ一覧とロール一覧を表示する方法 ものづくりのブログPostgreSQL でユーザ一覧を表示する方法 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2022/05/01/000000PostgreSQL でユーザ一覧は以下のコマンドで表示させます。 方法1 select usename from pg_user; 方法2 \du 続きを読む 2022年5月1日2023年6月9日ブログDB, postgresql
postgresql の where 句で型の指定方法が悪くてエラーが出た ものづくりのブログpostgresql の where 句で型の指定方法が悪くてエラーが出た – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2022/04/21/203314いつの間にか postgresql の型のチェックが厳しくなっていました。 症状 クエリ エラー 調査 エラーになる場合 int 型に文字列で検索 text 型に数値で検索 症状 クエリ 以下の SQL を実行したところエラーになりました。 select {{id}} from {{table}} where {{id}}=123 エラー ERROR: operator does not exist: character varying = integer LINE 1: …ect {{id}} from {{table}} where {{id}}=123; HINT: No opera… 続きを読む 2022年4月21日2023年6月17日ブログDB, postgresql