Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: thejepper on December 15, 2013, 03:52:06 PM



Title: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: thejepper on December 15, 2013, 03:52:06 PM
Hi All,

The Memory Coin Binary has been updated, see instructions below to update miner!!!

So the new memory coin 2.0 has justed launch. The difficulty and return is slowly ramping up so there is time to build up your mining power :)
Its a cpu only coin that uses AES for it proof of work so processors supporting harware AES functions are significantly faster.

We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


You can run the miner application on any cloud platform! We'll take digital ocean as an example! I had some servers running xpm mining, so let switch them after the xpm diff increases.
So lets set up a memorycoin miner in the cloud:

Register with Digital Ocean if you did not do so already:
https://www.digitalocean.com/?refcode=8f5c9f7a1fe9 (https://www.digitalocean.com/?refcode=8f5c9f7a1fe9)
You can try these for free credits: HOLIDAYSSD or DIVEIN10

Next, create a droplet with at least 1 gig ram, i chose 2 cpu with 2 gigs of ram.
Pick a name, location and the latest ubuntu linux as OS.
Next you get an email with the ssh link, so use putty or SSH to get into your new virtual server!

After login type:

Code:
cd ~
apt-get update && apt-get install -y git make g++ build-essential libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev dos2unix libboost-all-dev
git clone https://github.com/memorycoin/memorycoin && cd memorycoin/src && make -f makefile.unix

Ok that should take a while, and finish with no errors.
Next up, the config:

[FILL IN A PASSWORD HERE] = fill in a good password like igoingtostartminingmemorycoinyay

Code:
cd ~

mkdir -p .memorycoin
echo 'rpcuser=memorycoinrpc
rpcpassword=[FILL IN A PASSWORD HERE]
rpcport=1925
rpcallow=127.0.0.1
server=1
addnode=180.183.156.250:1968
addnode=76.24.94.154
addnode=62.43.2.239
addnode=82.52.177.81
addnode=84.249.109.128
addnode=79.3.168.143:1968
addnode=94.122.229.201:1968
addnode=118.210.212.90:1968
addnode=70.112.30.253:1968
addnode=95.89.105.134:1968
addnode=209.12.233.40:14210
addnode=79.113.210.250:51653
addnode=62.142.165.113:49646
addnode=86.106.35.224:1968
addnode=89.210.201.182:59197
addnode=84.228.200.63:50831
addnode=81.174.50.66:51930
addnode=213.197.188.148:43212
gen=1' > .memorycoin/memorycoin.conf

Then just start the daemon and watch it go!
Code:
cd memorycoin/src && ./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

Give it some time to connect to the network, it took my servers around 10 minutes.
Its normal if the getmininginfo shows a message or 0.000000 for some 10 minutes!

good luck!

=> So what to do when you mine a block? First of congratulations!

Transfer the funds by typing:
./bitcoind sendtoaddress <memorycoinaddress> <amount> [comment] [comment-to]
where memorycoinaddress is your desktop memorry coin wallet adress

or copy the wallet.dat over to your pc using ftp or email from cd ~ && cd .memorycoin and import it into the desktop client!



Some tips:

=> use screen -S mmc and screen -r if you open and close ssh sessions often
=> transfer out funds by commandline transfer or copying the wallet.dat
=> apply encryption if you dont feel that the server is secure!
=> check out www.MemoryCoin.info (http://www.MemoryCoin.info) for more info about this new coin!
=> don't forget to support your dev's!

edit: im getting around 0.15 hashes per min for a 2 cpu, as digital ocean does not seem to support AES hardware accell,  but i got a lot of them running, burning of some saved up credits :D
edit2: searching for a cloud comp that has the aes support, ill keep you updated!
edit3: so one of my server has hit a block, so it works! :)


edit 4:  update miner:

- Transfer all coins you have!!
- Reboot server from Digital Ocean panel.
- type:  
cd ~
rm -rf memorycoin
git clone https://github.com/memorycoin/memorycoin && cd memorycoin/src && make -f makefile.unix
./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: kaene on December 15, 2013, 04:02:39 PM
Could you add a guide to do this using Centos?

Thanks!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 04:06:09 PM
Could you add a guide to do this using Centos?

Thanks!

Cent-OS uses yum as a package manager
so replace apt-get update and apt-get install with yum update and yum install

good luck!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: Sylon on December 15, 2013, 04:28:45 PM
Thanks for the guide
I will use it :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 04:35:55 PM
Thanks for the guide
I will use it :)

thanks! happy mining!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: cpupower on December 15, 2013, 04:37:13 PM
Lots of errors when compiling on CentOS, trying to figure out  ???


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 04:41:08 PM
Lots of errors when compiling on CentOS, trying to figure out  ???

what error's are you getting?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: BitcoinMTG on December 15, 2013, 04:42:35 PM
Thanks for the guide !

I followed all your steps, but when trying to execute the last command, I get : "-bash: cd: memorycoin/src: No such file or directory", why is that ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 04:44:47 PM
Thanks for the guide !

I followed all your steps, but when trying to execute the last command, I get : "-bash: cd: memorycoin/src: No such file or directory", why is that ?

return to the doc root: cd ~ 
if you type ls you should see a map called memorycoin
then try the command again, otherwise post the directory :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: BitcoinMTG on December 15, 2013, 04:52:26 PM
https://i.imgur.com/kurmxhV.png

Sorry, I'm new to Linux ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 15, 2013, 04:56:14 PM
Quote
=> transfer out funds by commandline transfer or copying the wallet.dat

can you pls describe a little bit more .. who to fint my address then?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 04:56:57 PM
Sorry, I'm new to Linux ^^

first you have to type in a password you would like :)
second do: cd ~ && ls  and take another screenshot


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:02:39 PM
Quote
=> transfer out funds by commandline transfer or copying the wallet.dat

can you pls describe a little bit more .. who to fint my address then?
Great question!

You mined a block? Congratulations!

Transfer by typing:
./bitcoind sendtoaddress <memorycoinaddress> <amount> [comment] [comment-to]
where memorycoinaddress is your desktop memorry coin wallet adress

or copy the wallet.dat over to your pc using ftp or email from cd ~ && cd .memorycoin and import it into the desktop client!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: BitcoinMTG on December 15, 2013, 05:02:55 PM
Here it is :

https://i.imgur.com/sRVkiJ3.png

Thanks for your help  :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: FreePls on December 15, 2013, 05:05:44 PM
Without AES-NI support i won't do that..  0,13 hash for 2 cpu is nothing..  on my own machine i have 2,7 hpm and i did not found 1 block in 3,5 hours yet..   and to reach that 2,7 hpm i have to buy 20 of this 2 core droplets, thats  $400 / month, for that price i can buy a new cpu  :D

hope you find a AES cloud host



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:06:41 PM
Here it is :
Thanks for your help  :)

thats strange, where did you put the program?
Hit me up on my private msg and ill help you out!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: deathmul on December 15, 2013, 05:09:41 PM
Here it is :
Thanks for your help  :)

