【needrestart】apt 更新時の「再起動するサービスを選ぶ」表示について調査 ものづくりのブログ 1 User【needrestart】apt 更新時の「再起動するサービスを選ぶ」表示について調査 – も…https://a1026302.hatenablog.com/entry/2023/02/20/170514Ubuntu 21.xx から、apt を更新するたびに「再起動するサービスを選ぶ」UI が動くようになっていて自動処理などに影響が出てしまったので、それを無効にする方法を調査してみました。 概要 needrestart github 設定 概要 Ubuntu 21.04から、サーバー版に「needrestart」というパッケージが最初からインストールされるようになったとのこと。 「needrestart」はパッケージの更新時に再起動が必要なデーモンを通知してくれる仕組みのようです。 needrestart github github.com 設定 /etc/needrestart/needr… 続きを読む 2023年2月20日2023年5月24日ブログUbuntu
【ansible】シンボリックリンクの作成方法 ものづくりのブログ【ansible】シンボリックリンクの作成方法 – ものづくりのブログhttps://a1026302.hatenablog.com/entry/2023/02/16/181113ansible でシンボリックリンクの作成方法をここにメモします。 以下はサンプルとして fd コマンドをセットアップしたときのものです。 tasks: ################################################################# ### https://github.com/sharkdp/fd#on-ubuntu ### fdfind バイナリ名が fd という別のパッケージで既に使用されているため注意 – name: install fd-find command: apt install fd-find -y – name: cre… 続きを読む 2023年2月16日2023年5月24日ブログAnsible, Ubuntu
【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日ブログコマンド