Author Topic: [ANN] ypool.net - Fast PTS pool  (Read 196977 times)

0 Members and 1 Guest are viewing this topic.

Offline nelion9

  • Newbie
  • *
  • Posts: 9
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #386 on: December 01, 2013, 04:33:02 am »
Someone knows how to put in Debian?

Offline Parabola

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #385 on: November 30, 2013, 06:58:53 pm »
Hi

I found the best mining software to me is the jhprotominer yvg1900 barcelona, because is that what gives me more number of collisions/min.

But i don't know how to change the name of the workername and the password.
With jhprotominer v.01 was easy, because it was only change the bat file.

Can someone explain to me who to do it?

Thanks

Offline Gekko

  • Full Member
  • ***
  • Posts: 84
  • Lunch is for wimps........ Greed is good.
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #384 on: November 30, 2013, 12:02:36 pm »
Why "warmup" and why does it never submit any shares?
Not sure but: it looks like it does not submit shares because 40c/m is a little slow. If you had 400c/m you would probably see "Share found!" every third line.
I don't know what "warmup" is exactly for, I think calculating some average ("warmup" later changes to "e=0.5678" or something like that).
 

Offline JohnD

  • Full Member
  • ***
  • Posts: 76
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #383 on: November 30, 2013, 11:24:34 am »
Hey,

i tried to mine on this pool again with the yvg9000 miner (jhprotominer-yvg1900-M7fs-linux64-corei7sse4) but i get only something like this:

Code: [Select]
collisions/min: 46.6667, warmup; Shares found: 0, submitted 0, accepted 0
collisions/min: 45.0000, warmup; Shares found: 0, submitted 0, accepted 0
collisions/min: 44.2500, warmup; Shares found: 0, submitted 0, accepted 0
collisions/min: 42.8571, warmup; Shares found: 0, submitted 0, accepted 0

Why "warmup" and why does it never submit any shares?
Donate if you like it:
PTS: Pi236u2LoqHjt8xs75YdQ7ZEFGuMqVd9sJ
BTC: 1AngSrJcBxG3zBks8DnPzvTU3Q2d678XaF

Offline grigower

  • Newbie
  • *
  • Posts: 14
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #382 on: November 29, 2013, 09:57:37 pm »
may be is something  for mining on Debian for this pool?

Offline yago

  • Full Member
  • ***
  • Posts: 188
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #381 on: November 28, 2013, 07:03:50 pm »
ypool-stats.sh
http://pastebin.com/VGpN6Sqs

Example output:
YPOOL status: HTTP:80 up, Mining: 8080:up 8081:up 8082:up 8083:up 8084:up 8085:up 8086:up 8087:up 10034:up, Workers: 20686, coll/m: 2199347.20, Blocks found last 24h: 145

Code: [Select]
#!/bin/bash
#
# This script harvest some data from ypool PTS pool
# Autor: Yago
# License:  WTFPL http://www.wtfpl.net/txt/copying/

HTTP_TIMEOUT=5 # seconds
MINING_TIMEOUT=5 # seconds
TMP=/tmp/ypool-stats

mkdir -p $TMP


harvest() {
# login to ypool
wget --quiet --save-cookies $TMP/ycookies.txt --post-data="login_username=sternburg&login_password=poemacatedral" "http://ypool.net/howto?ct=3" -O $TMP/howto.html

# harvest mining ports
awk -F "mining: <b>"  '{print $2}' $TMP/howto.html | awk -F '<' '{print $1}' | perl -pe 's/, /\n/g' > $TMP/ports

# harvest Workers
WORKERS=`awk -F 'stats_pool_worker">' '{print $2}' $TMP/howto.html | awk -F '<' '{print $1}'`

# harvest hashrate (coll/m)
HASHRATE=`awk -F 'stats_pool_hashrate">' '{print $2}' $TMP/howto.html | awk -F '<' '{print $1}'`

# harvest Blocks found last 24h
wget --quiet --load-cookies $TMP/ycookies.txt "http://ypool.net/pts/stats_overall" -O $TMP/poolstats.html
BLOCKSLAST24H=`perl -pe 's/<td>1 Hour/\n<td>1 Hour/g' $TMP/poolstats.html | perl -pe 's/table>/\n/g' | grep "Hour" | awk -F '>' '{print $26}' | perl -pe 's/<\/td//g'`

}

checkminingports() {

# List of the working mining ports as of 28/nov/2013
# just in case HTTP is down and $TMP got deleted
if [ ! -f $TMP/ports ]; then
echo "8080
8081
8082
8083
8084
8085
8086
8087
10034" > $TMP/ports
fi

MINING_PORT_STATUS=""

while read PORT
do
nc -z -w$MINING_TIMEOUT ypool.net $PORT
if [ $? -eq 0 ]; then
MINING_PORT_STATUS="$MINING_PORT_STATUS $PORT:up"
else
MINING_PORT_STATUS="$MINING_PORT_STATUS $PORT:DOWN :("
fi

done <$TMP/ports

}


# check http
wget --quiet --tries=1 --timeout=$HTTP_TIMEOUT http://ypool.net -O /dev/null
if [ $? -eq 0 ]; then
harvest
checkminingports
echo "YPOOL status: HTTP:80 up, Mining:$MINING_PORT_STATUS, Workers: $WORKERS, coll/m: $HASHRATE, Blocks found last 24h: $BLOCKSLAST24H"
else
checkminingports
echo "YPOOL status: HTTP:80 down :/, Mining:$MINING_PORT_STATUS, Workers,coll/m,Blocks found last 24h: data source down."
fi

