openethereum / parity-deploy

Parity deployment script.
Apache License 2.0
81 stars 52 forks source link

ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory #71

Closed drandreaskrueger closed 6 years ago

drandreaskrueger commented 6 years ago
git clone https://github.com/paritytech/parity-deploy.git paritytech_parity-deploy
cd paritytech_parity-deploy
./parity-deploy.sh --nodes 4 --config aura --name myaura --geth 

today results in

ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory
ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory
ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory
ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory

System is up-to-date Debian stretch.

ddorgan commented 6 years ago

@drandreaskrueger mind sending the output of which ethkey ... is it downloading one or using one you built in? If it doesn't find ethkey in the path it will try and use the latest stable.

drandreaskrueger commented 6 years ago
which ethkey
/usr/local/bin/ethkey
ethkey --version
ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory

ethkey version
ethkey: error while loading shared libraries: libboost_filesystem.so.1.55.0: cannot open shared object file: No such file or directory

Ah, so it's my local installation of ethkey. Yes, that can be very outdated. It must have gotten installed by another tool, because I don't remember installing it.

This problem is similar to this one.

As you are so focused on docker with this super useful tool parity-deploy - why not try to avoid any local installation, and do everything through docker containers?

drandreaskrueger commented 6 years ago

where?

archived: https://github.com/paritytech/ethkey

link within: broken

drandreaskrueger commented 6 years ago

ah, easy:

mv /usr/local/bin/ethkey /usr/local/bin/ethkey_RENAMED

now it runs through.

see above - and please write your script in a way that it does not use anything in my local installation. Thanks.

ddorgan commented 6 years ago

Closing. Will fix with re-write of parity-deploy.

drandreaskrueger commented 6 years ago

Perfect, thanks.