Bitcoin Forum
May 06, 2024, 05:32:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Request Install Bitcoin Daemon on Centos 7 64Bit  (Read 231 times)
Nrcewker (OP)
Copper Member
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 536


Building my own Dreams!


View Profile
March 14, 2018, 02:54:59 PM
 #1

Hello i am using Centos 7 64bit + Cpanel WHM

please post here full instructions of installing Bitcoind securly and step by step i tried lot of but most of them are out dated

thank you

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
1714973529
Hero Member
*
Offline Offline

Posts: 1714973529

View Profile Personal Message (Offline)

Ignore
1714973529
Reply with quote  #2

1714973529
Report to moderator
1714973529
Hero Member
*
Offline Offline

Posts: 1714973529

View Profile Personal Message (Offline)

Ignore
1714973529
Reply with quote  #2

1714973529
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
jrian
Jr. Member
*
Offline Offline

Activity: 39
Merit: 6


View Profile
March 15, 2018, 01:08:34 PM
 #2

at first, you have to use ssh, not cpanel

here is "quick" manual
Code:

wget https://bitcoin.org/bin/bitcoin-core-0.16.0/bitcoin-0.16.0-x86_64-linux-gnu.tar.gz
wget https://bitcoin.org/bin/bitcoin-core-0.16.0/SHA256SUMS.asc
wget https://bitcoin.org/laanwj-releases.asc
gpg --import laanwj-releases.asc
gpg < SHA256SUMS.asc | sha256sum -c
tar -zxvf bitcoin-0.16.0-x86_64-linux-gnu.tar.gz
sudo install -m 0755 -o root -g root -t /usr/local/bin bitcoin-0.16.0/bin/*


then, you have to create directory for bitcoin and config

Code:
mkdir ~/.bitcoin
vi ~/.bitcoin/bitcoin.conf

use your preferred settings for bitcoin.conf. then, just run bitcoin core as daemon

Code:
bitcoind -daemon


thats all
Nrcewker (OP)
Copper Member
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 536


Building my own Dreams!


View Profile
April 02, 2018, 05:21:35 AM
 #3

Thank you its works for me
can you help me little bit more

How can i check bitcoind status if its running or on which port ?

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
starmyc
Full Member
***
Offline Offline

Activity: 198
Merit: 130

Some random software engineer


View Profile
April 02, 2018, 07:30:08 AM
 #4

Thank you its works for me
can you help me little bit more

How can i check bitcoind status if its running or on which port ?

Using ps & netstat commands:

Code:
# ps auxww|grep bitcoind|grep -v grep
testaroo  20756  0.6  1.2 1771772 406756 ?      Ssl  Mar20 122:54 /opt/bitcoin/bin/bitcoind -server -daemon
testaroo  22954  0.2  1.5 2047436 504568 ?      Ssl  Mar29  13:22 /opt/bitcoin/bin/bitcoind -server -testnet -daemon -debug -conf=/home/testaroo/.bitcoin/testnet3/bitcoin.conf

# netstat -laputen|grep LISTEN |grep bitcoind
tcp        0      0 127.0.0.1:8332          0.0.0.0:*               LISTEN      1000       7210937    20756/bitcoind     
tcp        0      0 0.0.0.0:8333            0.0.0.0:*               LISTEN      1000       7210950    20756/bitcoind     
tcp        0      0 0.0.0.0:18332           0.0.0.0:*               LISTEN      1000       16433556   22954/bitcoind     
tcp        0      0 0.0.0.0:18333           0.0.0.0:*               LISTEN      1000       16433624   22954/bitcoind     
tcp6       0      0 ::1:8332                :::*                    LISTEN      1000       7210935    20756/bitcoind     
tcp6       0      0 :::8333                 :::*                    LISTEN      1000       7210949    20756/bitcoind     
tcp6       0      0 :::18333                :::*                    LISTEN      1000       16433623   22954/bitcoind     

Hi, I'm just some random software engineer.
You can check my projects: Bitcoin & altcoin balances/addresses listing dumps: https://balances.crypto-nerdz.org/
Nrcewker (OP)
Copper Member
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 536


Building my own Dreams!


View Profile
April 02, 2018, 02:40:27 PM
 #5

but  i am getting empty response from bitcoind

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Nrcewker (OP)
Copper Member
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 536


Building my own Dreams!


View Profile
April 02, 2018, 02:54:52 PM
 #6

also getting following error


here is some of my outputs


.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
starmyc
Full Member
***
Offline Offline

Activity: 198
Merit: 130

Some random software engineer


View Profile
April 02, 2018, 06:02:09 PM
 #7

bitcoind is listening on 8332 (rpc port) & 8333 (protocol port). The strange thing is that it doesn't listen on 8332 using ipv4. You should chech logs (.bitcoin/debug.log). It should
have print something relative to 8332.

Hi, I'm just some random software engineer.
You can check my projects: Bitcoin & altcoin balances/addresses listing dumps: https://balances.crypto-nerdz.org/
Nrcewker (OP)
Copper Member
Hero Member
*****
Offline Offline

Activity: 2170
Merit: 536


Building my own Dreams!


View Profile
April 03, 2018, 11:15:03 AM
 #8

can you develop Payment profile for Xenforo 2

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!