Edit: added "--tries=1 " to fix 20 times retry bug and fixed tmp route
« Last Edit: December 01, 2013, 09:30:58 pm by yago »
http://bitsharestalk.org/donate.html  <---- Donate to the BitShares Forum ----> PforumPLfVQXTi4QpQqKwoChXHkoHcxGuA

Offline yvg1900

  • Full Member
  • ***
  • Posts: 198
    • View Profile
  • BitShares: yvg1900
Re: [ANN] ypool.net - Fast PTS pool
« Reply #380 on: November 28, 2013, 04:24:24 pm »
One of ypool users - atp1916 - described it here:

http://aeternal.site11.com/

Basically, it is all about tradeoff between performance and submitted/accepted shares ratio.
Follow @yvg1900 on Twitter for yam miner updates and support

Offline Gekko

  • Full Member
  • ***
  • Posts: 84
  • Lunch is for wimps........ Greed is good.
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #379 on: November 28, 2013, 04:10:37 pm »
yvg1900, sorry for asking but as I'm new to your miner:

What's the difference between M7ff, M7fs and so on?

Offline yvg1900

  • Full Member
  • ***
  • Posts: 198
    • View Profile
  • BitShares: yvg1900
Re: [ANN] ypool.net - Fast PTS pool
« Reply #378 on: November 28, 2013, 12:24:18 pm »
People,

From what the questions I get I see some are still using M7c version of the yvg1900 miner. Please update to M7f line miner ASAP - this is matter of respect to the coin and others.

Fix was available instantly with ypool software update and Twitter announcement @yvg1900 has been made, too, long time ago.

I encourage you to update, and to push this I will not respond to any M7c/M7a related questions neither public, nor private.

Thanks,
yvg1900
Follow @yvg1900 on Twitter for yam miner updates and support

hashbit

  • Guest
Re: [ANN] ypool.net - Fast PTS pool
« Reply #377 on: November 28, 2013, 04:07:58 am »
I didn't get this payment either.  It's been a few hours.  I don't see it in the blockchain.  Can anyone help?

received, thanks!

hashbit

  • Guest
Re: [ANN] ypool.net - Fast PTS pool
« Reply #376 on: November 28, 2013, 04:02:13 am »
I didn't get this payment either.  It's been a few hours.  I don't see it in the blockchain.  Can anyone help?

« Last Edit: November 28, 2013, 04:06:58 am by hashbit »

Offline leeboqiang

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #375 on: November 28, 2013, 03:03:42 am »
thank you
« Last Edit: November 28, 2013, 03:47:56 am by leeboqiang »

Offline smokim11

  • Sr. Member
  • ****
  • Posts: 217
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #374 on: November 26, 2013, 04:30:49 pm »
Before I start searching in this thread (alot of pages to go through) has anyone posted a tutorial on how to run the miner from ypool for mining on Ubuntu?

If not can some post a tutorial for it please.

Thanks.

as root:

sudo su
apt-get update
apt-get upgrade

apt-get -y install ntp mc screen
apt-get -y install build-essential git
apt-get -y install libssl-dev
apt-get -y install libboost-all-dev
apt-get -y install git g++  libdb++-dev build-essential libgmp-dev
apt-get -y install  libdb-dev libdb++-dev libminiupnpc-dev

exit
cd
mkdir install
cd install
git clone https://github.com/Tydus/jhProtominer -b linux-port
cd jhProtominer/src/jhProtominer/
make CFLAGS="-O3 -march=native"
cd
screen -dmS p install/jhProtominer/src/jhProtominer/./jhProtominer -t 8 -o ypool.net:8081 -u svd666.1 -p x -m512
screen -r p

Thanks alot!
If I helped you and want to show your appreciation donate any amount:
Pjem2V2FDPGZa6yAvpL2fN5yZKXYUNLSv5

Offline jh00

  • Jr. Member
  • **
  • Posts: 36
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #373 on: November 26, 2013, 03:13:27 pm »
So anyone care to comment on what this is all about?
Sadly many people use our custom miner software for botnets. As they connect to ypool.net some av-companies have started flagging the entire site as potentially dangerous. I guess I have to write an email to the AV companies and explain the situation to them. Until it is resolved, you can safely ignore the warning.

Hello!

My command line miner show 4 found shares, but its only 1 on the page (right top corner shows shares 1.0000) and it seems to be not increasing.
collisions/min: 20.0742 Shares total: 4

What could be the reason?

Thanks!

Update: now its 11 found shares but 0 on web page...
Please read the FAQ on our page. There is one question that explains what share is and how it works.

Offline Africa

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: [ANN] ypool.net - Fast PTS pool
« Reply #372 on: November 26, 2013, 09:18:22 am »
Hello!

My command line miner show 4 found shares, but its only 1 on the page (right top corner shows shares 1.0000) and it seems to be not increasing.
collisions/min: 20.0742 Shares total: 4

What could be the reason?

Thanks!

Update: now its 11 found shares but 0 on web page...
« Last Edit: November 26, 2013, 10:33:59 am by Africa »