Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 05:45:03 AM |
|
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
|
 |
December 26, 2013, 05:51:03 AM |
|
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
Activity: 1512
Merit: 1004
|
 |
December 26, 2013, 05:58:55 AM |
|
right? 24836 9433259657262176905 2013年12月26日 下午1:57:35 2 99 + 2 272 B 1 13234224609845419565 2669 %
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:04:55 AM |
|
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
Activity: 1722
Merit: 1217
|
 |
December 26, 2013, 06:06:29 AM |
|
will transactions without fees get included?
|
Rep Thread: https://bitcointalk.org/index.php?topic=381041If 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
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:14:00 AM |
|
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?  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
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:14:23 AM |
|
will transactions without fees get included?
No
|
|
|
|
|
mezzovide
Member

Offline
Activity: 101
Merit: 10
|
 |
December 26, 2013, 06:15:11 AM |
|
Hi, so I've made a super simple init script to manage your linux node. Im testing this code using Centos 6.5 #!/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/ 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 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 /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 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
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:19:09 AM |
|
@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
|
 |
December 26, 2013, 06:19:17 AM |
|
Hi, so I've made a super simple init script to manage your linux node. Im testing this code using Centos 6.5 #!/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/ 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 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 /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 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
Activity: 98
Merit: 10
|
 |
December 26, 2013, 06:25:07 AM |
|
And more and more people in China following my chinese twitter:weibo http://weibo.com/nxtcoinThey 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
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:26:31 AM |
|
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
|
 |
December 26, 2013, 06:27:01 AM |
|
And more and more people in China following my chinese twitter:weibo http://weibo.com/nxtcoinThey 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
Activity: 42
Merit: 0
|
 |
December 26, 2013, 06:27:21 AM |
|
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
Activity: 98
Merit: 10
|
 |
December 26, 2013, 06:27:49 AM |
|
How about 那下币? 下 as in next...
Yeah, this is better and shorter 
|
|
|
|
|
Come-from-Beyond
Legendary
Offline
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:32:51 AM |
|
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  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
Activity: 2142
Merit: 1010
Newbie
|
 |
December 26, 2013, 06:35:55 AM |
|
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
Activity: 1512
Merit: 1004
|
 |
December 26, 2013, 06:50:21 AM |
|
And more and more people in China following my chinese twitter:weibo http://weibo.com/nxtcoinThey 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.
|
|
|
|
allwelder
Legendary
Offline
Activity: 1512
Merit: 1004
|
 |
December 26, 2013, 06:53:56 AM |
|
|
|
|
|
psybits
Legendary
Offline
Activity: 1386
Merit: 1000
|
 |
December 26, 2013, 06:54:41 AM |
|
|
|
|
|
|
|