Bitcoin Forum
November 04, 2025, 12:04:22 AM *
News: Latest Bitcoin Core release: 30.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 [408] 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 ... 2548 »
  Print  
Author Topic: NXT :: descendant of Bitcoin - Updated Information  (Read 2761749 times)
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 05:45:03 AM
 #8141

Announcement:
We are moving further on our way to decentralization. Soon I'll stop updating well-known peers in web.xml.
U (community) should cooperate and decide how u will share well-known peers addresses.
I'll make it a bit more convenient to edit the list. This will be a text file next to start.jar.


Sounds great.

Will it be an ip address per line?

We can use both ways.
MadCow
Hero Member
*****
Offline Offline

Activity: 655
Merit: 500



View Profile
December 26, 2013, 05:51:03 AM
 #8142

I'm running I can see from the block explorer that my NXT client is up to date, but every time I try to send NXT to another account the transaction does not work, but the client 'send' confirmation does pop-up. The transaction does not appear in my transaction history as a fail - it just doesn't appear anywhere. I've tried to register alias names using localhost, and they always fail too.

Is it possible your computer does not have the correct time? You should get your system time from the network. Nxt will reject any transactions with a timestamp that is more than 15 seconds ahead of the network time.

My time is correct. What disturbs me the most is my client always gives me the confirmation message saying my send was successful, but then it never appears in either account.

Because I can receive blocks but not send out transactions, I think it is a networking problem. I don't think i can forge either.
allwelder
Legendary
*
Offline Offline

Activity: 1512
Merit: 1004



View Profile
December 26, 2013, 05:58:55 AM
 #8143

right?
Code:
24836		9433259657262176905		2013年12月26日 下午1:57:35	
2 99 + 2 272 B
1 13234224609845419565 2669 %

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.CryptoTalk.org.|.MAKE POSTS AND EARN BTC!.🏆
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:04:55 AM
 #8144

Does the DDoS cause the nodes to max out their bandwidth on transmit or receive?

Transmit. Some zombies installed in universities eat 10 GiB per hour.
Anon136
Legendary
*
Offline Offline

Activity: 1722
Merit: 1217



View Profile
December 26, 2013, 06:06:29 AM
 #8145

will transactions without fees get included?

Rep Thread: https://bitcointalk.org/index.php?topic=381041
If one can not confer upon another a right which he does not himself first possess, by what means does the state derive the right to engage in behaviors from which the public is prohibited?
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:14:00 AM
 #8146

right, i can see it. don't know atm, perhaps a reassignment?
i have to ask cfb tomorrow anyway about the structure like
case sensitive, reassignment, transaction id etc. i have seen
also double naming for the aliases i have registered due to
a reassignment but now it's ok. will check this tomorrow right
after the first coffee.

ps: i am interested in one of your aliases, shall we wait until auction
is ready or do you plan to keep them all?  Wink

Aliases r case-insensitive, but upon assignment users may use big and small letters to distinguish things like BenDover and BendOver.
Each alias has id = id of the very 1st assigning transaction.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:14:23 AM
 #8147

will transactions without fees get included?

No
mezzovide
Member
**
Offline Offline

Activity: 101
Merit: 10


View Profile
December 26, 2013, 06:15:11 AM
 #8148

Hi, so I've made a super simple init script to manage your linux node. Im testing this code using Centos 6.5

Code:
#!/bin/bash
# nxt daemon
# chkconfig: 345 20 80
# description: nxt daemon
# processname: nxt

DAEMON_PATH="/nxt"

DAEMON=/usr/bin/java
DAEMONOPTS="-Xms1024m -Xmx2048m -jar start.jar"

NAME=nxt
DESC="NXT java daemon script"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

case "$1" in
start)
printf "%-50s" "Starting $NAME..."
cd $DAEMON_PATH
PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
#echo "Saving PID" $PID " to " $PIDFILE
        if [ -z $PID ]; then
            printf "%s\n" "Fail"
        else
            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
                printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
  $0 stop
  $0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac

How to use :

1. Put this script under with filename "nxt" under your /etc/init.d/
Code:
nano /etc/init.d/nxt

