Bitcoin Forum
April 27, 2024, 12:53:47 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 [83] 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 ... 146 »
  Print  
Author Topic: [ANN] Nxt :: descendant of Bitcoin  (Read 383782 times)
klee
Legendary
*
Offline Offline

Activity: 1498
Merit: 1000



View Profile
November 25, 2013, 11:16:26 PM
 #1641

I have finally up & running my VPS client @ http://94.102.63.115:7875/

Does that mean that other users can connect there with their accounts? If so I would be glad to host them (and a good opportunity to test if everything is ok)!

They could connect, but please be aware passwords are submitted in clear text - better use accounts holding only small amounts.
I have it mainly for testing reasons  Roll Eyes

EDIT: Thanks for the info!
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Cygnify
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
November 25, 2013, 11:20:08 PM
 #1642

Is the online wallet atm safe enough to be keeping my NXT or should I be using the java program?

▓▓▓▓▓▓▓▓▓▓    ▶▶▶▶ Get Your Free Tokens Now ◀◀◀◀  First PoS Smart Contract Token
    PoSToken       Free Airdrop ●  No-ICO ●  100% Annual Interest First Year
▓▓▓▓▓▓▓▓▓▓    ANN ●  WebSite  ●  Twitter  ●  Slack  ●  Whitepaper
Pouncer
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
November 25, 2013, 11:26:51 PM
 #1643

I have finally up & running my VPS client @ http://94.102.63.115:7875/

Does that mean that other users can connect there with their accounts? If so I would be glad to host them (and a good opportunity to test if everything is ok)!

They could connect, but please be aware passwords are submitted in clear text - better use accounts holding only small amounts.

Here is a security tip for those running Nxt on a remote server:

The Nxt server uses plain http, not https. So if you a running a VPS server at http://my-server.example.com:7875, every time you unlock your account there is a risk that the password will be captured in transit. There is another annoyance in such a setup: since you are not running on localhost, the Nxt interface disables access to certain features, e.g. you cannot remove peers from the blacklist / active list by clicking on the trash icon. But as long as you have ssh access to the remote server, there is a simple solution. Just use ssh tunneling:

Code:
ssh -L localhost:7885:localhost:7875 my-server.example.com

The above command will establish an ssh tunnel between your machine (localhost) and the remove server where Nxt is running, my-server.example.com, from port 7885 on localhost to port 7875 on the remote host. Then, instead of going to http://my-server.example.com:7875 , open http://localhost:7885 , and you will be connected to the remote Nxt instance. Except, your connection will be encrypted so nobody can listen to it. And, from the point of view of the remote Nxt process, your connection is coming from localhost, so editing the peers lists will be enabled.

Once you make sure it is working, the next time you invoke ssh you can just put it in the background, and also use the -N flag so that it does not open a terminal connection (unless you need it):

Code:
ssh -L localhost:7885:localhost:7875 -N my-server.example.com &

(Note: I use port 7885 on localhost, in case 7875 is already used by a local Nxt instance. But any available port can be used instead.)

Obviously, in your case you can securely access your VPS server over this ssh tunnel, but other users are still at risk - and you can't give everyone ssh access.  Smiley

Thank you very much. This is exactly what I've been waiting for. Will try it Smiley

NXTtechdevfund  GPG Key ID: 0x903BC112
nnn
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
November 25, 2013, 11:29:23 PM
 #1644

I expect we will have to wait for the source, but does anyone know how consensus on the current time is reached in NXT? The mining mechanism seems to rely on everyone being in agreement (as that sets the "difficulty").


Thanks.
Jean-Luc
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile WWW
November 25, 2013, 11:34:17 PM
 #1645

Well all I was saying that a "dev team" would be faster then just one dev alone...
This is not always true, it takes time for a new developer to get up to speed with an unfamiliar project. And a big team of developers often wastes time arguing back and forth how things should be done, while a single developer will just do it as he seems fit, and get it working.

As a Java developer myself (and Nxt stakeholder), I would love to start helping with Nxt. But I understand the need to keep the source closed, so I can wait. Finally, there is a innovative new coin done in Java, and not just another BTC clone.

lead Nxt developer, gpg key id: 0x811D6940E1E4240C
Nxt blockchain platform | Ardor blockchain platform | Ignis ICO
klee
Legendary
*
Offline Offline

Activity: 1498
Merit: 1000



View Profile
November 25, 2013, 11:37:20 PM
 #1646

How many peers does everyone see atm?
I see 11 (one is red flag 5.135.165.137)
Pouncer
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
November 25, 2013, 11:53:16 PM
 #1647

I have finally up & running my VPS client @ http://94.102.63.115:7875/

Does that mean that other users can connect there with their accounts? If so I would be glad to host them (and a good opportunity to test if everything is ok)!

They could connect, but please be aware passwords are submitted in clear text - better use accounts holding only small amounts.

Here is a security tip for those running Nxt on a remote server:

