Pages:
Author

Topic: [ANN][MAG] MAGNET - GOES STELLAR - More in description / magnetwork.io - page 49. (Read 83023 times)

member
Activity: 109
Merit: 10
enjoy this world
magnet will hit the moon in few weeks i have seen before the dev projects and all of them have a Hugh success so dont worry now is just the market reaction 
newbie
Activity: 59
Merit: 0
idev, this currency is very promising, but the price of it is very limited to CoinExchange, would not it be good to put it in at least a good 3 or 4 Exchanges? the design of this coin is very good, but coinexchange is falling directly
newbie
Activity: 14
Merit: 0

My Windows wallet update to 93362 will not be updated to how to solve
newbie
Activity: 7
Merit: 0
great idea of this project. count my support thru sharing and posting on my social media accounts. i wish this project a big success in the near future. goodluck to this project and goodluck to you dev.
newbie
Activity: 10
Merit: 0
Very interest! Guys, I'm with you!
newbie
Activity: 11
Merit: 0
I am glad to participate in the development of such a grandiose project!
member
Activity: 98
Merit: 10
This coin ... have no Future !
Masternode make only trouble, im out
newbie
Activity: 14
Merit: 1
Haha, yesterday panicsale on coinexchange, because they got the DNS-problem, but are up again... with no problems anymore.

i think its a good idea to buy some more and save it on offline-wallet, not coinexchange.

@idev are there any information about other exchanges in the future, beside cryptopia (which hopefully will list the coin soon)?
newbie
Activity: 14
Merit: 0
Wallet update card will not move at 93362
newbie
Activity: 20
Merit: 0
Sorry to say, but are you trying to reinvent a wheel ?

https://github.com/masternodes/vps

Difference is that the daemons all run on the host and not in an enclosed container.
Yet i can see a docker folder on the github and the developer seems to work on dockerizing the daemons.

Anyway thanks for this link, did not know this project, looks promising and I shall contribute.





sr. member
Activity: 260
Merit: 250
Sorry to say, but are you trying to reinvent a wheel ?

https://github.com/masternodes/vps
newbie
Activity: 20
Merit: 0
Docker container for Magnet Wallet / Masternode.

Hi, I am creating basic Dockerfiles to build and host wallets / masternodes.

Why?
With this containers you are able to have multiple wallets / masternodes on the same VPS.
Each container runs in its own environment and does not effect any services on the host system or other containers.
People running multiple masternodes rent for each a VPS, with this you can have multiple masternodes on the same VPS.
Read up on Docker @ https://www.docker.com/what-container if you interrested.

I will guide you through a basic installation on a Ubuntu 17.10 OS.
We will create a docker image with Alpine Linux as base and compile the latest Advance Protocol daemon on it.


Login (ssh) into your VPS:

# Lets upgrade all packages.

> apt-get update
> apt-get upgrade -y


# If you are on a VPS with low RAM and no swap space, lets create one

> fallocate -l 2G /swapfile
> chmod 600 /swapfile
> mkswap /swapfile
> swapon /swapfile
> cp /etc/fstab /etc/fstab.bak
> echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab


# Install Docker

> apt-get install apt-transport-https ca-certificates curl software-properties-common -y
> curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
> apt-key fingerprint 0EBFCD88
> add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu zesty stable"
> apt-get update
> apt-get install docker-ce -y


# Create a directory and copy paste the the content into the Dockerfile

> mkdir -p magnetBuild
> cd magnetBuild
> nano Dockerfile

# save the file: CLTR+X

Code:
# Dockerfile for magnetd on alpine linux
# http://magnetwork.io/

FROM alpine

LABEL version="1.2-61401-dockerMagnetd"
LABEL description="Dockerized magnetd daemon"
LABEL maintainer="TEmp"

# libboost >1.37 need suffix "-mt"
ARG BOOST_LIB_SUFFIX=-mt

# Install all necessary packages
RUN apk --no-cache --update add nano libstdc++ libtool build-base git autoconf automake linux-headers boost-dev openssl-dev db-dev miniupnpc-dev gmp-dev

# clone the magnet git and compile it, copy to /usr/bin and delete it afterwards
RUN mkdir -p magnetSource && \
    cd magnetSource && \
    git clone https://github.com/magnetwork/magnet.git . && \
    chmod +x compile.sh && \
    ./compile.sh && \
    cp /magnetSource/src/magnetd /usr/bin && \
    cd .. && \
    rm -rf /magnetSource