*copy the script*

make sure to "chmod +x /etc/init.d/nxt" after copying so you can running it at startup

2. Edit some variables inside your script
Code:
DAEMON_PATH="/nxt"

DAEMON=/usr/bin/java
DAEMONOPTS="-Xms1024m -Xmx2048m -jar start.jar"

I put my nxt folder under /nxt in the root folder, you should change DAEMON_PATH value if u using different path

DAEMON is where your java installation located

You should change your allocated memory for java in DAEMONOPTS

3. Usage
Code:
/etc/init.d/nxt start ( starting daemon )
/etc/init.d/nxt stop ( stopping daemon )
/etc/init.d/nxt restart ( restart daemon )
/etc/init.d/nxt status ( your daemon status )
4. Running this script at startup
Code:
chkconfig nxt on

Feel free to modify it and share so everyone can using it too

Donate Nxt : 6085825983472667622 if u find this script useful. Thanks.

Btc : 12LMdyWoyjJ1BZxfWmaZMWjTXn7S9y5EdK
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:19:09 AM
 #8149

@CfB,
could the latest version be also uploaded under nxtlatest.zip (or similar) filename to make automating downloads easier with bash scripts.

Ok. I may forget a couple of times, remind me, please, if I do.
opticalcarrier
Full Member
***
Offline Offline

Activity: 238
Merit: 100



View Profile
December 26, 2013, 06:19:17 AM
 #8150

Hi, so I've made a super simple init script to manage your linux node. Im testing this code using Centos 6.5

Code:
#!/bin/bash
# nxt daemon
# chkconfig: 345 20 80
# description: nxt daemon
# processname: nxt

DAEMON_PATH="/nxt"

DAEMON=/usr/bin/java
DAEMONOPTS="-Xms1024m -Xmx2048m -jar start.jar"

NAME=nxt
DESC="NXT java daemon script"
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME

case "$1" in
start)
printf "%-50s" "Starting $NAME..."
cd $DAEMON_PATH
PID=`$DAEMON $DAEMONOPTS > /dev/null 2>&1 & echo $!`
#echo "Saving PID" $PID " to " $PIDFILE
        if [ -z $PID ]; then
            printf "%s\n" "Fail"
        else
            echo $PID > $PIDFILE
            printf "%s\n" "Ok"
        fi
;;
status)
        printf "%-50s" "Checking $NAME..."
        if [ -f $PIDFILE ]; then
            PID=`cat $PIDFILE`
            if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
                printf "%s\n" "Process dead but pidfile exists"
            else
                echo "Running"
            fi
        else
            printf "%s\n" "Service not running"
        fi
;;
stop)
        printf "%-50s" "Stopping $NAME"
            PID=`cat $PIDFILE`
            cd $DAEMON_PATH
        if [ -f $PIDFILE ]; then
            kill -HUP $PID
            printf "%s\n" "Ok"
            rm -f $PIDFILE
        else
            printf "%s\n" "pidfile not found"
        fi
;;

restart)
  $0 stop
  $0 start
;;

*)
        echo "Usage: $0 {status|start|stop|restart}"
        exit 1
esac

How to use :

1. Put this script under with filename "nxt" under your /etc/init.d/
Code:
nano /etc/init.d/nxt

*copy the script*

make sure to "chmod +x /etc/init.d/nxt" after copying so you can running it at startup

2. Edit some variables inside your script
Code:
DAEMON_PATH="/nxt"

DAEMON=/usr/bin/java
DAEMONOPTS="-Xms1024m -Xmx2048m -jar start.jar"

I put my nxt folder under /nxt in the root folder, you should change DAEMON_PATH value if u using different path

DAEMON is where your java installation located

You should change your allocated memory for java in DAEMONOPTS

3. Usage
Code:
/etc/init.d/nxt start ( starting daemon )
/etc/init.d/nxt stop ( stopping daemon )
/etc/init.d/nxt restart ( restart daemon )
/etc/init.d/nxt status ( your daemon status )
4. Running this script at startup
Code:
chkconfig nxt on

Feel free to modify it and share so everyone can using it too

Donate Nxt : 6085825983472667622 if u find this script useful. Thanks.

very cool.  if you could make one that would take hostname argument and then SSH out to do whatever, I bet that would be very bounty worthy.  Beyond my skills though.  Id suggest using SSH keys with passwordless login.
laowai80
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 26, 2013, 06:25:07 AM
 #8151


And more and more people in China following my chinese twitter:weibo
http://weibo.com/nxtcoin

They ask questions,query,beg for first NXT,and many other things.

I give them related links and answers as many as possible.
And I believe that,with more and more chinese players participation,NXT will be really rocket.

So,if some bounty are for chinese newbie,it will be very appreciated and helpful for NXT development.
You can give me a bounty link,I will introduce to chinese newcomers.
Or you can give me the NXT,I will redistribute to all the chinese participator.


You've already come up with a name for NXT in Chinese? Should be a long one, something like 那可色特币  hehe?
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:26:31 AM
 #8152

gbeirn,

Are you using cssh or equivalent? Without it there is no way I could manage 100+ servers

James

LOL, nope! Just good old SSH to every VPS. I am working on setting up some scripts so it is easier for me to stop and restart the Java process and make updating easier.



I could add an API call to invoke Runtime.exec() with arbitrary command set in web.xml. This is a potential loophole, so it will work only if allowedBotHosts set, password is provided and over https only.
jimhsu
Sr. Member
****
Offline Offline

Activity: 364
Merit: 264


View Profile
December 26, 2013, 06:27:01 AM
 #8153


And more and more people in China following my chinese twitter:weibo
http://weibo.com/nxtcoin

They ask questions,query,beg for first NXT,and many other things.

I give them related links and answers as many as possible.
And I believe that,with more and more chinese players participation,NXT will be really rocket.

So,if some bounty are for chinese newbie,it will be very appreciated and helpful for NXT development.
You can give me a bounty link,I will introduce to chinese newcomers.
Or you can give me the NXT,I will redistribute to all the chinese participator.


You've already come up with a name for NXT in Chinese? Should be a long one, something like 那可色特币  hehe?

How about 那下币? 下 as in next...

Dans les champs de l'observation le hasard ne favorise que les esprits préparé
getfun12345
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
December 26, 2013, 06:27:21 AM
 #8154

We don't support "official" client anymore. Someone should create alt-clients.

Is that means transactions can be encrypted in client? no need to send secret phrase to server node?
laowai80
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
December 26, 2013, 06:27:49 AM
 #8155


How about 那下币? 下 as in next...

Yeah, this is better and shorter Smiley
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:32:51 AM
 #8156

I'm running the latest version of NXT. I open my account using localhost in my browser. I can see from the block explorer that my NXT client is up to date, but every time I try to send NXT to another account the transaction does not work, but the client 'send' confirmation does pop-up. The transaction does not appear in my transaction history as a fail - it just doesn't appear anywhere. I've tried to register alias names using localhost, and they always fail too.

It looks like I can receive blocks from the network (my client is up to date), but my client can't send transactions out to the network. What am I doing wrong? Could this be a firewall problem (i'm using Windows 7 and google chrome).

Is there a setting in web.xml that might be blocking my send transactions, even though I can still receive blocks?
Thanks for any help! I've been trying things for days now and I'm very frustrated Sad

This can be coz of incorrect time. If u send a transaction that's more than 15 sec in future then it's rejected.
Come-from-Beyond
Legendary
*
Offline Offline

Activity: 2142
Merit: 1010

Newbie


View Profile
December 26, 2013, 06:35:55 AM
 #8157

We don't support "official" client anymore. Someone should create alt-clients.

Is that means transactions can be encrypted in client? no need to send secret phrase to server node?

True
allwelder
Legendary
*
Offline Offline

Activity: 1512
Merit: 1004



View Profile
December 26, 2013, 06:50:21 AM
 #8158


And more and more people in China following my chinese twitter:weibo
http://weibo.com/nxtcoin

They ask questions,query,beg for first NXT,and many other things.

I give them related links and answers as many as possible.
And I believe that,with more and more chinese players participation,NXT will be really rocket.

