質問編集履歴
2
情報の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -43,6 +43,14 @@
|
|
43
43
|
|
44
44
|
調べてみたが、TypeError: write() only accepts bytes, unicode, and dict objectsについてなかなか出てこなかった。
|
45
45
|
tornadoが怪しいみたいだったので、インストールしたが駄目だった。
|
46
|
+
jupyterhub_config.pyに追加したもの抜粋
|
47
|
+
```
|
48
|
+
c.NativeAuthenticator.open_signup = True
|
49
|
+
c.JupyterHub.authenticator_class = 'nativeauthenticator.NativeAuthenticator'
|
50
|
+
c.Authenticator.admin_users = {'user'}
|
51
|
+
c.JupyterHub.hub_port = 8081
|
52
|
+
c.JupyterHub.spawner_class='dockerspawner.DockerSpawner'
|
53
|
+
```
|
46
54
|
|
47
55
|
### 補足情報(FW/ツールのバージョンなど)
|
48
56
|
|
1
情報の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
### 前提・実現したいこと
|
2
|
+
実行マシン:centOS7
|
2
3
|
|
3
4
|
Nativeauthenticatorを用いたjupyterhubを使用したい。
|
4
5
|
docker-composeを使用している。
|