I managed to connect to my yacoind daemon using cpuminer, but it just sits like that. I have 1 rejected share.
You will most likely get rejected on all of them..
So how are you mining ?
Directly with the client. Wish i had cpuminer or other working..
how do you install libboost.system.so.1 on CENTOS?
I'm not a linux admin, so please do not expect this solution to be very beautiful.
Here are quick'n'dirty steps to run yacoin (d) on centos:
preparing:
yum remove db4-devel
yum groupinstall 'Development tools'
yum install git
installing DB4 (Berkeley DB)
wget http://download.oracle.com/berkeley-db/db-4.8.30.tar.gz
tar xvzf db-4.8.30.tar.gz
cd db-4.8.30
cd build_unix/
../dist/configure --prefix=/usr --enable-cxx
make
make install
cp db-4.8.30/build_unix/.libs/*.so /usr/lib64
cd ../../
installing boost:
wget http://downloads.sourceforge.net/project/boost/boost/1.53.0/boost_1_53_0.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fboost%2Ffiles%2Fboost%2F1.53.0%2Fboost_1_53_0.tar.gz%2Fdownload&ts=1368028450&use_mirror=citylan
tar -xvzf boost_1_53_0.tar.gz
cd boost_1_53_0
./bootstrap.sh
./b2
cp `find ./ | grep libboost | grep .so` /usr/lib64
cd ../
installing openssl with EC support:
wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz
tar -xvzf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config --prefix=/usr --openssldir=/usr/ssl
make
make install
./config shared --prefix=/usr --openssldir=/usr/ssl
make clean
make
make install
cd ../
WARNING! after installing new openssl, do not close your ssh session!
cos you need to update sshd as well:wget ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-6.2p1.tar.gz
tar xvzf openssh-6.2p1.tar.gz
cd openssh-6.2p1
./configure --prefix=/usr --with-ssl-dir=/usr/ssl
make
make install
/etc/init.d/sshd restart
Installing yacoind:
git clone https://github.com/pocopoco/yacoin
make -j4 -f makefile.unix USE_UPNP=-
cp yacoind ~/
mkdir ~/.yacoind
vi ~/.yacoind/yacoin.conf
Put something like this inside conf:
rpcuser=test
rpcpassword=bebe
rpcport=12345
daemon=1
server=1
gen=1
rpcallowip=127.0.0.1
Tested on Centos 5.6 & 6