The Nxt server uses plain http, not https. So if you a running a VPS server at http://my-server.example.com:7875, every time you unlock your account there is a risk that the password will be captured in transit. There is another annoyance in such a setup: since you are not running on localhost, the Nxt interface disables access to certain features, e.g. you cannot remove peers from the blacklist / active list by clicking on the trash icon. But as long as you have ssh access to the remote server, there is a simple solution. Just use ssh tunneling:

Code:
ssh -L localhost:7885:localhost:7875 my-server.example.com

The above command will establish an ssh tunnel between your machine (localhost) and the remove server where Nxt is running, my-server.example.com, from port 7885 on localhost to port 7875 on the remote host. Then, instead of going to http://my-server.example.com:7875 , open http://localhost:7885 , and you will be connected to the remote Nxt instance. Except, your connection will be encrypted so nobody can listen to it. And, from the point of view of the remote Nxt process, your connection is coming from localhost, so editing the peers lists will be enabled.

Once you make sure it is working, the next time you invoke ssh you can just put it in the background, and also use the -N flag so that it does not open a terminal connection (unless you need it):

Code:
ssh -L localhost:7885:localhost:7875 -N my-server.example.com &

(Note: I use port 7885 on localhost, in case 7875 is already used by a local Nxt instance. But any available port can be used instead.)

Obviously, in your case you can securely access your VPS server over this ssh tunnel, but other users are still at risk - and you can't give everyone ssh access.  Smiley

Thank you very much. This is exactly what I've been waiting for. Will try it Smiley

I connected to remote host with PuTTy and did this
[root@Nxt ~]# ssh -L localhost:7885:localhost:7875 192.161.175.142
The authenticity of host '192.161.175.142 (192.161.175.142)' can't be established.
RSA key fingerprint is xxxxxxxx
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added '192.161.175.142' (RSA) to the list of known hosts.
root@192.161.175.142's password:
Last login: Mon Nov 25 17:40:31 2013 from nnnnnnnn
[root@Nxt ~]#

Try connecting to http://localhost:7885/ but unsuccessful.

What did I do wrong?

Edit: local machine is windows

NXTtechdevfund  GPG Key ID: 0x903BC112
opticalcarrier
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
November 25, 2013, 11:53:24 PM
 #1648

How many peers does everyone see atm?
I see 11 (one is red flag 5.135.165.137)

same for me 11, but ny 5.135.x.x peer isnt in red.  then i could still not be authorized.  i jhave no idea what im doing.  why are my 2 transactions the only 2 still unauthorized?
Jean-Luc
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250



View Profile WWW
November 26, 2013, 12:06:16 AM
 #1649


I connected to remote host with PuTTy and did this
[root@Nxt ~]# ssh -L localhost:7885:localhost:7875 192.161.175.142
The authenticity of host '192.161.175.142 (192.161.175.142)' can't be established.
RSA key fingerprint is xxxxxxxx
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added '192.161.175.142' (RSA) to the list of known hosts.
root@192.161.175.142's password:
Last login: Mon Nov 25 17:40:31 2013 from nnnnnnnn
[root@Nxt ~]#

Try connecting to http://localhost:7885/ but unsuccessful.

What did I do wrong?

Edit: local machine is windows

Wait, you don't run ssh on the remote machine... you run ssh on your local machine. Looks like you just connected the remote machine to itself Smiley

Since you are on windows and using PuTTY instead of ssh, use the PuTTY configuration under Connection/SSH/Tunnels... to define the ports to be forwarded. But I would need to figure it out too what exactly to enter where, it has been many years since I used PuTTY and windows...

lead Nxt developer, gpg key id: 0x811D6940E1E4240C
Nxt blockchain platform | Ardor blockchain platform | Ignis ICO
Pouncer
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
November 26, 2013, 12:08:37 AM
 #1650


I connected to remote host with PuTTy and did this
[root@Nxt ~]# ssh -L localhost:7885:localhost:7875 192.161.175.142
The authenticity of host '192.161.175.142 (192.161.175.142)' can't be established.
RSA key fingerprint is xxxxxxxx
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added '192.161.175.142' (RSA) to the list of known hosts.
root@192.161.175.142's password:
Last login: Mon Nov 25 17:40:31 2013 from nnnnnnnn
[root@Nxt ~]#

Try connecting to http://localhost:7885/ but unsuccessful.

What did I do wrong?

Edit: local machine is windows

Wait, you don't run ssh on the remote machine... you run ssh on your local machine. Looks like you just connected the remote machine to itself Smiley

Since you are on windows and using PuTTY instead of ssh, use the PuTTY configuration under Connection/SSH/Tunnels... to define the ports to be forwarded. But I would need to figure it out too what exactly to enter where, it has been many years since I used PuTTY and windows...

lol! await your advise on PuTTy config... or any other method for windows. Thx

Edit: Also, pls help how to unconnect the remote machine to itself Smiley

NXTtechdevfund  GPG Key ID: 0x903BC112
aldrin
Full Member
***
Offline Offline

Activity: 129
Merit: 100


View Profile
November 26, 2013, 01:48:12 AM
 #1651

