事象
ユーザを選択して、SageMaker Studioを起動しようとすると
「このページは動作していません」と先に進めなくなってしまった。
解決法
AWS CLIを使います。
delete-domain コマンドでSageMaker Studioのドメインごと消して作り直す方法もありますが、
Notebookは残したいと言った要望があるかと思います。
その場合はSageMaker Studioで立ち上がっているアプリだけ立ち上げ直すことができます。
list-apps で使用中のアプリを表示
aws sagemaker list-apps --domain-id-equals <domain_id> --user-profile-name-equals <profile_name> --region us-east-2
{
"Apps": [
{
"Status": "InService",
"DomainId": "<domain_id>",
"AppType": "KernelGateway",
"AppName": "datascience",
"CreationTime": <time>,
"UserProfileName": "<profile_name>"
},
{
"Status": "InService",
"DomainId": "<domain_id>",
"AppType": "JupyterServer",
"AppName": "default",
"CreationTime": <time>,
"UserProfileName": "<profile_name>"
}
]
}
delete-app で、全てのアプリを削除
aws sagemaker delete-app --domain-id <domain_id> --user-profile-name <profile_name> --app-type KernelGateway --app-name datascience --region us-east-2
aws sagemaker delete-app --domain-id <domain_id> --user-profile-name <profile_name> --app-type JupyterServer --app-name default --region us-east-2
後はコンソールから再度起動してみてください。
復活するはずです!
まだプレビュー段階だからこういったログインできなくなるような事象が発生するんですかね。。(2020/02/19時点)
参考URL