thats strange, where did you put the program?
Hit me up on my private msg and ill help you out!

I have the same error. Could you post here the resolution?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:13:21 PM
Here it is :
Thanks for your help  :)

thats strange, where did you put the program?
Hit me up on my private msg and ill help you out!

I have the same error. Could you post here the resolution?

did the git clone run succesfully? it should make a folder in your root called memorycoin


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:16:09 PM
Here it is :
Thanks for your help  :)

thats strange, where did you put the program?
Hit me up on my private msg and ill help you out!

I have the same error. Could you post here the resolution?

did the git clone run succesfully? it should make a folder in your root called memorycoin

thats the dekstop client, if you see a little pic-axe in the right under corner then you are mining, hover over to see the hashrate


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: cpupower on December 15, 2013, 05:17:11 PM
Lots of errors when compiling on CentOS, trying to figure out  ???

what error's are you getting?

All the others steps are ok, but when I run the make, it cannot find the files in boost/*. There are no such directory and files

Code:
[root@abcxyz src]# make -f makefile.unix
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/memorycoin/src -I/root/memorycoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/memorycoin/src/leveldb/include -I/root/memorycoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
alert.cpp:6:53: warning: boost/algorithm/string/classification.hpp: No such file or directory
alert.cpp:7:46: warning: boost/algorithm/string/replace.hpp: No such file or directory
alert.cpp:8:29: warning: boost/foreach.hpp: No such file or directory
In file included from alert.h:13,
                 from alert.cpp:11:
util.h:25:29: warning: boost/version.hpp: No such file or directory
util.h:26:28: warning: boost/thread.hpp: No such file or directory
util.h:27:32: warning: boost/filesystem.hpp: No such file or directory
util.h:28:37: warning: boost/filesystem/path.hpp: No such file or directory
util.h:29:57: warning: boost/date_time/gregorian/gregorian_types.hpp: No such file or directory
util.h:30:59: warning: boost/date_time/posix_time/posix_time_types.hpp: No such file or directory
In file included from netbase.h:10,
                 from util.h:32,
                 from alert.h:13,
                 from alert.cpp:11:
serialize.h:17:48: warning: boost/type_traits/is_fundamental.hpp: No such file or directory
serialize.h:18:33: warning: boost/tuple/tuple.hpp: No such file or directory
serialize.h:19:44: warning: boost/tuple/tuple_comparison.hpp: No such file or directory
serialize.h:20:36: warning: boost/tuple/tuple_io.hpp: No such file or directory
In file included from serialize.h:22,
                 from netbase.h:10,
                 from util.h:32,
                 from alert.h:13,
                 from alert.cpp:11:
allocators.h:10:34: warning: boost/thread/mutex.hpp: No such file or directory
In file included from alert.cpp:12:
key.h:16:49: warning: openssl/ec.h: No such file or directory
In file included from alert.cpp:13:
net.h:9:27: warning: boost/array.hpp: No such file or directory
In file included from addrman.h:10,
                 from net.h:21,
                 from alert.cpp:13:
sync.h:9:44: warning: boost/thread/recursive_mutex.hpp: No such file or directory
sync.h:10:34: warning: boost/thread/locks.hpp: No such file or directory
sync.h:11:47: warning: boost/thread/condition_variable.hpp: No such file or directory
In file included from alert.cpp:15:
ui_interface.h:10:37: warning: boost/signals2/signal.hpp: No such file or directory
ui_interface.h:11:41: warning: boost/signals2/last_value.hpp: No such file or directory
allocators.h:111: error: ‘boost’ has not been declared
allocators.h:111: error: ISO C++ forbids declaration of ‘mutex’ with no type
allocators.h:111: error: expected ‘;’ before ‘mutex’
allocators.h: In member function ‘void LockedPageManagerBase<Locker>::LockRange(void*, size_t)’:
allocators.h:59: error: ‘boost’ has not been declared
allocators.h:59: error: expected `;' before ‘lock’
allocators.h: In member function ‘void LockedPageManagerBase<Locker>::UnlockRange(void*, size_t)’:
allocators.h:82: error: ‘boost’ has not been declared
allocators.h:82: error: expected `;' before ‘lock’
allocators.h: In member function ‘int LockedPageManagerBase<Locker>::GetLockedPageCount()’:
allocators.h:105: error: ‘boost’ has not been declared
allocators.h:105: error: expected `;' before ‘lock’
serialize.h: In function ‘uint64 ReadCompactSize(Stream&)’:
serialize.h:233: error: incomplete type ‘std::ios_base’ used in nested name specifier
serialize.h: At global scope:
serialize.h:375: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:375: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:376: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:376: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:378: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:378: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:379: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:379: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:381: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:381: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:382: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:382: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:396: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:396: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:397: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:397: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:398: error: ‘boost’ has not been declared
serialize.h:398: error: expected ‘,’ or ‘...’ before ‘<’ token
serialize.h:401: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:401: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:402: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:402: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:403: error: ‘boost’ has not been declared
serialize.h:403: error: expected ‘,’ or ‘...’ before ‘<’ token
serialize.h:479: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:479: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:485: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:485: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:485: error: redefinition of ‘template<class T, class A> unsigned int GetSerializeSize_impl(const std::vector<_Tp, _Alloc>&, int, int, int)’
serialize.h:479: error: ‘template<class T, class A> unsigned int GetSerializeSize_impl(const std::vector<_Tp, _Alloc>&, int, int, int)’ previously declared here
serialize.h: In function ‘unsigned int GetSerializeSize(const std::vector<_Tp, _Alloc>&, int, int)’:
serialize.h:496: error: ‘boost’ has not been declared
serialize.h:496: error: expected primary-expression before ‘>’ token
serialize.h:496: error: expected primary-expression before ‘)’ token
serialize.h: At global scope:
serialize.h:501: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:501: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:509: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:509: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:509: error: redefinition of ‘template<class Stream, class T, class A> void Serialize_impl(Stream&, const std::vector<T, A>&, int, int, int)’
serialize.h:501: error: ‘template<class Stream, class T, class A> void Serialize_impl(Stream&, const std::vector<T, A>&, int, int, int)’ previously declared here
serialize.h: In function ‘void Serialize(Stream&, const std::vector<T, A>&, int, int)’:
serialize.h:519: error: ‘boost’ has not been declared
serialize.h:519: error: expected primary-expression before ‘>’ token
serialize.h:519: error: expected primary-expression before ‘)’ token
serialize.h: At global scope:
serialize.h:524: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:524: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:540: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:540: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h:540: error: redefinition of ‘template<class Stream, class T, class A> void Unserialize_impl(Stream&, std::vector<T, A>&, int, int, int)’
serialize.h:524: error: ‘template<class Stream, class T, class A> void Unserialize_impl(Stream&, std::vector<T, A>&, int, int, int)’ previously declared here
serialize.h: In function ‘void Unserialize(Stream&, std::vector<T, A>&, int, int)’:
serialize.h:560: error: ‘boost’ has not been declared
serialize.h:560: error: expected primary-expression before ‘>’ token
serialize.h:560: error: expected primary-expression before ‘)’ token
serialize.h: At global scope:
serialize.h:616: error: expected ‘,’ or ‘...’ before ‘::’ token
serialize.h:616: error: ISO C++ forbids declaration of ‘boost’ with no type
serialize.h: In function ‘unsigned int GetSerializeSize(int)’:
serialize.h:619: error: ‘boost’ is not a class or namespace
serialize.h:619: error: ‘item’ was not declared in this scope
serialize.h:619: error: ‘nType’ was not declared in this scope
serialize.h:619: error: ‘nVersion’ was not declared in this scope
serialize.h:620: error: ‘boost’ is not a class or namespace
serialize.h:621: error: ‘boost’ is not a class or namespace


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:25:01 PM
try yum install boost and try it again :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 15, 2013, 05:32:18 PM
Quote
=> transfer out funds by commandline transfer or copying the wallet.dat

can you pls describe a little bit more .. who to fint my address then?
Great question!

You mined a block? Congratulations!

Transfer by typing:
./bitcoind sendtoaddress <memorycoinaddress> <amount> [comment] [comment-to]
where memorycoinaddress is your desktop memorry coin wallet adress

or copy the wallet.dat over to your pc using ftp or email from cd ~ && cd .memorycoin and import it into the desktop client!

thx man for this info


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 05:34:22 PM
Quote
=> transfer out funds by commandline transfer or copying the wallet.dat

can you pls describe a little bit more .. who to fint my address then?
Great question!

You mined a block? Congratulations!

Transfer by typing:
./bitcoind sendtoaddress <memorycoinaddress> <amount> [comment] [comment-to]
where memorycoinaddress is your desktop memorry coin wallet adress

or copy the wallet.dat over to your pc using ftp or email from cd ~ && cd .memorycoin and import it into the desktop client!

thx man for this info

You can always donate to the dev's or trow some small btc my way!
Adress is in the sig!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: kaene on December 15, 2013, 05:51:12 PM
I compiled it under Centos by using make -f makefile.unix BOOST_LIB_SUFFIX=-mt  but when I start it I get:

EXCEPTION: 9key_error
CKey::CKey() : EC_KEY_new_by_curve_name failed
memorycoin in AppInit()



Any idea? I think it might be something related to the SSL library


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: kaene on December 15, 2013, 05:59:08 PM
I compiled it under Centos by using make -f makefile.unix BOOST_LIB_SUFFIX=-mt  but when I start it I get:

EXCEPTION: 9key_error
CKey::CKey() : EC_KEY_new_by_curve_name failed
memorycoin in AppInit()

I suggest you to use the latest Ubuntu and it works out of the box, no need to fiddle

Code:
{
    "blocks" : 59,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 0.00001525,
    "errors" : "",
    "generate" : true,
    "genproclimit" : -1,
    "hashespermin" : 0.92943275,
    "pooledtx" : 0,
    "testnet" : false
}


Thanks, if I could use Ubuntu I wouldn't ask :P (I have some servers with Centos and I can't change them to Ubuntu easily)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 15, 2013, 05:59:56 PM
@podohost: yes you'Re mining now


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 06:00:27 PM
I have something like this:

Does it mean I am mining?

I used winscp to manually creae .conf file inside of "memorycoin" folder.

yes you are mining!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 06:03:59 PM
I compiled it under Centos by using make -f makefile.unix BOOST_LIB_SUFFIX=-mt  but when I start it I get:

EXCEPTION: 9key_error
CKey::CKey() : EC_KEY_new_by_curve_name failed
memorycoin in AppInit()



Any idea? I think it might be something related to the SSL library

why the suffix? it should work with the packages out of the box
give: yum boost-devel  a try!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: deathmul on December 15, 2013, 06:10:45 PM
How to check how many coins I mined?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 15, 2013, 06:16:10 PM
How to check how many coins I mined?

{
    "version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 60,
    "timeoffset" : -1,
    "connections" : 16,
    "proxy" : "",
    "difficulty" : 0.00001140,
    "testnet" : false,
    "keypoololdest" : 1387129937,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}

there on balance


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: tyler27 on December 15, 2013, 06:31:05 PM
"version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 60,
    "timeoffset" : 18,
    "connections" : 14,
    "proxy" : "",
    "difficulty" : 0.00001140,
    "testnet" : false,
    "keypoololdest" : 1387131193,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 60,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 0.00001140,



Why do I not see my mining speed? Any suggestions?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 06:35:44 PM

Why do I not see my mining speed? Any suggestions?

make your window larger :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: deodecagone on December 15, 2013, 06:39:04 PM
useful howto. Don't make it too easy :D

Next step is a small sh that creates the droplet through the api, scp the dl/compiler sh :D
But note that you will get questionned about how to ssh still

Depsite that I don't see the interest in cloud mining now as :

"
Block target: 6 minutes
target Block reward: 280 MMC, 5% reduction every 1680 blocks
"

Any single block mined today won't breakeven to my opinion







Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: tyler27 on December 15, 2013, 06:47:43 PM

Why do I not see my mining speed? Any suggestions?

make your window larger :)

Thank you, I actually inverted the watch command to: watch './bitcoind getmininginfo && ./bitcoind getinfo && ./bitcoind listtransactions'


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 06:49:55 PM

Why do I not see my mining speed? Any suggestions?

make your window larger :)

Thank you, I actually inverted the watch command to: watch './bitcoind getmininginfo && ./bitcoind getinfo && ./bitcoind listtransactions'

Good one! love the command line.
Next tip is to use screen for ssh settings!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: deathmul on December 15, 2013, 06:57:56 PM
I mine 50 minutes on 4 machnines and my balance is still 0 on each machine.
Did you mined some Memorycoins ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 07:08:54 PM
I mine 50 minutes on 4 machnines and my balance is still 0 on each machine.
Did you mined some Memorycoins ?

yes i found one block. There are quite a few people mining and the difficulty is very high.
Either take a chance and mine longer or wait 2 days when the return increases :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: Trokhon on December 15, 2013, 07:25:40 PM
Where can we trade this coins?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 07:34:39 PM
Where can we trade this coins?

no exchanges yet!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 15, 2013, 07:37:04 PM
a pool setup would be quite nice then till tuesday when official mining starts -- perhaps the ypool guys!?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: rrsn2006 on December 15, 2013, 07:46:15 PM
I can only see this


"blocks" : 76,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00000062,
"errors" : "",
"generate" : true,
"genproclimit" : -1,
"hashespermin" : 0.95655640,
"pooledtx" : 0,
"testnet" : false


how can I see the balance?

Also, I used setgenerate true in console and getmininginfo.
If I have to transfer coins from console, how to do it? Help appreciated. :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 07:58:41 PM
I can only see this


"blocks" : 76,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00000062,
"errors" : "",
"generate" : true,
"genproclimit" : -1,
"hashespermin" : 0.95655640,
"pooledtx" : 0,
"testnet" : false


how can I see the balance?

Also, I used setgenerate true in console and getmininginfo.
If I have to transfer coins from console, how to do it? Help appreciated. :)

type "getinfo" balance is under balance
see first post for console transfer


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: carajillu on December 15, 2013, 08:01:11 PM
10% premined????? scam


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: ZetaOS on December 15, 2013, 08:03:38 PM
Can we do Zetacoin, Quarks and Goldcoin to?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 08:06:36 PM
Can we do Zetacoin, Quarks and Goldcoin to?

in the cloud? yeah sure!
easy as pie! But goldcoin is scrypt, not worth it on a standard server
Unless you use amazon gpu instances, and you have to get good spot prices to make money, but that take some time to explain.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: HPWolf on December 15, 2013, 09:36:25 PM
Here it is :
Thanks for your help  :)

thats strange, where did you put the program?
Hit me up on my private msg and ill help you out!


I'm having the same problem any ideas ?

NVM i think i got it :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: chip99 on December 15, 2013, 09:49:38 PM
mind to share the solution ? im having the same problem ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 15, 2013, 09:58:09 PM
About how long is it taking this setup to mine a block?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 10:07:49 PM
About how long is it taking this setup to mine a block?

depends on network mining speed. Every block you have a yournetworkspeed/totalnetworkspeed chance of finding a block. You can go for years finding none, or find two in a row. Both are very unlikely though. But every block you have the same chance. Statistics :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 15, 2013, 10:18:16 PM
Unfortunately neither promo code worked for me. However, there is a solution!

For $10 credit instantly use the code: thechangelog10

Signup with an account using my referral link so I get a small kickback for your free $10 ;)

https://www.digitalocean.com/?refcode=d89b87d1ce1e (https://www.digitalocean.com/?refcode=d89b87d1ce1e)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 15, 2013, 11:18:57 PM
does it automatically use all available cores ? perhaps 8 ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 15, 2013, 11:24:17 PM
does it automatically use all available cores ? perhaps 8 ?

It should utilize whatever you choose to sign up for. I purchased the 8-core plan and, although I have no 2-core plan to compare it to, I think it is using the full power. Maybe if someone knew of a way to check?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 15, 2013, 11:25:24 PM
think you can type   top   to see if all cores are used ? .. dont know ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 15, 2013, 11:25:59 PM
does it automatically use all available cores ? perhaps 8 ?

yeah the gen=1 setting is the same as the setgeneratetrue -1 setting for windows.
It takes all the cores it can get. The daemon takes only cores in two though, so 5 core servers have no additional advantage over 4 cores!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 15, 2013, 11:31:59 PM
normal that 8core only gets 0.8 hashes ?  mean 8 core cpu of digitalocean

edit::

ok read that 2core gets 0.14 hashes so it seems legit ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: FreePls on December 15, 2013, 11:42:32 PM
i have no experience in that cloud hosting thing..

but is cloud VPS hosting the same as cloud cluster from digitalocean?

if yes then this company offers AES-NI ...because they  use intel xeon cores or better

http://www.hostingzoom.com/cloud-vps.php

for $30 / month for  2core



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 15, 2013, 11:51:47 PM
would be interesting

i would pay 30/month if it's worth ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: FreePls on December 15, 2013, 11:56:17 PM
would be interesting

i would pay 30/month if it's worth ^^

yea, with my i7 2600K  cpu i get 2,8 hashes

depends on how the coin will rise but i think its woarth for sure :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 15, 2013, 11:57:59 PM
so how many hashes will i get with this dual core xeon ? ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: FreePls on December 16, 2013, 12:02:55 AM
uh i am not sure :)

but we still  have  38 hours until the memorycoin mining starts.. thats time enough to find a good cloudhost for it :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 16, 2013, 12:04:49 AM
what do mean with "we still have 38 hours untill minin starts" ? o0  sorry dont get it  we're already mining ?! ^^


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: FreePls on December 16, 2013, 12:43:53 AM
nah the first 48 hours is with reduced rewards

if you find a block yet you get 2 MMC

in 37 hours you will get the full reward of 280 MMC for a block


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: HPWolf on December 16, 2013, 01:03:28 AM
mind to share the solution ? im having the same problem ?

Could not get it to work with 1 core needed to use the 2 core as well as when running

apt-get update
apt-get install -y git make g++ build-essential dos2unix
apt-get install -y libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev  libboost-all-dev
git clone https://github.com/memorycoin/memorycoin && cd memorycoin/src && make -f makefile.unix

wasent running for me so i pasted each line seperatly



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 02:23:16 AM
Hi.

I started mining this pretty much as soon as it was posted following the instructions in an Windows environment running putty to access the server. The session closed and I had to close putty. I know it will continue to run in the background regardless of the interface connection though i am not sure how to get back to the screen to see the progress and status.

Can you please help me out when possible :)

Cheers



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: HPWolf on December 16, 2013, 02:43:09 AM
Hi.

I started mining this pretty much as soon as it was posted following the instructions in an Windows environment running putty to access the server. The session closed and I had to close putty. I know it will continue to run in the background regardless of the interface connection though i am not sure how to get back to the screen to see the progress and status.

Can you please help me out when possible :)

Cheers



I would assume you can just run

cd memorycoin/src && ./bitcoind getinfo && ./bitcoind getmininginfo


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 02:48:04 AM
Hi.

I started mining this pretty much as soon as it was posted following the instructions in an Windows environment running putty to access the server. The session closed and I had to close putty. I know it will continue to run in the background regardless of the interface connection though i am not sure how to get back to the screen to see the progress and status.

Can you please help me out when possible :)

Cheers



I would assume you can just run

cd memorycoin/src && ./bitcoind getinfo && ./bitcoind getmininginfo

I'd say

Code:
watch './bitcoind getinfo && ./bitcoind getmininginfo'


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 16, 2013, 03:10:36 AM
To answer...

This: cd memorycoin/src && ./bitcoind getinfo && ./bitcoind getmininginfo -- worked

This: watch './bitcoind getinfo && ./bitcoind getmininginfo' -- did not work


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 16, 2013, 03:17:09 AM
Has anyone found better services than DigitalOcean? Better processor for the money?

Currently my stats:

8 CPU Plan
$0.238/hour
0.70990235 hashes/min

0 Blocks found (about 4 hours mining)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 03:20:56 AM
To answer...

This: cd memorycoin/src && ./bitcoind getinfo && ./bitcoind getmininginfo -- worked

This: watch './bitcoind getinfo && ./bitcoind getmininginfo' -- did not work

I was assuming your were already in memorycoin/src

if you are in home folder, for realtime stats, is

Code:
cd memorycoin/src && watch './bitcoind getinfo && ./bitcoind getmininginfo'

If you rebooted your droplet

Code:
cd memorycoin/src && ./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 03:28:39 AM
Hi.

I started mining this pretty much as soon as it was posted following the instructions in an Windows environment running putty to access the server. The session closed and I had to close putty. I know it will continue to run in the background regardless of the interface connection though i am not sure how to get back to the screen to see the progress and status.

Can you please help me out when possible :)

Cheers



I would assume you can just run

cd memorycoin/src && ./bitcoind getinfo && ./bitcoind getmininginfo

I'd say

Code:
watch './bitcoind getinfo && ./bitcoind getmininginfo'

They both worked :)

Cheers for your help.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 03:30:05 AM
These are my stats so far:

is it correct

 "version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 141,
    "timeoffset" : 0,
    "connections" : 44,
    "proxy" : "",
    "difficulty" : 0.00002063,
    "testnet" : false,
    "keypoololdest" : 1387126859,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 141,
    "currentblocksize" : 2147,
    "currentblocktx" : 3,
    "difficulty" : 0.00002063,
    "errors" : "",


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 03:34:17 AM
These are my stats so far:

is it correct

 "version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 141,
    "timeoffset" : 0,
    "connections" : 44,
    "proxy" : "",
    "difficulty" : 0.00002063,
    "testnet" : false,
    "keypoololdest" : 1387126859,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 141,
    "currentblocksize" : 2147,
    "currentblocktx" : 3,
    "difficulty" : 0.00002063,
    "errors" : "",


expand your window to see "hashespermin" too


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 03:35:51 AM
lol...cheers for that

  "hashespermin" : 0.19719587,


Thats not very good is it?

and also with the amount of blocks it lists why is the balance still on zero?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: HPWolf on December 16, 2013, 03:38:09 AM
Mine kinda looks the same as yours

{
    "version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 141,
    "timeoffset" : -1,
    "connections" : 17,
    "proxy" : "",
    "difficulty" : 0.00002063,
    "testnet" : false,
    "keypoololdest" : 1387150695,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 141,
    "currentblocksize" : 2147,
    "currentblocktx" : 3,
    "difficulty" : 0.00002063,
    "errors" : "",
    "genproclimit" : -1,
    "hashespermin" : 0.15386549,
    "pooledtx" : 3,
    "testnet" : false


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 03:39:08 AM
yeap, it's not so much, if difficult doesn't drop it'll worth nothing to you (you might also be very lucky, who knows ;) )
number of block says total blocks found, not those found by you


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 03:52:09 AM
How can i increase this. is there a better way to mine for this. I just pretty much followed the instructions on the first page though it doesnt seem very efficient.

Can you please recommend a different setup?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 03:56:22 AM
only options:
-more droplet
-more powerful droplet


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: Digicoiner on December 16, 2013, 04:18:54 AM
On my ubuntu droplet I ran: 'grep aes /proc/cpuinfo' and it returned nothing.  Can I get a droplet with the AES feature?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 04:26:28 AM
Upgraded the droplet but only getting
    "hashespermin" : 0.31899029,

How did someone get 2.8 with an i7?

seems alot more than this droplet i have created


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 16, 2013, 05:03:35 AM
I doubt the numbers that user posted were real. Though I have no proof, I am getting only 0.7+ with an 8 core droplet. I am thinking about upgrading though if this actually proves to be useful.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: wakasaki808 on December 16, 2013, 05:07:13 AM
Upgraded the droplet but only getting
    "hashespermin" : 0.31899029,

How did someone get 2.8 with an i7?

seems alot more than this droplet i have created

its real. I got 2.5-2.6 ish hashespermin on my i7-3610QM Laptop(MSI GE60).


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 05:11:24 AM
Upgraded the droplet but only getting
    "hashespermin" : 0.31899029,

How did someone get 2.8 with an i7?

seems alot more than this droplet i have created

its real. I got 2.5-2.6 ish hashespermin on my i7-3610QM Laptop(MSI GE60).

Can this be done in a windows environment?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 16, 2013, 05:11:46 AM
Upgraded the droplet but only getting
    "hashespermin" : 0.31899029,

How did someone get 2.8 with an i7?

seems alot more than this droplet i have created

its real. I got 2.5-2.6 ish hashespermin on my i7-3610QM Laptop(MSI GE60).

Will be trying this out very shortly on my i7 laptop as well - a Mac in fact. If it performs better than my VPS I'll be surprised! Grats on the high hash/min though!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: zvs on December 16, 2013, 05:15:54 AM
Has anyone found better services than DigitalOcean? Better processor for the money?

Currently my stats:

8 CPU Plan
$0.238/hour
0.70990235 hashes/min

0 Blocks found (about 4 hours mining)

well, you could buy some xeon 1230 or 1240 from online.net


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: wakasaki808 on December 16, 2013, 05:16:12 AM
Upgraded the droplet but only getting
    "hashespermin" : 0.31899029,

How did someone get 2.8 with an i7?

seems alot more than this droplet i have created

its real. I got 2.5-2.6 ish hashespermin on my i7-3610QM Laptop(MSI GE60).

Can this be done in a windows environment?

MSI is a Windows Laptop...
http://www.msi.com/product/nb/GE60-0NC.html

pretty sure newer generations of the i7 give better hashespermin. I gave up mining for now...(should have never sold my PTS...) I mined all day for 0 MMC (2pm UTC to like 3 hours ago) :/ ...


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: wulongrong on December 16, 2013, 05:21:59 AM
how long can get 1 block   ,speed 5.4h?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: canth on December 16, 2013, 05:29:40 AM
1.10565246 HPM on my i7 2620M. It's faster than my Lynnfield i7 w/o the AES instruction set, but only by about 30%. Going to be very interesting to see how difficulty adjustments will  have an effect as rewards increase. Right now the ability to mine this coin with anything besides a full botnet is really dubious.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: eddilicious on December 16, 2013, 06:20:40 AM
Thanks a lot for the guide.
I have a problem, I have started running for 30 minutes or so. still getting 0 connections .
{
    "version" : 85200,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 0,
    "timeoffset" : 0,
    "connections" : 0,
    "proxy" : "",
    "difficulty" : 0.00000000,
    "testnet" : false,
    "keypoololdest" : 1387172213,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 0,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 0.00000000,
    "errors" : "",
    "genproclimit" : -1,
    "hashespermin" : "No information yet. Wait at least 4 minutes after starting mining for estimate.",
    "pooledtx" : 0,
    "testnet" : false
}

[edit]: solved. rerun the daemon line and it shows the hashing and connection


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: yantis on December 16, 2013, 06:40:34 AM
Keep in mind Digital Ocean limits you to 5 instances for Crypto mining. They actually DO NOT want you to Crypto mine on their servers.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: eddilicious on December 16, 2013, 06:43:35 AM
Keep in mind Digital Ocean limits you to 5 instances for Crypto mining. They actually DO NOT want you to Crypto mine on their servers.
b a s t a r d s !!!! they just took my $20!!!!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: nomullet on December 16, 2013, 06:50:51 AM
Just for fun tried a 2 cpu droplet and was getting .2hpm- and 3.4 on my 8350. Waste of time if you ask me.. personally I like that the coin doesn't cloud mine well.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: deathmul on December 16, 2013, 07:39:37 AM
They limit me to 2 droplets only ???


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: padre999 on December 16, 2013, 08:46:31 AM
Keep in mind Digital Ocean limits you to 5 instances for Crypto mining. They actually DO NOT want you to Crypto mine on their servers.

You are lucky with 5 droplets, I was explicitly  limited to 1 droplet by DO support. Due to mining that is.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: HPWolf on December 16, 2013, 09:01:12 AM
im still trying to see the value with DO as its $20 a month to run the miner and you only get 0.15 And has been hashing the whole day and have got nothing,

please if somebody can tell me what im missing


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: miffman on December 16, 2013, 09:13:36 AM
Can someone help me? I keep getting a certificate cipher mismatch when I try to log in  ??? with chrome and firefox


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 16, 2013, 10:02:34 AM
Can someone help me? I keep getting a certificate cipher mismatch when I try to log in  ??? with chrome and firefox

can you accept? You mean the ssh dialog where you have to accept the keys?
Try putty or another ssh client for connecting


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: evoked22 on December 16, 2013, 10:15:45 AM
Can someone help me set this up in a windows environment. Cheers


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 16, 2013, 10:29:22 AM
someone found a new aes-ni supported cloudhoster ?  or dit someone tested the already posted ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: TheMightyX on December 16, 2013, 10:40:53 AM
We need a pool.
Badly.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: DJCorpus on December 16, 2013, 10:56:34 AM
Can someone help me set this up in a windows environment. Cheers

Just run the GUI -> Preferences -> Mine options.
More info at http://memorycoin.montaxx.me/mining.php

BTW i3770 -> ~3hps


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: Tamis on December 16, 2013, 10:58:15 AM
{
    "blocks" : 214,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 0.00000287,
    "errors" : "",
    "genproclimit" : -1,
    "hashespermin" : 6.14610521,
    "pooledtx" : 0,
    "testnet" : false
}


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: miffman on December 16, 2013, 11:03:59 AM
Can someone help me? I keep getting a certificate cipher mismatch when I try to log in  ??? with chrome and firefox

can you accept? You mean the ssh dialog where you have to accept the keys?
Try putty or another ssh client for connecting

I mean I can't login into DigitalOcean, with my email. After I signed up


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 16, 2013, 11:24:08 AM
any chance to find a AE-IN compatible cloud hoster?
Any progress on a pool setup!?

with 8 core i get 0.8 hpm only !


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: porkusCOLL on December 16, 2013, 12:27:15 PM
i have no experience in that cloud hosting thing..

but is cloud VPS hosting the same as cloud cluster from digitalocean?

if yes then this company offers AES-NI ...because they  use intel xeon cores or better

http://www.hostingzoom.com/cloud-vps.php

for $30 / month for  2core



posted a few sites earlier ;)
but haven't tested it


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 16, 2013, 04:07:05 PM
i have no experience in that cloud hosting thing..

but is cloud VPS hosting the same as cloud cluster from digitalocean?

if yes then this company offers AES-NI ...because they  use intel xeon cores or better

http://www.hostingzoom.com/cloud-vps.php

for $30 / month for  2core



posted a few sites earlier ;)
but haven't tested it

the guide works on any cloud provider, the test for AES-ni is also provided in the first post.
Im in the process of checking Azure!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: Digicoiner on December 16, 2013, 05:37:43 PM
Does anyone know if AWS offer AES-NI?  


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 16, 2013, 08:08:52 PM
Does anyone know if AWS offer AES-NI?  

any news on this!?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 16, 2013, 08:27:20 PM
http://serverfault.com/questions/360197/does-ec2-support-aes-ni-instructions-if-so-is-there-a-particular-instance-type

Some amazon services support it.
depends on the underlying hardware i guess


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 16, 2013, 09:41:32 PM
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


if on  aws c1.large check AES is red? YES / NO ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: agran on December 16, 2013, 11:18:09 PM
I ordered cloud hosting http://infoboxcloud.ru/ (russian). 32 core x 2 GHz (Ubuntu) for 7.5$ a day. This gave me 5 hashes per minute.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: atlocc on December 16, 2013, 11:29:17 PM
I ordered cloud hosting http://infoboxcloud.ru/. 32 core x 2 GHz (Ubuntu) for 7.5$ a day. This gave me 5 hashes per minute.

there's no english site  ???


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 17, 2013, 12:12:00 AM
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


if on  aws c1.large check AES is red? YES / NO ?

looks something like this if the server has it:
flags: ***** aes *****

where *** is random other stuff


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 17, 2013, 06:46:12 PM
yes c1.xlarge and a all bigger machines supporting AES-IN on aws but still get no connection as for the moment


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 17, 2013, 09:55:55 PM
yes c1.xlarge and a all bigger machines supporting AES-IN on aws but still get no connection as for the moment

Any update on AWS collison rate?  :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: iluveunc on December 17, 2013, 11:09:32 PM
Does anyone know if we need to run a new script for mining after the fork? Do we need to do the whole installation over again with different code?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: coininaction on December 17, 2013, 11:11:31 PM
yes c1.xlarge and a all bigger machines supporting AES-IN on aws but still get no connection as for the moment

Any update on AWS collison rate?  :)

AWS // c1.xlarge 1

Code:
"hashespermin" : 1.83035646,

DO // 8 CPU

Code:
"hashespermin" : 1.39060569,


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: eddilicious on December 18, 2013, 02:05:00 AM
guys, i read the announcement that we need to update the client before block 750, but when I try to run the guide again, it say everything is the latest version, but the next line the makefile did not go through b/c there is memorycoin directory exists. what do I do? my first time doing console mining, any help will be appreciated.


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: badbonez on December 18, 2013, 08:24:18 PM
Having an issue with the final command:


Code:
root@MMC2:~# cd memorycoin/src && ./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

[b]-bash: ./bitcoind: No such file or directory[/b]


Did ls and see this:

Code:
root@MMC2:~/memorycoin/src# ls
addrman.cpp      compat.h      leveldb.h             obj                    sync.h
addrman.h        crypter.cpp   limitedmap.h          obj-test               test
alert.cpp        crypter.h     main.cpp              protocol.cpp           threadsafety.h
alert.h          db.cpp        main.h                protocol.h             txdb.cpp
allocators.h     db.h          makefile.linux-mingw  qt                     txdb.h
base58.h         hash.cpp      makefile.mingw        rpcblockchain.cpp      ui_interface.h
bignum.h         hash.h        makefile.osx          rpcdump.cpp            uint256.h
bitcoinrpc.cpp   init.cpp      makefile.unix         rpcmining.cpp          util.cpp
bitcoinrpc.h     init.h        momentum.cpp          rpcnet.cpp             util.h
bloom.cpp        json          momentum.h            rpcrawtransaction.cpp  version.cpp
bloom.h          key.cpp       mruset.h              rpcwallet.cpp          version.h
checkpoints.cpp  key.h         netbase.cpp           script.cpp             wallet.cpp
checkpoints.h    keystore.cpp  netbase.h             script.h               walletdb.cpp
checkqueue.h     keystore.h    net.cpp               semiOrderedMap.h       walletdb.h
clientversion.h  leveldb       net.h                 serialize.h            wallet.h
CMakeLists.txt   leveldb.cpp   noui.cpp              sync.cpp

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: noname_ on December 19, 2013, 12:32:29 PM
Guys,

I mine on linux machine how can I check from terminal how much do I mine ?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 19, 2013, 12:37:54 PM
Having an issue with the final command:

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!

run the make command again, there is no binary in the directory:

"make -f makefile.unix"

Then run

./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 19, 2013, 12:39:37 PM
Guys,

I mine on linux machine how can I check from terminal how much do I mine ?


./bitcoind getinfo
./bitcoind getmininginfo


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 19, 2013, 12:41:00 PM
guys, i read the announcement that we need to update the client before block 750, but when I try to run the guide again, it say everything is the latest version, but the next line the makefile did not go through b/c there is memorycoin directory exists. what do I do? my first time doing console mining, any help will be appreciated.

if you have mined coins, transfer them, then:

reboot server, login again

cd ~
rm -rf memorycoin

and run the git command from the op
no need to setup the config again

drop me some coins if i've helped you  ;)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: noname_ on December 19, 2013, 01:04:39 PM
thanks!

Guys,

I mine on linux machine how can I check from terminal how much do I mine ?


./bitcoind getinfo
./bitcoind getmininginfo



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: badbonez on December 19, 2013, 03:55:34 PM
Having an issue with the final command:

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!

run the make command again, there is no binary in the directory:

"make -f makefile.unix"

Then run

./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

I appreciate the help but when I typed that command I get:
Code:
root@MMC2:~# make -f makefile.unix
make: makefile.unix: No such file or directory
make: *** No rule to make target `makefile.unix'.  Stop.
root@MMC2:~#

I am using terminal on my macbook, if that matters.

Thanks!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 19, 2013, 11:41:30 PM
Having an issue with the final command:

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!

run the make command again, there is no binary in the directory:

"make -f makefile.unix"

Then run

./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

I appreciate the help but when I typed that command I get:
Code:
root@MMC2:~# make -f makefile.unix
make: makefile.unix: No such file or directory
make: *** No rule to make target `makefile.unix'.  Stop.
root@MMC2:~#

I am using terminal on my macbook, if that matters.

Thanks!


you are in your root (filesystem)

so do this:

cd ~
cd memorycoin/src && make -f makefile.unix
./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: badbonez on December 20, 2013, 02:55:59 AM
Having an issue with the final command:

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!

run the make command again, there is no binary in the directory:

"make -f makefile.unix"

Then run

./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

I appreciate the help but when I typed that command I get:
Code:
root@MMC2:~# make -f makefile.unix
make: makefile.unix: No such file or directory
make: *** No rule to make target `makefile.unix'.  Stop.
root@MMC2:~#

I am using terminal on my macbook, if that matters.

Thanks!


you are in your root (filesystem)

so do this:

cd ~
cd memorycoin/src && make -f makefile.unix
./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

OK, I did that and now I get this error:

Code:
root@MMC2:~# cd ~
root@MMC2:~# cd memorycoin/src && make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/memorycoin/src -I/root/memorycoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/memorycoin/src/leveldb/include -I/root/memorycoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/main.d -o obj/main.o main.cpp
main.cpp: In member function ‘bool CBlock::ConnectBlock(CValidationState&, CBlockIndex*, CCoinsViewCache&, bool)’:
main.cpp:1899:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <vtx[0].vout.size(); j++){
                                       ^
main.cpp:1918:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (awardFound != grantAwards.size()){
                                     ^
main.cpp: In function ‘void processNextBlockIntoGrantDatabase()’:
main.cpp:5369:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i <block.vtx.size(); i++){
                                    ^
main.cpp:5375:45: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <block.vtx[i].vout.size(); j++){
                                             ^
main.cpp:5394:44: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <block.vtx[i].vin.size(); j++){
                                            ^
main.cpp: In function ‘std::string electOrEliminate(int64, int)’:
main.cpp:5707:80: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if(topOfThePollAmount>=droopQuota || requiredCandidates>=preferenceCount.size()){
                                                                                ^

virtual memory exhausted: Cannot allocate memory
make: *** [obj/main.o] Error 1

I appreciate your help and will donate MMC for a successful install!



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 20, 2013, 08:55:50 AM
Having an issue with the final command:

Why doesn't the command work?  I just copied and pasted from the OP.

Cheers!

run the make command again, there is no binary in the directory:

"make -f makefile.unix"

Then run

./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

I appreciate the help but when I typed that command I get:
Code:
root@MMC2:~# make -f makefile.unix
make: makefile.unix: No such file or directory
make: *** No rule to make target `makefile.unix'.  Stop.
root@MMC2:~#

I am using terminal on my macbook, if that matters.

Thanks!


you are in your root (filesystem)

so do this:

cd ~
cd memorycoin/src && make -f makefile.unix
./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'

OK, I did that and now I get this error:

Code:
root@MMC2:~# cd ~
root@MMC2:~# cd memorycoin/src && make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/memorycoin/src -I/root/memorycoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/memorycoin/src/leveldb/include -I/root/memorycoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/main.d -o obj/main.o main.cpp
main.cpp: In member function ‘bool CBlock::ConnectBlock(CValidationState&, CBlockIndex*, CCoinsViewCache&, bool)’:
main.cpp:1899:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <vtx[0].vout.size(); j++){
                                       ^
main.cpp:1918:37: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if (awardFound != grantAwards.size()){
                                     ^
main.cpp: In function ‘void processNextBlockIntoGrantDatabase()’:
main.cpp:5369:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i <block.vtx.size(); i++){
                                    ^
main.cpp:5375:45: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <block.vtx[i].vout.size(); j++){
                                             ^
main.cpp:5394:44: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int j = 0; j <block.vtx[i].vin.size(); j++){
                                            ^
main.cpp: In function ‘std::string electOrEliminate(int64, int)’:
main.cpp:5707:80: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if(topOfThePollAmount>=droopQuota || requiredCandidates>=preferenceCount.size()){
                                                                                ^

virtual memory exhausted: Cannot allocate memory
make: *** [obj/main.o] Error 1

I appreciate your help and will donate MMC for a successful install!



You are on a 512 mb machine, the miner needs at least 1 gig of ram to work. As the OS needs ram too, its recommended to mine on a 2 gig ram machine. So the 2 cpu 2 gig ram option is the optimal choice!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: ruxun on December 20, 2013, 03:20:33 PM
i always have errors according to your guide.

thanks anyway



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: badbonez on December 21, 2013, 12:58:00 AM
Hi All,
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


I did that in the HP Cloud server I am using (90 days free trial) and I get:

Code:
root@mmc2:/home/ubuntu/memorycoin/src# grep aes /proc/cpuinfo
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm

What does it mean?  I see 'aes' highlighted in red on my terminal.

Cheers


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: belltown on December 21, 2013, 01:18:02 AM
Hey thejepper,

You need to remove watch command from your guide. See here https://bitsharestalk.org/index.php?topic=1449.msg16251#msg16251


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: thejepper on December 21, 2013, 03:22:13 AM
Hi All,
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


I did that in the HP Cloud server I am using (90 days free trial) and I get:

Code:
root@mmc2:/home/ubuntu/memorycoin/src# grep aes /proc/cpuinfo
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm

What does it mean?  I see 'aes' highlighted in red on my terminal.

Cheers


that means that the virtual server has aes acceleration, this means much much faster mining!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: thejepper on December 21, 2013, 03:25:00 AM
Hey thejepper,

You need to remove watch command from your guide. See here https://bitsharestalk.org/index.php?topic=1449.msg16251#msg16251

That's interesting! I have not experienced any crashes myself though. It is possible there is a memory related bug in the getmininginfo code.
Will add a note to the OP as a warning, thanks!


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: badbonez on December 21, 2013, 03:51:19 AM
Hi All,
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


I did that in the HP Cloud server I am using (90 days free trial) and I get:

Code:
root@mmc2:/home/ubuntu/memorycoin/src# grep aes /proc/cpuinfo
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm

What does it mean?  I see 'aes' highlighted in red on my terminal.

Cheers


that means that the virtual server has aes acceleration, this means much much faster mining!

If I can get it to work...  ::)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: thejepper on December 22, 2013, 11:13:17 PM
Hi All,
We need to find cloud hosting companies that support AES-ni for a large increase in hashing power:
run this "grep aes /proc/cpuinfo"  in your virtual host to see if your cloud host supports hardware AES!


I did that in the HP Cloud server I am using (90 days free trial) and I get:

Code:
root@mmc2:/home/ubuntu/memorycoin/src# grep aes /proc/cpuinfo
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 x2apic popcnt aes avx hypervisor lahf_lm

What does it mean?  I see 'aes' highlighted in red on my terminal.

Cheers


that means that the virtual server has aes acceleration, this means much much faster mining!

If I can get it to work...  ::)

So what errors are you getting, maybe i can help :)


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: badbonez on December 23, 2013, 12:29:16 AM

So what errors are you getting, maybe i can help :)

I appreciate that, but I have it working now.  My problem was my linux inexperience.  Even though the HP cloud claims AES, I'm only getting .9 hpm from a 8core instance.

Joyent.com has a free trial offer (2 months, $65/month) and they support AES.  I'm getting ~2.1 hpm on an 8core instance.



Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: glorycoin on December 24, 2013, 08:32:13 AM
on aws but still get no connection as for the moment

Amazon AWS 8 cpu EC2 Unbuntu instance running daemon, but not maintaining connections to nodes.  Watch indicates 2 connections exist after starting daemon, but after approximately one minute 0 connections are indicated.

Seeded .conf with list of specific nodes outlined in first post of thread.

Any one having trouble running on AWS?


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Get your miners up in the cloud!
Post by: thejepper on December 28, 2013, 02:21:00 PM
on aws but still get no connection as for the moment

Amazon AWS 8 cpu EC2 Unbuntu instance running daemon, but not maintaining connections to nodes.  Watch indicates 2 connections exist after starting daemon, but after approximately one minute 0 connections are indicated.

Seeded .conf with list of specific nodes outlined in first post of thread.

Any one having trouble running on AWS?

give it some time, or ask in the memory coin thread for other nodes to bootstrap from


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: robonix on January 01, 2014, 04:31:39 PM
I seem to have installed everything properly on a digital ocean drop (I think because I didnt get any errors) using ubuntu and when I start the daemon:
Code:
cd memorycoin/src && ./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'
I get this error:
error: couldn't connect to server
but the daemon is clearly running (I think because I see the time refresh every 2 seconds) what could be going on here?
thanks to everybody in advance


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: robonix on January 01, 2014, 08:10:33 PM
I seem to have installed everything properly on a digital ocean drop (I think because I didnt get any errors) using ubuntu and when I start the daemon:
Code:
cd memorycoin/src && ./bitcoind --daemon && watch './bitcoind getinfo && ./bitcoind getmininginfo'
I get this error:
error: couldn't connect to server
but the daemon is clearly running (I think because I see the time refresh every 2 seconds) what could be going on here?
thanks to everybody in advance
This is what i'm seeing:
http://zacoal.co/digitalocean-drop-memorycoin.jpg


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: Moody4L on February 07, 2014, 04:29:49 PM
try again with this for Ubuntu

sudo apt-get update
sudo apt-get install -y git make g++ build-essential libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev dos2unix libboost-all-dev autoconf libcurl4-openssl-dev
git clone https://github.com/glitchman/mmcminer
cd mmcminer
./autogen.sh
CFLAGS="-O3 -march=native -mtune=native" CXXFLAGS="-O3 -march=native -mtune=native" ./configure
./configure CFLAGS="-O3"
make
./minerd --url http://work.mmcpool.com --user 888888OWNADRESS8888888 --threads 16


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: pwf on March 02, 2014, 08:19:19 AM
I have been mining for close to 12 hours on a 2 GB / 2 CPU setup at DO.

I still see a zero balance... ! .. am I doing something wrong ?


Every 2.0s: ./memorycoind getinfo && ./memorycoind getmininginfo                                                                     Sun Mar  2 08:15:12 2014

Code:
{
    "version" : 138300,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 0.00000000,
    "blocks" : 18569,
    "timeoffset" : -1,
    "connections" : 26,
    "proxy" : "",
    "difficulty" : 0.00006767,
    "testnet" : false,
    "keypoololdest" : 1393701509,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""
}
{
    "blocks" : 18569,
    "currentblocksize" : 10306,
    "currentblocktx" : 9,
    "difficulty" : 0.00006767,
    "errors" : "",
    "genproclimit" : -1,
    "hashespermin" : 0.25981280,
    "pooledtx" : 9,
    "testnet" : false
}


Title: Re: Cloud Mining Guide - MemoryCoin 2.0 (MMC) - Miners up in the cloud! [UPDATE!!!]
Post by: pesanu on March 14, 2014, 07:21:59 PM
well, i ran client about 2 hours ago, got "blocks" : 21427 and  
this
    "hashespermin" : 0.00000000,
about 30 min.

Something i doing wrong?