Tittiecoin Talk

Please login or register.

Login with username, password and session length
 

News:

Tittiecoin talk - Just landed! Getting ready for our BIG appearance on a MAJOR Exchange!

Author Topic: Setup TittieCoind on Ubuntu 12.04  (Read 14 times)

bitcoinproject

  • Administrator
  • Newbie
  • Posts: 3
Setup TittieCoind on Ubuntu 12.04
« on: March 06, 2014, 05:17:32 pm »

Update and install dependencies:
Code: [Select]
apt-get update && apt-get upgrade
apt-get install ntp git build-essential libssl-dev libdb-dev libdb++-dev libboost-all-dev libqrencode-dev

curl -L http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.8.tar.gz |tar -xz
cd miniupnpc-1.8/
make
make install
cd ..

Download the source code:
Code: [Select]
git clone https://github.com/tittiecoin/tittiecoin
Compile tittiecoind:
Code: [Select]
cd tittiecoin/src
make -f makefile.unix USE_UPNP=1 USE_QRCODE=1
strip TittieCoind

Add a user and move tittiecoind:
Code: [Select]
useradd -mN tittiecoin
chmod 0701 /home/tittiecoin
mkdir /home/tittiecoin/bin
cp ~/tittiecoin/src/TittieCoind  /home/tittiecoin/bin/TittieCoind
chown -R tittiecoin:users /home/tittiecoin/bin
cd && rm -rf tittiecoin

Run the daemon:
Code: [Select]
su tittiecoin
cd && bin/TittieCoind

On the first run, tittiecoind will return an error and tell you to make a configuration file, named tittiecoin.conf, in order to add a username and password to the file.
Code: [Select]
nano ~/.TittieCoin/TittieCoin.conf && chmod 0600 ~/.TittieCoin/TittieCoin.conf
Add the following to your config file, changing the username and password to something secure:
Code: [Select]
daemon=1
rpcuser=<username>
rpcpassword=<secure password>

You can just copy the username and password provided by the error message when you first ran tittiecoind.
You should also add the following to your config for performance reasons :
Code: [Select]
rpcthreads=100
irc=0
dnsseed=1

If you setup your config file using the username and password provided by the error message, then it is recommended that you also clear your shell history to prevent recovering it from your history.
Code: [Select]
history -c && history -w
Using tittiecoind:
Code: [Select]
su tittiecoin
cd /home/tittiecoin/bin
./TittieCoind help

I ALSO OFFER A INSTALL SERVICE FOR A SMALL DONATION!
SO JUST CONTACT ME!
« Last Edit: March 06, 2014, 05:48:37 pm by bitcoinproject »
Logged