【redis】キーの削除 ものづくりのブログ【redis】キーの削除 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/02/13/105511redis のキーの削除方法をここにメモします。サンプルキー登録 $ redis-cli 127.0.0.1:6379> 127.0.0.1:6379> hset sample sample_key sample_val (integer) 1Key の確認 127.0.0.1:6379> keys sample 1) "sample" 127.0.0.1:6379> hgetall sample 1) "sample_key" 2) "sample_val"キーをすべてクリア 127.0.0.1:6379> flushdb OKキーを指定して削除 … 続きを読む 2023年2月13日2023年5月24日ブログDB, redis
【twitter】standard API の無料利用が2023/2/9で終了 ものづくりのブログ【twitter】standard API の無料利用が2023/2/9で終了 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/02/03/104027突然、twitter の standard API の無料利用が2023/2/9で終了するみたいです。Starting February 9, we will no longer support free access to the Twitter API, both v2 and v1.1. A paid basic tier will be available instead 🧵— Twitter Dev (@TwitterDev) 2023年2月2日 ニュース news.yahoo.co.jpwebtan.impress.co.jpマスクCEO、Twitterの無料API終了は「悪質なb… 続きを読む 2023年2月3日2023年5月24日ブログapi, Twitter
systemctl コマンドの使い方 ものづくりのブログ 1 Usersystemctl コマンドの使い方 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/01/31/112409すぐに忘れちゃうので、systemctl コマンドの使い方をここにメモします。 コマンド 説明 systemctl start ${Unit} サービス起動 systemctl stop ${Unit} サービス停止 systemctl restart ${Unit} サービス再起動 systemctl reload ${Unit} サービスリロード systemctl status ${Unit} サービスステータス表示 systemctl enable ${Unit} サービス自動起動有効 systemctl disable ${Unit} サービス自動起動無効 systemctl is-… 続きを読む 2023年1月31日2023年5月24日ブログコマンド
【Certbot】Let’s Encrypt の自動更新を cron なしで実現 ものづくりのブログ 1 User【Certbot】Let’s Encrypt の自動更新を cron なしで実現 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/01/23/193424Certbot の定期処理を cron で設定していたのに、それとは別に定期処理が動いていたため、どこから動いていたか調べてみました。 Certbot とは? Certbot は無料かつ自動で SSL 証明書を発行できるツールです。 CSR と KEY ファイルの作成から Web サーバーの設定まで自動で行ってくれます。 環境 OS: CentOS Linux release 7.9.2009 (Core) Webサーバ: nginx 設定 cron を利用して定期的に certbot の証明書更新処理を実行させる方法がスタンダードでしたが、Snap 版 certbot では自動更新機能が実装… 続きを読む 2023年1月23日2023年5月24日ブログコマンド
【Perl】YAPC 2023 について ものづくりのブログ【Perl】YAPC 2023 について – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/01/20/142203コロナでオンラインカンファレンスばかりでしたが、2023年は京都で開催予定のようです。 YAPC とは? Yet Another Perl Conferenceの略で、Perlを軸としたITに関わる全ての人のためのカンファレンスです。 yapcjapan.org 開催日 2023年 3月 19日 会場 京都リサーチパーク 続きを読む 2023年1月20日2023年6月17日ブログperl