hidelyn
Newbie
Offline
Activity: 2
Merit: 0
|
 |
January 03, 2018, 12:13:01 AM |
|
I'm sorry. I can not speak English very much.I’m Japanese. Help me... My VPS OS --> Ubuntu 16.04 An error occurred as follows. ----- cd ./monacoCoin-cli stop tar zcvf save.tar.gz .monacoCoinCore/ rm -fr sentinel wget https://github.com/monacocoin-net/monoeci-core/releases/download/0.12.2/monoeciCore-0.12.2-linux64-cli.Ubuntu16.04.tar.gz tar xvf monoeciCore-0.12.2-linux64-cli.Ubuntu16.04.tar.gz ./monoecid ./monoecid: error while loading shared libraries: libzmq.so.5: cannot open shared object file: No such file or directory ------- Because I deleted sentinel with "rm - fr sentinel" command, I can not go back to monacoCoin.(T_T) MasterNode Status → WATCHDOG_EXPIRED
|
|
|
|
miniliano
Newbie
Offline
Activity: 23
Merit: 0
|
 |
January 03, 2018, 12:32:45 AM |
|
i was following old tutorial, i buy terminal and now there a new tutorial and it doesnt need anymore? and now need to buy Bitvise? im getting crazy about plz asnwer me
|
|
|
|
HurstOlds
Newbie
Offline
Activity: 10
Merit: 0
|
 |
January 03, 2018, 01:32:58 AM |
|
Hello,
I'm trying to set up a new Masternode. Because it's brand new, I don't have the old files (no MonacoCoinCore, etc).
I downloaded the monoeciCore-0.12.2-linux64-cli.Ubuntu14.04.tar.gz package, unpacked it then ran
this command: ./monoecid
The terminal just hangs. From my understanding, it's supposed to be creating the core files and wallet on my VPS? How long should this take? I'm kind of stuck at this point, because I can't run anything with the Core files on the VPS.
|
|
|
|
|
HurstOlds
Newbie
Offline
Activity: 10
Merit: 0
|
 |
January 03, 2018, 02:09:35 AM |
|
Hello,
I'm trying to set up a new Masternode. Because it's brand new, I don't have the old files (no MonacoCoinCore, etc).
I downloaded the monoeciCore-0.12.2-linux64-cli.Ubuntu14.04.tar.gz package, unpacked it then ran
this command: ./monoecid
The terminal just hangs. From my understanding, it's supposed to be creating the core files and wallet on my VPS? How long should this take? I'm kind of stuck at this point, because I can't run anything with the Core files on the VPS.
To further elaborate, where do I save my VPS conf file? When I run nano .monacoCoinCore/monacoCoin.conf and try to save my settings I get an error that the file/folder don't exist. When I do an 'ls' I see monoeci-cli, monoecid, monoeci-tx and the tar.gz file. Do I create the config inside this same directoy?
|
|
|
|
HurstOlds
Newbie
Offline
Activity: 10
Merit: 0
|
 |
