最低限の初期設定とトークン取得
Keycloakの初期設定
まずは、Keycloakの初期設定を行います。
※起動方法は前回の記事参照
Keycloakの基本的な使い方や、Keycloakを使った.NETアプリケーションの認証・認可の仕組みについて説明します。
複数回の記事に分けで、すこしずつ進めていきたいと思います。
まずは、Keycloakの概要とDockerでの導入方法について説明します。
1 | sudo dnf install openssh-server |
1 | sudo systemctl start sshd |
1 | sudo systemctl enable sshd |
1 | sudo systemctl status sshd |
1 | sudo vi /etc/ssh/sshd_config |
1 | PasswordAuthentication yes |
1 | sudo systemctl restart sshd |
以上でSSHのインストールと設定が完了しました。
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
1 | $ hexo server |
More info: Server
1 | $ hexo generate |
More info: Generating
1 | $ hexo deploy |
More info: Deployment