Pages:
Author

Topic: [GUIDE] Setup your own Ethereum mining pool. - page 9. (Read 30140 times)

newbie
Activity: 23
Merit: 0
Hi all

i fixed the problem the pool is only now

http://thesevendwarfs.org

hope for a lot of miners  Smiley Wink Grin


Hello How did you manage to fix the API issues please post for us to see.

Thank You.
newbie
Activity: 19
Merit: 0
what is problem exactly you getting ..can you explain in detail please .so i can see if i can solve it
1)
My epoch doesn't come out as expected, it returns 0. While in other pool, it return 139. Is it okay?
hero member
Activity: 826
Merit: 1000
what is problem exactly you getting ..can you explain in detail please .so i can see if i can solve it
newbie
Activity: 19
Merit: 0
I need some help , anyone know where is my real problem ?

google and found nothing about epoch @ dag = 0 ..
http://regxm.com/Capture.PNG
newbie
Activity: 2
Merit: 0
Hi

I'm trying to set up the open-ethereum-pool. I followed the guide but I always end in the following error up when I try to access the frontend url:

Error:

Stats API Temporarily Down
Usually it's just a temporal issue and mining is not affected.

Can someone help me on this?

Thx for answering

How did you fix this problem?
newbie
Activity: 2
Merit: 0
Should all of this be done as root user?  Does it matter what folder pool software is installed to? 
hero member
Activity: 826
Merit: 1000
Thank you so much !

If you find info helpful you thank me by mining to my music address for a while..

ethminer -G -F http://mcpool.servehttp.com:8889/0x5a922a7d16a50a9a1e12b2de49354d764d2107cd/miner1


Hi sverkere!! Im trying to run a pool, but when i try to load the front end i get "Stats API Temporarily Down". I have done all as you have explained.

In enviroment.js i used:
 ApiUrl: '//localhost:8080/'

If you help ill be glad to mine musiccoin for you.


i think you need to use server ip or domain instead of localhost there so it will show the website detail in front page
newbie
Activity: 47
Merit: 0
I reply in private.
newbie
Activity: 1
Merit: 0
Thank you so much !

If you find info helpful you thank me by mining to my music address for a while..

ethminer -G -F http://mcpool.servehttp.com:8889/0x5a922a7d16a50a9a1e12b2de49354d764d2107cd/miner1


Hi sverkere!! Im trying to run a pool, but when i try to load the front end i get "Stats API Temporarily Down". I have done all as you have explained.

In enviroment.js i used:
 ApiUrl: '//localhost:8080/'

If you help ill be glad to mine musiccoin for you.
newbie
Activity: 47
Merit: 0
Thank you so much !

If you find info helpful you thank me by mining to my music address for a while..

ethminer -G -F http://mcpool.servehttp.com:8889/0x5a922a7d16a50a9a1e12b2de49354d764d2107cd/miner1
full member
Activity: 301
Merit: 106
Thank you so much !

i setup musicoin mining pool: http://unepa.com
its working
I need just change text "Etherium" to "Musicoin"
So i can found in sources exact location


Guys, how to fix this :?



I cant found in code

are you able to manage to install it and make it live because i am not able to as it not working ..do you have proper guide on this

Look at

ΞthereumPool

in

open-ethereum-pool/www/app/templates/application.hbs
newbie
Activity: 47
Merit: 0
i setup musicoin mining pool: http://unepa.com
its working
I need just change text "Etherium" to "Musicoin"
So i can found in sources exact location


Guys, how to fix this :?



I cant found in code

are you able to manage to install it and make it live because i am not able to as it not working ..do you have proper guide on this

Look at

ΞthereumPool

in

open-ethereum-pool/www/app/templates/application.hbs
full member
Activity: 301
Merit: 106
i setup musicoin mining pool: http://unepa.com
its working
I need just change text "Etherium" to "Musicoin"
So i can found in sources exact location


Guys, how to fix this :?



I cant found in code

