Daprが以下のエラーで起動しなくなった
WARN[0000] Error processing component, daprd process will exit gracefully app_id=api instance=TEST scope=dapr.runtime type=log ver=1.11.1
FATA[0000] process component pubsub error: [INIT_COMPONENT_FAILURE]: initialization error occurred for pubsub (pubsub.redis/v1): redis streams: error connecting to redis at localhost:6379: dial tcp 127.0.0.1:6379: connect: connection refused app_id=api instance=TEST scope=dapr.runtime type=log ver=1.11.1
起動できなくなった理由
daprは状態をredisにて管理するためredisが必要なのですが、起動していませんでした。
つまりdapr initが上手くいっていなかったようです。
dapr init し直す
dapr unistall
dapr install
一度 uninstallしないとinitできないのでuninstallしてからinstallしなおしてください。