地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2021-01-05から1日間の記事一覧

【Apache】preforkの話

概要 preforkの話。preforkってなんだっけって話から広げていく そもそもTCP通信のフロー LinuxでTCPクライアント/サーバで通信するにはサーバ側は以下の手順を踏んで通信を待ち受ける。 socket() -> bind() -> listen() -> acceps() qiita.com 単一プロセス…

【nvim】Failed to load python3 host.

You can try to see what happened by starting nvim with $NVIM_PYTH...OG_FILE set and opening the generated log file. Also, the host stderr is available in messages. brew updateしたせいでまたもpythonがらみのエラー。 :checkhealthとかすれば何…

【Redis】ラズパイにredisを構築する

k8sのCronJobでワークキューパターンをやりたかったので立てた。 インストール パッケージからインストールすると、Redisサーバーが自動的起動します。 sudo apt-get update sudo apt-get -yV upgrade sudo apt-get install redis-server configとか /etc/re…