Difference between revisions of "Bokeh-Server"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 2: | Line 2: | ||
bokeh serve | bokeh serve | ||
| + | |||
| + | |||
| + | Untuk IP tertentu | ||
| + | |||
| + | bokeh serve --address=0.0.0.0 | ||
| + | bokeh serve --address=192.168.0.100 --host 192.168.0.100:5006 | ||
| + | |||
| + | |||
Untuk aplikasi tertentu | Untuk aplikasi tertentu | ||
| − | |||
bokeh serve myapp.py | bokeh serve myapp.py | ||
| Line 12: | Line 19: | ||
http://localhost:5006/myapp/ | http://localhost:5006/myapp/ | ||
| − | |||
| − | bokeh serve --address=0.0. | + | Untuk yang lebih lengkap |
| − | + | ||
| + | bokeh serve --address=192.168.0.100 --host 192.168.0.100:5006 myapp.py | ||
| + | |||
| + | |||
| + | di akses melalui | ||
| + | |||
| + | http://192.168.0.100:5006/myapp/ | ||
| + | |||
| + | |||
| Line 34: | Line 48: | ||
* http://bokeh.pydata.org/en/latest/docs/user_guide/cli.html | * http://bokeh.pydata.org/en/latest/docs/user_guide/cli.html | ||
| + | |||
| + | |||
| + | |||
| + | ==Pranala Menarik== | ||
| + | |||
| + | * [[Bokeh-Server]] | ||
| + | * [[Bokeh-Server: Plot Line]] | ||
| + | * [[Bokeh-Server: Random data dengan x axis datetime]] | ||
| + | * [[Bokeh-Server: Terima TCP dengan x axis datetime]] | ||
| + | * [[Bokeh-Server: Terima TCP Multiline dengan x axis datetime]] | ||
| + | * [[Bokeh-Server: Terima UDP dengan x axis datetime]] | ||
Latest revision as of 14:06, 21 February 2016
Menjalankan server versi baru
bokeh serve
Untuk IP tertentu
bokeh serve --address=0.0.0.0 bokeh serve --address=192.168.0.100 --host 192.168.0.100:5006
Untuk aplikasi tertentu
bokeh serve myapp.py
di akses melalui
http://localhost:5006/myapp/
Untuk yang lebih lengkap
bokeh serve --address=192.168.0.100 --host 192.168.0.100:5006 myapp.py
di akses melalui
http://192.168.0.100:5006/myapp/
Versi Lama
Hanya untuk localhost
bokeh-server
Untuk IP tertentu
bokeh-server --ip 192.168.0.100
Referensi