I've had my account unlocked for over 24 hours now, but no transaction indicating any earnings from mining. How will I know if i get any earnings? Should I expect some after 24 hours?

crendore
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile
November 26, 2013, 01:55:33 AM
 #1652

Uhhhhh did NXT just get pwned?  I see a recent transaction of 1billion coins and all other transactions are now orphaned....

edit: no, i'm retarded, looks like it got bumped to a bad chain.  deleted all the files and its working again.

crendore
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile
November 26, 2013, 02:01:03 AM
 #1653

Where does it say "You will mine the next block in X time"?  I don't see that anywhere.

magnebit
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
November 26, 2013, 02:35:15 AM
 #1654

Where does it say "You will mine the next block in X time"?  I don't see that anywhere.
Account has to be a day old (I think) and have coins for mining.  But, the mining reward = ALL FEES in the block mined.  Not much fees right now as more blocks have no transactions in them at this state of the game.  This will be a few weeks out before the new functionality comes out.
eid
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500


View Profile
November 26, 2013, 02:44:54 AM
 #1655

I've had my account unlocked for over 24 hours now, but no transaction indicating any earnings from mining. How will I know if i get any earnings? Should I expect some after 24 hours?

You need to wait for 1440 blocks to be solved on top of your first receipt before mining will begin.




eid
aldrin
Full Member
***
Offline Offline

Activity: 129
Merit: 100


View Profile
November 26, 2013, 03:04:42 AM
 #1656

I've had my account unlocked for over 24 hours now, but no transaction indicating any earnings from mining. How will I know if i get any earnings? Should I expect some after 24 hours?

You need to wait for 1440 blocks to be solved on top of your first receipt before mining will begin.




eid

Ok,thanks! 1440 is the magic number then Smiley Do mining earnings appear as a deposit transaction?

Pouncer
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
November 26, 2013, 03:20:12 AM
 #1657


I connected to remote host with PuTTy and did this
[root@Nxt ~]# ssh -L localhost:7885:localhost:7875 192.161.175.142
The authenticity of host '192.161.175.142 (192.161.175.142)' can't be established.
RSA key fingerprint is xxxxxxxx
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
Warning: Permanently added '192.161.175.142' (RSA) to the list of known hosts.
root@192.161.175.142's password:
Last login: Mon Nov 25 17:40:31 2013 from nnnnnnnn
[root@Nxt ~]#

Try connecting to http://localhost:7885/ but unsuccessful.

What did I do wrong?

Edit: local machine is windows

Wait, you don't run ssh on the remote machine... you run ssh on your local machine. Looks like you just connected the remote machine to itself Smiley

Since you are on windows and using PuTTY instead of ssh, use the PuTTY configuration under Connection/SSH/Tunnels... to define the ports to be forwarded. But I would need to figure it out too what exactly to enter where, it has been many years since I used PuTTY and windows...

lol! await your advise on PuTTy config... or any other method for windows. Thx

Edit: Also, pls help how to unconnect the remote machine to itself Smiley

Figured that out. Thanks.

I suggest other users with VPS should do the same. Here is an excellent guide to help you securely connect to your VPS from browser
http://collaboradev.com/2011/08/03/browsing-the-web-through-an-ssh-tunnel-putty-firefox/

NXTtechdevfund  GPG Key ID: 0x903BC112
2Kool4Skewl
Sr. Member
****
Offline Offline

Activity: 644
Merit: 250



View Profile WWW
November 26, 2013, 04:06:36 AM
 #1658

Using a VPS for this is a TERRIBLE IDEA.  Do NOT do it.  Run Nxt locally.


                      ▄████████▄
                  ▄████████████████▄
             ▄██████████████████████████▄
      ▄███████████████████████████████████████▄
 ███████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
 ███████████████████████████████████████████████████
 ███████████████████████████████████████████████████
 ███████████████████████████████████████████████████
  █████████████████████████████████████████████████
   ███████████████████████████████████████████████
   ███████████████████████████████████████████████
    █████████████████████████████████████████████
     ███████████████████████████████████████████
      █████████████████████████████████████████
       ███████████████████████████████████████
        █████████████████████████████████████
         ███████████████████████████████████
          █████████████████████████████████
           ▀█████████████████████████████▀
             ▀█████████████████████████▀
               ▀█████████████████████▀
                 ▀█████████████████▀
                   ▀█████████████▀
                      ▀███████▀
TRUSTEE 
Sharky444
Hero Member
*****
Offline Offline

Activity: 724
Merit: 500


View Profile
November 26, 2013, 06:26:49 AM
 #1659

NEW THREAD:

https://bitcointalk.org/index.php?topic=345619.0

Radix - just imagine
CoinBuzz
Sr. Member
****
Offline Offline

Activity: 490
Merit: 250



View Profile
November 26, 2013, 07:32:48 AM
 #1660

i upgraded to 0.2.9, but it cannot catch blocks at all !

Join ASAP: FREE BITCOIN
Pages: « 1 ... 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 [83] 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 ... 146 »
  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!