So,if some bounty are for chinese newbie,it will be very appreciated and helpful for NXT development.
You can give me a bounty link,I will introduce to chinese newcomers.
Or you can give me the NXT,I will redistribute to all the chinese participator.


You've already come up with a name for NXT in Chinese? Should be a long one, something like 那可色特币  hehe?

haha
Yes,I want to give a chinese name ,but not determined.
那可色特币is similar with the pronunciation of Next,but it is so long.

Another ,there are many following on my chinese twitter suddenly.
So I may need to name NXT in chinese recently,and any suggestion will be appreciated.


 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.CryptoTalk.org.|.MAKE POSTS AND EARN BTC!.🏆
allwelder
Legendary
*
Offline Offline

Activity: 1512
Merit: 1004



View Profile
December 26, 2013, 06:53:56 AM
 #8159

somebody give me a name :恩埃克斯提  币, Grin Grin Grin

 
                                . ██████████.
                              .████████████████.
                           .██████████████████████.
                        -█████████████████████████████
                     .██████████████████████████████████.
                  -█████████████████████████████████████████
               -███████████████████████████████████████████████
           .-█████████████████████████████████████████████████████.
        .████████████████████████████████████████████████████████████
       .██████████████████████████████████████████████████████████████.
       .██████████████████████████████████████████████████████████████.
       ..████████████████████████████████████████████████████████████..
       .   .██████████████████████████████████████████████████████.
       .      .████████████████████████████████████████████████.

       .       .██████████████████████████████████████████████
       .    ██████████████████████████████████████████████████████
       .█████████████████████████████████████████████████████████████.
        .███████████████████████████████████████████████████████████
           .█████████████████████████████████████████████████████
              .████████████████████████████████████████████████
                   ████████████████████████████████████████
                      ██████████████████████████████████
                          ██████████████████████████
                             ████████████████████
                               ████████████████
                                   █████████
.CryptoTalk.org.|.MAKE POSTS AND EARN BTC!.🏆
psybits
Legendary
*
Offline Offline

Activity: 1386
Merit: 1000



View Profile
December 26, 2013, 06:54:41 AM
 #8160

Hi guys

You can see the first report from our NXT press release here (with over 300 news outlets the PR was published on): http://www.datafilehost.com/d/f2c4512a

Other notable mentions (please check the twitter link at the bottom):

http://finance.yahoo.com/news/bitcoin-descendant-nxt-features-100-051500739.html

http://bitcoinprbuzz.com/bitcoin-descendant-nxt-features-100-original-code-base-green-mining-decentralized-trading-and-many-more-primary-innovations/

http://bitcoin.alltop.com/

http://cryptocoinupdates.com/bitcoin-descendant-nxt-features-100-original-code-base-green-mining-decentralized-trading-and-many-more-primary-innovations/#more-840

https://www.facebook.com/nxtcrypto

http://www.hypebuzz.com/search.php?q=bitcoin

http://bitcoin-tech.com/blogs/entry/bitcoin-descendant-nxt-features-100-original-code-base-green-mining-decentralized-trading-and-many-more-primary-innovations

http://coinminded.com/bitcoin-descendant-nxt-features-100-original-code-base-green-mining-decentralized-trading-and-many-more-primary-innovations/

http://virtualmining.com/bitcoin-descendant-nxt-features-100-new-code-green-mining-decentralized-trading-more/

http://www.topix.com/economics/bitcoin/2013/12/bitcoin-descendant-nxt-features-100-new-code-green-mining-decentralized-trading-more

http://topbitcoinnews.com/bitcoin-descendant-nxt-features

Twitter: https://twitter.com/search?q=%22bitcoin%20descendant%20nxt%22&src=typd&f=realtime

http://newsbitcoin.com/?p=28433

http://cryptocoin.ws/?s=nxt

This press release was partially funded by 0.4 BTC in donations (thank you to everyone who helped!).

Any donations in NXT for this campaign, and to fund further campaigns, are welcome.

Please PM me to organise Smiley
Pages: « 1 ... 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 [408] 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 ... 2548 »
  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!