January 03, 2018, 04:40:47 AM |
|
Trying to work thru the problem I'm having. Here's the latest update. I have ./monoecid running in one instance. In another window, I can run ./monoeci-cli getinfo and everything looks good. I can also run ./monoeci-cli mnsync status and recieve: { "AssetID": 999, "AssetName": "MASTERNODE_SYNC_FINISHED", "Attempt": 0, "IsBlockchainSynced": true, "IsMasternodeListSynced": true, "IsWinnersListSynced": true, "IsSynced": true, "IsFailed": false } But when I do the Sentinel setup, that's where my problems are. I created in my main directory (/home/USER/monoeci.conf) the config file. I added this directory in Sentinel's conf file. When I run the Sentinel test, I get this: ============================= test session starts ============================== platform linux2 -- Python 2.7.6, pytest-3.0.1, py-1.4.31, pluggy-0.3.1 rootdir: /home/xmccbob/sentinel, inifile: collected 20 items
test/integration/test_jsonrpc.py F test/unit/test_models.py .. test/unit/test_monoeci_config.py . test/unit/test_monoecid_data_shims.py .. test/unit/test_monoeciy_things.py ..... test/unit/test_submit_command.py . test/unit/models/test_proposals.py ... test/unit/models/test_superblocks.py .....
=================================== FAILURES =================================== ________________________________ test_monoecid _________________________________
def test_monoecid(): config_text = monoeciConfig.slurp_config_file(config.monoeci_conf) network = 'mainnet' is_testnet = False genesis_hash = u'0000005be1eb05b05fb45ae38ee9c1441514a65343cd146100a574de4278f1a3' for line in config_text.split("\n"): if line.startswith('testnet=1'): network = 'testnet' is_testnet = True genesis_hash = u'000008f18ad6913eed878632efbb83909272d493e5c065789330eb23ab65b5cf'
creds = monoeciConfig.get_rpc_creds(config_text, network) monoecid = monoeciDaemon(**creds) assert monoecid.rpc_command is not None
assert hasattr(monoecid, 'rpc_connection')
# monoeci testnet block 0 hash == 00000bafbc94add76cb75e2ec92894837288a481e5c005f6563d91623bf8bc2c # test commands without arguments > info = monoecid.rpc_command('getinfo')
test/integration/test_jsonrpc.py:34: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lib/monoecid.py:42: in rpc_command return self.rpc_connection.__getattr__(params[0])(*params[1:]) venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:139: in __call__ response = self._get_response() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <bitcoinrpc.authproxy.AuthServiceProxy object at 0x7f84dd8e2a10>
def _get_response(self): http_response = self.__conn.getresponse() if http_response is None: raise JSONRPCException({ 'code': -342, 'message': 'missing HTTP response from server'})
content_type = http_response.getheader('Content-Type') if content_type != 'application/json': raise JSONRPCException({ > 'code': -342, 'message': 'non-JSON HTTP response with \'%i %s\' from server' % (http_response.status, http_response.reason)}) E JSONRPCException: -342: non-JSON HTTP response with '401 Unauthorized' from server
venv/local/lib/python2.7/site-packages/bitcoinrpc/authproxy.py:187: JSONRPCException ===================== 1 failed, 19 passed in 0.58 seconds ======================
It says the problem is authentication. I'm not sure what I'm doing wrong. There are no spaces in my conf file : rpcuser=username rpcpassword=password rpcallowip=127.0.0.1 server=1 listen=1 daemon=1 maxconnections=24 masternode=1 masternodeprivkey=privatekeygeneratedfromwindowswallet externalip=ip.here
This is on a fresh Ubuntu 14 VPS. Sorry for the noob questions, this is my first masternode and all the tutorials reference the old monacoCoinCore stuff that apparently no longer exists..... I presume that I shouldn't send my 1,000 tokens over until the Sentinel test passes 100%, right?
|
|
|
|
moinuddin14
|
 |
January 03, 2018, 06:37:57 AM |
|
The starting point of the Monaco project is very good, to build a country's payment service, and I think that in the future, the cryptocurrency will become a real payment method, and its advantages are very obvious.In addition, I want to know how much is masternode's daily revenue?
now one payment (2 xmcc) per node in 47 hours So in other words 1 coin per day? ( 2 coins in 48 = 1 coin in 24 ) 1 coin per 24 hours. $3.54 per day? You can also check this page for a rough estimation of Daily income: https://masternodes.online/currencies/XMCC/But as previously mentioned the reward will increase very soon at block 120000. We are now at block 119750. 2 minutes per block on average so that would be within just a few hours. The reward should be around 130000. Did they change the plan?
|
|
|
|
ronnylov
Member

Offline
Activity: 276
Merit: 13
|
 |
January 03, 2018, 07:46:14 AM Last edit: January 03, 2018, 08:28:40 AM by ronnylov |
|
The starting point of the Monaco project is very good, to build a country's payment service, and I think that in the future, the cryptocurrency will become a real payment method, and its advantages are very obvious.In addition, I want to know how much is masternode's daily revenue?
now one payment (2 xmcc) per node in 47 hours So in other words 1 coin per day? ( 2 coins in 48 = 1 coin in 24 ) 1 coin per 24 hours. $3.54 per day? You can also check this page for a rough estimation of Daily income: https://masternodes.online/currencies/XMCC/But as previously mentioned the reward will increase very soon at block 120000. We are now at block 119750. 2 minutes per block on average so that would be within just a few hours. The reward should be around 130000. Did they change the plan? Yes I read it first somewhere in this thread but it is also mentioned on twitter: https://twitter.com/monoeci_monaco/status/943758915124236288?ref_src=twsrc%5Etfw&ref_url=https%3A%2F%2Fcoinmarketcap.com%2Fcurrencies%2Fmonacocoin%2FBut in reality there seem to be problems? Looking at block Explorer the rewards are still split 8/2 and many rewards are not split at all (only one receiver that get 10 XMCC)? Maybe we can get an explanation? Somebody stealing rewards from the masternodes? Edit: I got this explanation on discord: https://steemit.com/bitcoin/@onlimono/increased-xmcc-master-node-reward-or-xmccI guess miners want as much as possible and don't update until they are forced. Still does not explain the 10 XMCC rewards to miner only. Hopefully cryptopia will update. Why didn't they do it earlier, mandatory update was annunced weeks ago?
|
|
|
|
zigax1
Newbie
Offline
Activity: 16
Merit: 0
|
 |
January 03, 2018, 08:12:52 AM |
|
Hi devs. When will you burn first round of your coins?
|
|
|
|
fynxgloire
|
 |
January 03, 2018, 01:53:47 PM |
|
Can anyone tell me how many coins I can mine per day using a D3?
|
|
|
|
Verigus
Member