are you able to manage to install it and make it live because i am not able to as it not working ..do you have proper guide on this
hero member
Activity: 826
Merit: 1000
Guys, how to fix this :?



I cant found in code

are you able to manage to install it and make it live because i am not able to as it not working ..do you have proper guide on this
full member
Activity: 301
Merit: 106
Guys, how to fix this :?



I cant found in code
newbie
Activity: 3
Merit: 0
Quote
  listen 0.0.0.0:80;
   root /open-ethereum-pool/www/dist;
   index index.html index.htm;

Just realized that ember generates /dist !

And probably need to wait for synchronization of the units or light / fast

I broke everything  Grin
newbie
Activity: 47
Merit: 0
Make sure you have nginx installed.

After config change kill master process and start:
ps -ef | grep nginx
sudo kill process_id
sudo nginx

1. Keep default /etc/nginx/conf.d/default.conf

2. Save the below text as /etc/nginx/nginx.conf

3. edit your specific path in the line
root /open-ethereum-pool/www/dist;
**********************************************


user www-data;
worker_processes auto;
pid /run/nginx.pid;


events {
        worker_connections 768;
        # multi_accept on;
}



http {

   sendfile on;
   tcp_nopush on;
   tcp_nodelay on;
   keepalive_timeout 65;
   types_hash_max_size 2048;
   # server_tokens off;

   # server_names_hash_bucket_size 64;
   # server_name_in_redirect off;

   include /etc/nginx/mime.types;
   default_type application/octet-stream;

   ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
   #ssl_prefer_server_ciphers on;

   access_log /var/log/nginx/access.log;
   error_log /var/log/nginx/error.log;

   gzip on;
   gzip_disable "msie6";


   upstream api {
   server 127.0.0.1:8080;
   }

   server {
   listen 0.0.0.0:80;
   root /open-ethereum-pool/www/dist;
   index index.html index.htm;

   server_name localhost;

        location /api {
                proxy_pass http://api;
        }


   location / {
      try_files $uri $uri/ /index.html;
   }

   }

}
hero member
Activity: 826
Merit: 1000
Code:
Configure nginx to serve API on /api subdirectory. Configure nginx to serve www/dist as static website.

do you know what to do and how to do for this step as not able to do it ..not find any guide on this how to do it

Code:
Serving API using nginx

Create an upstream for API:

How to this can be done and where this code need to be placed ?? do you know can you tell me


You can edit /etc/nginx/conf.d/default.conf
That's the nginx default message when you open http://localhost

Now you want it to do something else like:

upstream api {
   server 127.0.0.1:8080;
   }

   server {
   listen 0.0.0.0:80;
   root /pool-path/www/dist;
   index index.html index.htm;

   server_name localhost;

        location /api {
                proxy_pass http://api;
        }


   location / {
      try_files $uri $uri/ /index.html;
   }

   }

This not correct location or files and config as i can see i try to do it but not working also instead listen 0.0.0.0:80 should i use mt server ip for this with port 80

this what i see http://prntscr.com/gb1xml when tryt o open our mail ip in browser
newbie
Activity: 47
Merit: 0
If you find info helpful you thank me by mining to my music address for a while..

ethminer -G -F http://mcpool.servehttp.com:8889/0x5a922a7d16a50a9a1e12b2de49354d764d2107cd/miner1 --farm-recheck 400
newbie
Activity: 47
Merit: 0
thanks ..for you detail confing ..

now one more thing in which files or place we have to change the ip of our server or domain name in this guide as so place place using some short of local ip to connect to server pool and api and redis ..

so the place where i have to put my domain name or if not i have domain name i can put ip but the place and file

You should have the file environment.js in /pool-path/www/config

There you correctly need to specify ApiUrl. For example:

ApiUrl: '//ubiqpool.servehttp.com:8080/',

The /etc/hosts file specify this host in local net:
192.168.10.162 ubiqpool.servehttp.com

Externally I have made ubiqpool.servehttp.com known through the service https://www.noip.com/
Pages:
Jump to: