mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
RetroShare is a Free and Open Source cross-platform, Friend-2-Friend and secure decentralised communication platform.
0d1524aa12
Caught signal 11 (SIGSEGV) stack trace: retroshare( 0xbbd2da)[0x558ccf46a2da] retroshare(CrashStackTrace::abortHandler(int) 0xeb)[0x558ccf471c5c] /lib64/libc.so.6( 0x38f80)[0x7f6ef6facf80] /lib64/libc.so.6(realloc 0x54)[0x7f6ef6fffef4] retroshare(RsTypeSerializer::RawMemoryWrapper::serial_process(RsGenericSerializer::SerializeJob, RsGenericSerializer::SerializeContext&) 0x5d4)[0x558ccfcddad0] retroshare(std::enable_if<std::is_base_of<RsSerializable, RsTypeSerializer::RawMemoryWrapper>::value, void>::type RsTypeSerializer::serial_process<RsTypeSerializer::RawMemoryWrapper>(RsGenericSerializer::SerializeJob, RsGenericSerializer::SerializeContext&, RsTypeSerializer::RawMemoryWrapper&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&) 0x9d)[0x558ccfb3da66] retroshare(RsChatAvatarItem::serial_process(RsGenericSerializer::SerializeJob, RsGenericSerializer::SerializeContext&) 0x84)[0x558ccff90ba6] retroshare(RsServiceSerializer::deserialise(void*, unsigned int*) 0x403)[0x558ccfcd96e9] retroshare(RsSerialiser::deserialise(void*, unsigned int*) 0x38e)[0x558ccfb5a1a8] retroshare(pqiSSLstore::readPkt(RsItem**) 0x3f9)[0x558ccfad329f] retroshare(pqiSSLstore::GetItem() 0xbb)[0x558ccfad2d9f] retroshare(pqiSSLstore::getEncryptedItems(std::__cxx11::list<RsItem*, std::allocator<RsItem*> >&) 0x3e)[0x558ccfad2c26] retroshare(p3Config::loadAttempt(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::list<RsItem*, std::allocator<RsItem*> >&) 0xf8)[0x558ccfab20d0] retroshare(p3Config::loadConfig() 0xeb)[0x558ccfab1d69] retroshare(p3Config::loadConfiguration(t_RsGenericIdType<20u, false, (RsGenericIdType)2>&) 0x1c)[0x558ccfab1c7c] retroshare(p3ConfigMgr::loadConfig() 0x97)[0x558ccfab17f3] retroshare(p3ConfigMgr::loadConfiguration() 0x18)[0x558ccfab1758] retroshare(RsServer::StartupRetroShare() 0x4407)[0x558ccfb02fab] retroshare(main 0x17e2)[0x558ccf46d291] /lib64/libc.so.6(__libc_start_main 0xeb)[0x7f6ef6f97e9b] retroshare(_start 0x2a)[0x558ccf438c9a] D 1585687209 void RetroDb::closeDb() sqlite3_close return: 0 D 1585687209 void RetroDb::closeDb() sqlite3_close return: 0 Memory still in use at end of program: 24776 bytes. |
||
---|---|---|
.reuse | ||
build_scripts | ||
data | ||
jsonapi-generator | ||
libbitdht/src | ||
libretroshare/src | ||
LICENSES | ||
openpgpsdk/src | ||
plugins | ||
retroshare-gui/src | ||
retroshare-service | ||
supportlibs | ||
tests | ||
.gitignore | ||
.gitlab-ci.yml | ||
.gitmodules | ||
.travis.yml | ||
appveyor.yml | ||
COPYING | ||
README.asciidoc | ||
retroshare.pri | ||
RetroShare.pro |
// SPDX-FileCopyrightText: Retroshare Team <contact@retroshare.cc> // SPDX-License-Identifier: CC-BY-SA-4.0 = RetroShare RetroShare is a decentralized, private, secure, cross-platform, communication toolkit. RetroShare provides file sharing, chat, messages, forums, channels and more. .Build Status |=============================================================================== |GNU/Linux (via Gitlab CI) | image:https://gitlab.com/RetroShare/RetroShare/badges/master/pipeline.svg[link="https://gitlab.com/RetroShare/RetroShare/-/commits/master",title="pipeline status"] |GNU/Linux, macOS, (via Travis CI) | image:https://travis-ci.org/RetroShare/RetroShare.svg?branch=master[link="https://travis-ci.org/RetroShare/RetroShare"] |Windows (via AppVeyor) | image:https://ci.appveyor.com/api/projects/status/github/RetroShare/RetroShare?svg=true[link="https://ci.appveyor.com/project/RetroShare58622/retroshare"] |=============================================================================== == Compilation Short of comprehensive and updated documentation on how to build RetroShare (for the many supported platforms it runs on), scripts and recipes are provided in the aim of creating packages for the supported platforms (and more) in the `build_scripts` directory of this repository. Those packaging receipts together with the continuous integration files `.travis.yml` and `appveyor.yml` are a good source of knowledge on how to compile RetroShare on different platforms. == Using RetroShare on a headless computer with web UI WARNING: This section is outdated need to be adapted to the new web UI The web UI needs to be enabled as a parameter option to the retroshare-service: [source,bash] -------- ./retroshare-nogui --webinterface 9090 --docroot /usr/share/retroshare/webui/ -------- The web UI is only accessible on localhost:9090. It is advised to keep it that way so that your RS cannot be controlled using an untrusted connection. To access your web UI from a distance, just open a SSH tunnel to it: [source,bash] -------- distant_machine:~/ > ssh rs_host -L 9090:localhost:9090 -N -------- "rs_host" is the machine running `retroshare-nogui`. Then on the distant machine, access your web UI on http://localhost:9090 (This can also be done from the RetroShare GUI.)