Underlying transport error

cryptonomex,graphene | Underlying transport error

Recommend Projects

  • React photo

    React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo

    Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo

    Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo

    TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo

    Django

    The Web framework for perfectionists with deadlines.

  • Laravel photo

    Laravel

    A PHP framework for web artisans

  • D3 photo

    D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Visualization

    Some thing interesting about visualization, use data art

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo

    Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo

    Microsoft

    Open source projects and samples from Microsoft.

  • Google photo

    Google

    Google ❤️ Open Source for everyone.

  • Alibaba photo

    Alibaba

    Alibaba Open Source for everyone

  • D3 photo

    D3

    Data-Driven Documents codes.

  • Tencent photo

    Tencent

    China tencent open source team.

Topic: witness_node startup problem — Underlying Transport Error  (Read 4782 times)

0 Members and 1 Guest are viewing this topic.

November 13, 2015, 11:33:55 pm Reply #6

Try with —resync-blockchain as I said (it is different from replay)

Same error with —resync-blockchain

Are you sure there is not another witness_node running?
In another screen maybe…
Could you restart the machine and try again?


Logged


November 13, 2015, 11:19:30 pm Reply #5

Try with —resync-blockchain as I said (it is different from replay)

Same error with —resync-blockchain


Logged

>>> approve bitcoiners


November 13, 2015, 11:11:43 pm Reply #4

Try with —resync-blockchain as I said (it is different from replay)

Edit:
About changing the private key I think you should
-create a new key pair in the cli_wallet with «suggest_brain_key»
-save the output in a safe place, just to be sure
-give this command «update_witness bitcoiners «» new_public_key_from_suggested_output true»

« Last Edit: November 13, 2015, 11:24:47 pm by Bhuz »


Logged


November 13, 2015, 11:07:09 pm Reply #3

Try to launch the witness node with —resynch-blockchain.
This will redownload all the blocks, it could take a while…
If those are your public & private keys, you should change the private asap.

How do I change those keys..?
And I tried starting with
$ ./programs/witness_node/witness_node —replay-blockchain

Getting the same error again.


Logged

>>> approve bitcoiners


November 13, 2015, 10:35:12 pm Reply #2

Try to launch the witness node with —resynch-blockchain.
This will redownload all the blocks, it could take a while…
If those are your public & private keys, you should change the private asap.


Logged


November 13, 2015, 10:18:06 pm Reply #1

$ ./programs/witness_node/witness_node
..
921223ms th_a       application.cpp:233           reset_websocket_serv ] Configured websocket rpc to listen on 127.0.0.1:8090
921223ms th_a       application.cpp:438           startup              ] 13 N11websocketpp9exceptionE: Underlying Transport Error
Underlying Transport Error:
    {"what":"Underlying Transport Error"}
    th_a  application.cpp:236 reset_websocket_server
921223ms th_a       application.cpp:984           startup              ] 13 N11websocketpp9exceptionE: Underlying Transport Error
Underlying Transport Error:
    {"what":"Underlying Transport Error"}
    th_a  application.cpp:236 reset_websocket_server
rethrow
    {}
    th_a  application.cpp:438 startup
921223ms th_a       main.cpp:192                  main                 ] Exiting with error:
13 N11websocketpp9exceptionE: Underlying Transport Error
Underlying Transport Error:
    {"what":"Underlying Transport Error"}
    th_a  application.cpp:236 reset_websocket_server
rethrow
    {}
    th_a  application.cpp:438 startup
921406ms th_a       thread.cpp:115                ~thread              ] calling quit() on p2p
921406ms th_a       thread.cpp:160                quit                 ] destroying boost thread 140527597115136
921406ms p2p        thread.cpp:246                exec                 ] thread canceled: 9 canceled_exception: Canceled

    {}
    p2p  thread_d.hpp:461 start_next_fiber

« Last Edit: November 13, 2015, 11:22:31 pm by bitcoinerS »


Logged

>>> approve bitcoiners


Я отлаживаю какой-то внешний код, который использует websocketpp. Я продолжаю получать довольно многословную консольную версию, хотя все работает нормально.
Могу ли я отключить вывод или, по крайней мере, указать на что-то конкретное?
BR,
Daniel

[2014-07-08 14:51:27] [fatal] error in handle_read_handshake: End of File
[2014-07-08 14:51:27] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7)
[2014-07-08 14:51:27] [info] asio async_shutdown error: system:10054 (An existing connection was forcibly closed by the remote host)
[2014-07-08 14:51:27] [error] Underlying Transport Error
[2014-07-08 14:51:27] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7)
[2014-07-08 14:51:27] [info] asio async_write error: system:10053 (An established connection was aborted by the software in your host machine)
[2014-07-08 14:51:27] [fatal] error in handle_write_frame: Underlying TransportError
[2014-07-08 14:51:35] [fatal] error in handle_read_frame: End of File (websocketpp.transport:7)
[2014-07-08 14:51:35] [info] asio async_shutdown error: system:10054 (An existing connection was forcibly closed by the remote host)
[2014-07-08 14:51:35] [error] Underlying Transport Error

08 июль 2014, в 15:39

Поделиться

Источник

2 ответа

websocketpp::server<websocketpp::config::asio> server;

server.clear_access_channels(websocketpp::log::alevel::frame_header | websocketpp::log::alevel::frame_payload); 
// this will turn off console output for frame header and payload

server.clear_access_channels(websocketpp::log::alevel::all); 
// this will turn off everything in console output

Более подробную информацию можно найти здесь:
http://www.zaphoyd.com/websocketpp/manual/reference/logging

Fan Gong
15 окт. 2014, в 15:31

Поделиться

Необходимо указать допустимый ip и порт для запуска сервера socket.io

т. если ваш сервер io-сервера, запущенный на локальном сервере, вы должны указать

connect("http://localhost:8080")

это может быть полезно для других с одинаковой проблемой

CLIFFORD P Y
30 дек. 2015, в 09:37

Поделиться

Ещё вопросы

  • 1Android неизвестное исключение
  • 1Сделайте так, чтобы текст появлялся сразу, но постепенно исчезал, используя современные CSS-переходы
  • 0Обновление значения объекта Javascript дает ноль
  • 0setInterval с различной длительностью
  • 1Отладка HTTPResponse с помощью эмулятора Android
  • 0Поймать группу пользователей в потоке входа в систему и удалить доступ к интерфейсу, если принадлежит к определенной группе
  • 1Socket.Send, сервер получает много неверных MPacket
  • 00x80070002 при попытке установить браузер по умолчанию
  • 0jQuery validate — предотвратить отображение метки ошибки
  • 0ошибка: передача ‘const ComplexNumber’ в качестве ‘this’ аргумента ‘const ComplexNumber & ComplexNumber :: operator — = (const Complex)
  • 0Как добавить запятую в строку на странице JSP
  • 0Как сохранить дату в миллисекундах Unix в Mysql?
  • 0Создание страницы администратора, которая обновляет поля таблицы
  • 0Голос за кадром в iOS для диапазона слайдера с вертикальным типом ввода неверно отображает пролистывание влево и вправо
  • 1Как мы можем отобразить значок прогресса в кнопке
  • 0Изменить порядок ассоциативного массива после удаления одного элемента
  • 1Android: фон с определенным размером?
  • 1Утечка IntentReceiver android.widget.ZoomButtonsController?
  • 1Штамп растрового изображения на пути — Android
  • 1TypeError: while_loop () получил неожиданный аргумент ключевого слова «Maximum_iterations» в Jupyter Azure
  • 1правильный способ заменить значение NaN из другого фрейма данных при совпадении столбцов в пандах
  • 0ASP.NET MVC4 руководство ajax пост без проверки
  • 1PyCharm на MacOS не может обрабатывать файлы
  • 1EF простые отношения 1- * приводят к странному запросу SQL
  • 1Ошибка типа потока. Тип объекта несовместим со строкой
  • 1AppleScript с Javascript -> получить строку из HREF
  • 0передача значения в SQL
  • 1Совместное использование кода между приложениями
  • 0Как сделать переменную как вызываемую функцию?
  • 1Vue.js: передача внешней переменной компоненту через инициализацию?
  • 1Как использовать несколько обратных вызовов при зацикливании данных
  • 1Синхронизация потоков на основе времени в Java
  • 1Тайм-аут для функции
  • 1Удалить arrayItem [index] оставляет элемент placeholer как неопределенный
  • 0извлекать невыпуклую оболочку из результата суммы Минковского с помощью наддува
  • 0не дать детям вернуть ложь
  • 0MySQL STR_TO_DATE возвращает NULL на правильном FORMAT
  • 1Класс Singleton создает исключение System.TypeInitializationException
  • 0C ++ Simple Thread Начать выпуск
  • 1switchMap не принимает функцию для выполнения внутри нее
  • 1Подкласс IntEnum не сравнивается должным образом
  • 0Каковы атрибуты, которые разделяют pthreads и не разделяют между собой
  • 1условие document.documentElement.scrollTop
  • 1Реализация нескольких ActionListeners в Java
  • 0Почему у меня есть вывод знака «=» и 2 смайлика вместо правильного вывода? C ++
  • 1Получить RadGrid Выбранный элемент Индекс строки
  • 1Использование цветовых карт с набором данных Iris в pyplot matplotlib дает ошибку
  • 0Код для получения пользовательского ввода не выполняется / пропускается в C ++
  • 0Нажмите импортировать изображение
  • 0утечка памяти в моей хэш-таблице с ++

Сообщество Overcoder

This page will attempt to document the common problems people face when trying to start CollabVM Server.

On Ubuntu 16.04/18.04/Debian 7/etc, when I attempt to start the server, I get a message that libvncclient.0 could not be found.

If you are receiving this error on Ubuntu 14, please make sure that libvncclient1 is installed (sudo apt install libvncclient1). On Ubuntu 16.04 and 18.04, type sudo apt install x11vnc.

This is because CollabVM Server is compiled with an older version of libvncserver. Ubuntu 16.04, 16.10 and Debian 7, 8 by default come with a newer version of libvncclient in their repositories, which instead of being named libvncclient.0, is named libvncclient.1. Fear not, however. CollabVM Server is fully compatible with the newer libvncserver, but a symbolic link needs to be created.

  • amd64: sudo ln -s /usr/lib/x86_64-linux-gnu/libvncclient.so.1 /usr/lib/x86_64-linux-gnu/libvncclient.so.0
  • i386: sudo ln -s /usr/lib/i386-linux-gnu/libvncclient.so.1 /usr/lib/i386-linux-gnu/libvncclient.so.0
  • armhf: sudo ln -s /usr/lib/arm-linux-gnueabihf/libvncclient.so.1 /usr/lib/arm-linux-gnueabihf/libvncclient.so.0

sudo ln -s /usr/lib/i386-linux-gnu/libvncclient.so.1 /usr/lib/i386-linux-gnu/libvncclient.so.0

Start the server again, and it should work just fine. This does not need to be done on Ubuntu 14.04.

When I attempt to start the server, I get a message that libuuid.so.16 could not be found.

Type the following command and try again:

On amd64:

sudo wget http://computernewb.com/libuuid.so.16 -O /usr/lib/libuuid.so.16

On i386:

sudo wget http://computernewb.com/i686/libuuid.so.16 -O /usr/lib/libuuid.so.16

It should now start and you should be good to go. This is not necessary on CollabVM Server 1.2.8.

When I attempt to start the server, I get a message that libpng12.so.0 could not be found.

This is a common error on Ubuntu 16.04, Ubuntu 18.04, and Debian 8. This is due to libpng16 replacing libpng12. You can either upgrade to CollabVM Server 1.2.8 which uses libpng16 or use the following commands on Ubuntu 16.04/18.04 and Debian 8:

sudo apt install libpng12-0 libpng12-dev -y

and try again, if it doesn’t work or you’re on a newer version of Ubuntu which does not have this package, try using the following commands:

wget http://mirrors.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-0_1.2.54-1ubuntu1_amd64.deb; wget http://mirrors.kernel.org/ubuntu/pool/main/libp/libpng/libpng12-dev_1.2.54-1ubuntu1_amd64.deb

Replace «amd64» with your architecture if necessary.

When both packages are downloaded type

sudo dpkg -i *.deb

Now libpng12 should be installed and ready to use for CollabVM Server.

On Windows, when trying to create a VM, I get an error that says «Root value is not an object».

This is due to an issue with RapidJSON, if you want to specify a path on Windows, just use double backslashes, like this:

C:\Program Files\qemu\qemu-system-x86_64.exe

When trying to start the server, I get the message «error listening on port (x): Underlying Transport Error» or something similar.

If you shut down the collab-vm-server without stopping the VM first, or the collab-vm-server crashed while running the VM, this error will occur. Wait a few minutes and try again.

If the error still persists after several minutes make sure that qemu-system-x86_64 or similar is not running (use Task Manager on Windows or pidof qemu in nix to check). If it still doesn’t work make sure the port is not in use by another program. On Linux and other nix-like operating systems some ports like 80 and 443 require root access.

If you are receiving this error on Windows XP, it is likely because you do not have IPv6 installed. You need to install IPv6 support for this OS by going to Start -> Control Panel -> Network Connections -> Right click on your connection -> Properties -> Install -> Protocol -> Microsoft TCP/IP version 6. Modern editions of Windows should come with IPv6 support already installed but you could try repeating this step on newer versions if needed.

Понравилась статья? Поделить с друзьями:
  • Undefined symbol linker error
  • Undefined reference to ошибка
  • Undefined reference to sqrt collect2 error ld returned 1 exit status
  • Undefined reference to pow collect2 error ld returned 1 exit status
  • Undefined reference to main collect2 error ld returned 1 exit status