Offline
Activity: 120
Merit: 10
|
 |
January 04, 2018, 04:02:09 AM |
|
Thank you Monoeci team. I received my first 5 XMCC masternode reward today. 
|
|
|
|
hirozyc33
Newbie
Offline
Activity: 13
Merit: 0
|
 |
January 04, 2018, 12:48:23 PM |
|
hello. I created a new Japanese tutorial for create "Monoeci" Masternode on my site. ↓ https://nandemo77.com/2018/01/04/monoeci/i supporting to new monacocoin Projet "Monoeci" by my site. best wishes. thanks.
|
|
|
|
miniliano
Newbie
Offline
Activity: 23
Merit: 0
|
 |
January 04, 2018, 10:56:11 PM Last edit: January 04, 2018, 11:16:49 PM by miniliano |
|
Hi, i have 2 masternodes working. Im worry about this annuncement: FS#1116 - [Scaleway] Emergency security update required on all hypervisors"" Dear Cloud Rider, You have one or more cloud servers located on an hypervisor requiring an important security update. To perform this security update, we need to reboot your server. A maintenance window has been scheduled between the 01/04/18, starting at 7am UTC and the 01/06/18, ending at 7am UTC During this maintenance, your server will be unavailable for a few minutes during the reboot phase. We will reboot cluster one at a time to limit downtime on your infrastructure. We sincerely apologize for the short delay of this notice, we believe security and privacy is crucial on cloud platforms and we decided today to trade some availability in favor of security. You can checkout our blog to get more information: https://blog.online.net/2018/01/03/important-note-about-the-security-flaw-impacting-arm-intel-hardware/"" they are fixing the intel vulnerability and they will reboot masternodes, after that what must i do to repristinate the masternode to normal activities? run monoecid from vps and start node from wallet? or? tnx for answers
|
|
|
|
blockbasher
Newbie
Offline
Activity: 31
Merit: 0
|
 |
January 05, 2018, 01:22:07 AM |
|
I have been running a MN with no problems for the last 1.5-2 months, but now, starting yesterday, it said watchdog expired in the masternode tab. I restarted the MN from the windows wallet, it says pre enabled and when I went back into the wallet, it said enabled. Now today it says restart required, so I restarted it again and now it says PRE_ENABLED. Is their something I need to update that has suddenly started causing this because it was working flawlessless for over a month and never had to restart. I know there have been a lot of changes and appears to be a newer wallet on the Github that what I am running?
Also, when I look at the MN list, it shows nearly half the masternodes say NEW_START_REQUIRED or WATCHDOG_EXPIRED on them also so there must be an issue that came up. If anyone knows anything please let us know!
Thanks!
|
|
|
|
Wananavu99
|
 |
January 05, 2018, 05:59:48 AM |
|
I'm thinking of getting 2-3 dual core servers, os ubuntu linux and run them in my basement and use VPN for different ip addresses. Is this a good idea to have multiple MN's for XMCC?
|
|
|
|
ronnylov
Member

Offline
Activity: 276
Merit: 13
|
 |
January 05, 2018, 06:42:14 AM |
|
I'm thinking of getting 2-3 dual core servers, os ubuntu linux and run them in my basement and use VPN for different ip addresses. Is this a good idea to have multiple MN's for XMCC?
A stable connection without any downtime is important to keep it enabled all the time. You can use virtualization to run many servers on the same hardware but I have choosen to run mine on VPS instead of my own server. Problem is that my internet is not stable enough at home. I guess a stable VPN is at least as expensive as a VPS?
|
|
|
|
7artem7
|
 |
January 05, 2018, 06:05:40 PM |
|
MonacoCoin is added to NeedleCoinPool! More setting for tuning your hardware!  - Dedicated server - DDoS protection - Support 24h/7 (Mail,Chat,Telegram,Whatsapp,Discord) - 0.9% fees You can contact admin with the contact form or Telegram @Elettriko We have telegram group! https://t.me/joinchat/DlLdDQ-umQybXoJird8TRw More info: http://forum.needlecoin.org/
|
needlecoin.org needlecoinpool.eu
|
|
|
LimeXminer
Newbie
Offline
Activity: 59
Merit: 0
|
 |
January 05, 2018, 08:16:44 PM |
|
What are the settings for Antminer D3?
|
|
|
|
Elettriko
Newbie
Offline
Activity: 25
Merit: 0
|
 |
January 06, 2018, 09:27:11 AM |
|
What are the settings for Antminer D3? this work well for me stratum+tcp://xmcc.needlecoinpool.eu:4635
|
|
|
|
Wananavu99
|
 |
January 06, 2018, 04:10:16 PM |
|
Any one else getting their payments from mining, it's been couple of days and I usually get paid out everyday but but I haven't received anything even though prohashing said my payments went through. I created another address on my wallet and used that on prohashing but still not getting paid.
Is this happening to others?
|
|
|
|
|