# here comes the APK clean up
RUN apk del build-base git autoconf automake libtool linux-headers && \
    rm -rvf /var/cache/apk/*

# Create the image, this will take some time!

> docker build -t magnetd .


# After the image is created, start it with an interactive shell inside
# You can repeat this step and create multiple containers now, make sure to use different ports & names
# -it = interactive
# -p = map ports from host to container
# --name = give the container a name

> docker run -it -p 17177:17177 --name MAG01 magnetd


# Inside of the docker container, we will start the magnetd daemon for the first time
# the daemon will exit again after creating the datadir, just wait a sec.

>> magnetd &


# Now cd into the dataDirectory and edit the config file, eg.: port, rpc information, masternode settings, ....
# we also download the bootstrap and unzip it here

>> cd ~/.magnet/
>> wget http://magnetwork.io/Wallets/bootstrap.zip && unzip bootstrap.zip && rm bootstrap.zip
>> nano magnet.conf


Code:
rpcallowip=127.0.0.1
rpcport=17179
rpcuser=INSERT_YOUR_USERNAME
rpcpassword=INSERT_YOUR_PASSWORD
server=1
daemon=1
listen=1
staking=1
port=17177
debug=all
addnode=35.195.167.40:17177
addnode=35.199.188.194:17177
addnode=104.196.155.39:17177
addnode=35.197.228.109:17177
addnode=35.198.35.45:17177
addnode=35.197.145.93:17177
addnode=35.199.1.114:17177
addnode=35.201.4.254:17177
addnode=35.188.240.39:17177
addnode=35.199.48.8:17177
addnode=146.148.79.31:17177
addnode=104.196.202.240:17177
addnode=35.195.122.245:17177
addnode=35.198.82.29:17177
addnode=35.200.247.198:17177

# Lets restart the daemon now

>> magnetd


# Verify its running

>> ps -ef


# Check the debug.log

>> tail -f debug.log


# DETACH the container
# press CLTR+P+Q

# SOME USEFUL DOCKER COMMANDS
# Verfiy the container is running on the host system

> docker ps -a


# Stats of all your containers

> docker stats


# Start / Stop containers

> docker start
> docker stop


# Execute a command inside of your container and exit again

> docker exec ps -ef


# Spawn a shell inside of the container

> docker exec -it /bin/sh


# Attach to a container

> docker attach



Thats it for now, hope this helps some of you who want to run multiple / sandboxed wallets on the same machine.

Ofc, you can do more with docker images
+ make the start full automatic
+ restart in case daemon crashes
+ send emails on events
+ basically limit is what you imagine!!

I build docker images for other coins as well. For questions, you can find me in the discord channel.

If you found this useful buy me a coffee =)


MAG: Mj46rMwE9LfNUDFLBy2TVb5Q85r15aVdQz
BTC: 1P1vR2T3kpJHXdWoMbiXq18moqGjGoz7Kz
newbie
Activity: 31
Merit: 0
Mag the truth will listitsya on a kriptopiya? At the same time its price will grow up?  Smiley Smiley Smiley
newbie
Activity: 28
Merit: 0
We can really be grateful for a dev like this.  And the market is going crazy. Other exchanges will come over time part of a stable growth proces. Cryptopia gonna be a huge boost, but like all of them they maybe are busy with the growth of accounts. So in the future not everyone can have multiple trading options like us. So every new listing will be a significant growth.
member
Activity: 121
Merit: 15
You are obviously avoiding the question, so I'll ask again: When are you going to list your coin on other exchanges?
No one is avoiding anything. You asked when and the only people that know the answer are Cryptopia since payment was sent earlier this month.
The answer was as direct and concise as it gets: "We are already posted our listing for Cryptopia and 20 days into waiting for it on their side. It is paid for. "
newbie
Activity: 9
Merit: 0
You are obviously avoiding the question, so I'll ask again: When are you going to list your coin on other exchanges?

From the past answer it is clear that this is in the process. Adding to new exchanges takes time.
newbie
Activity: 8
Merit: 1
Any working exchanges? Coinexchange is down for 2 days already. Cryptobridge doesn't have any trading volume.
Devs, what are you doing to get listed on other exchanges?


Cryptobridge might be low volume, but if You do not add Your buy order - no one can EVER fill it. If You do not make the first step into buying process, no one can help You.
Everybody in crypto knows right now that there is crazy amount of new users and most of the exchanges are having serious trouble maintaining their users. We are already posted our listing for Cryptopia and 20 days into waiting for it on their side. It is paid for.

So instead of bolding Your text here,  please go and set Your buy order.
Be active to find a solution Yourself, instead of looking for failure in others.

You are obviously avoiding the question, so I'll ask again: When are you going to list your coin on other exchanges?
newbie
Activity: 8
Merit: 1
Any working exchanges? Coinexchange is down for 2 days already. Cryptobridge doesn't have any trading volume.
Devs, what are you doing to get listed on other exchanges?
newbie
Activity: 4
Merit: 0
The explorer doesn't find the my magnet address for some reason. Does it take a while for it to update?

It was re-syncing, the payments were starting to reapppear, and now its gone back to not finding my address again
newbie
Activity: 39
Merit: 0
The explorer doesn't find the my magnet address for some reason. Does it take a while for it to update?
Pages:
Jump to: