解決Tensorboard埠被占用

2021-09-04 11:17:35 字數 789 閱讀 1014

報錯資訊:

e1220 06:55:50.868322 mainthread program.py:267] tensorboard attempted to bind to port 6006, but it was already in use

e1220 06:55:50.868322 139684389615360 program.py:267] tensorboard attempted to bind to port 6006, but it was already in use

tensorboard attempted to bind to port 6006, but it was already in use

導致上面的錯誤,是由於6006號埠被其他程序所占用。注意,在關閉tensorboard時,應該使用press ctrl+c to quit,而不是press ctrl+z to quit

第一步:檢視埠占用:

lsof -i:6006

結果如下:

command     pid user   fd   type  device size/off node name

tensorboa 21144 root 3u ipv4 4337149 0t0 tcp *:6006 (listen)

第二步:關掉占用埠的程序

kill -9 21144  # -9表示永久關閉,21144為pid的值
-------有空再更新----------

Tensorboard報錯的解決

錯誤原因不是tensorboard沒有安裝,tensorflow gpu 1.2.1的版本安裝的同時已經將tensorboard安裝了。解決方法 既然tensorboard命令無效,那麼採用最原始的方法 1.step 1 查詢tensorboard的安裝路徑。使用pip show tensorflo...

Tensorboard 6006埠無法訪問的問題

1 寫乙個簡單例項,完成tensorboard 日誌輸出功能,示例 如下 import tensorflow as tf input1 tf.constant 1.0,2.0,3.0 name input1 input2 tf.variable tf.random uniform 3 name in...

tensorboard顯示空白的解決

ubuntu 14.04 python3.4 chrome,在瀏覽器中檢視tensorboarwww.cppcns.comd,發現出了graph,其他的資料都是空白。通過分析,發現js中如下一些錯誤 uncaught syntaxerror block scoped declarations let...