-
-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DNS problem (docker-toolbox \ Win7x64 \ non-admin user) #119
Comments
@jayson-lynnfield-zen unfortunately it is still doesn't support Docker Toolbox. If you have any change to use Windows 10, go for it, otherwise you will have to wait a bit, until I (or someone else) have found a way. |
@cytopia thanks for reply |
@jayson-lynnfield-zen By default the devilbox listens on |
@cytopia you mean live it blank (empty)? |
@cytopia, i've found one weird moment... -- My first attempt was a blank address, -- Then i've try to add a colon mark, So maybe i'm getting wrong somewhere of the setup process, |
@jayson-lynnfield-zen can you paste the full log for httpd from your first try with an empty
|
@cytopia yep, I'll send it, when get to the pc... |
@cytopia i've execute that,results are below |
@jayson-lynnfield-zen I made a major rewrite to overcome some limitations. I hope I could also address your problems. Pull request is not merged yet (#130), however could you checkout the branch (REL-0.12) and give it a try:
Hope it can fix some problems |
Thanks man, I'll check it as fast as I can, write you later
Best regards, Jason E.
Отправлено из ProtonMail mobile
…-------- Исходное сообщение --------
Вкл 28 сент. 2017 г., 2:26, cytopia написал(а):
***@***.***(https://github.com/jayson-lynnfield-zen) I made a major rewrite to overcome some limitations. I hope I could also address your problems. Pull request is not merged yet ([#130](#130)), however could you checkout the branch and give it a try:
- just to make sure everything is reset
docker-compose down
docker-compose rm -f
- Check out new branch
git fetch --all
git checkout REL-0.12
- Compare new env-example with your local .env
vimdiff .env env-example
- Start it up
docker-compose up -d
Hope it can fix some problems
—
You are receiving this because you were mentioned.
Reply to this email directly, [view it on GitHub](#119 (comment)), or [mute the thread](https://github.com/notifications/unsubscribe-auth/AZjY4Gm8-WoL7mjm9gXUiqsv_9QEMbEzks5smr12gaJpZM4PGkxi).
|
@cytopia |
@jayson-lynnfield-zen There seems to be two docker networks. One from your previous devilbox instance and the new one. However both do use the same IP. So do the following (First shutdown the devilbox): # show devilbox networks
docker network ls --filter 'name=devil*'
# delete all networks starting by devilbox
docker network rm <network-name> Alternatively use this command: docker network rm $(docker network ls --filter 'name=devil*' -q | xargs) That should fix your problems |
@cytopia ok, I'll check it, thanks
Best regards, Jason E.
Отправлено из ProtonMail mobile
…-------- Исходное сообщение --------
Вкл 28 сент. 2017 г., 20:33, cytopia написал(а):
There seems to be two docker networks. One from your previous devilbox instance and the new one. However both do use the same IP.
So do the following (First shutdown the devilbox):
#
show devilbox networks
docker network ls --filter
'
name=devil*
'
#
delete all networks starting by devilbox
docker network rm
<
network-name
>
Alternatively use this command:
docker network rm
$(
docker network ls --filter
'
name=devil*
'
-q
|
xargs
)
That should fix your problems
—
You are receiving this because you were mentioned.
Reply to this email directly, [view it on GitHub](#119 (comment)), or [mute the thread](https://github.com/notifications/unsubscribe-auth/AZjY4IcC5rAnKm0yX1Y_nokXiB-AFkENks5sm7xTgaJpZM4PGkxi).
|
@cytopia Yep, it was not so simple as i want, |
That means address or port is already in use on your side. Can you check what else is listening on the required ports on those IP addresses |
@cytopia Can you advise, which command should i use for that checking? also there's some outputs for executed commands... While IP is broadcasted (LOCAL_LISTEN_ADDR=) While IP is set to default (LOCAL_LISTEN_ADDR=127.0.0.1:) While IP belongs to docker (LOCAL_LISTEN_ADDR=192.168.99.100:) While IP belongs to service itself (LOCAL_LISTEN_ADDR=172.16.238.11:) |
@jayson-lynnfield-zen yes I can help :-) You are using the So as described above, checkout |
Looks like the port assigned to bind in
|
@cytopia I've finally got my windows-desktop, and apply REL-0.12 branch... first attempt with no any address specified (broadcasted): second attempt was with docker ip specified (192.168.99.100:) third time I've set 127.0.0.1: value (as in your default version) Then I've set a broadcast address again, change BIND port to 3000 (1053 was initially being set), and there's my logs-output |
@cytopia and there's output from logs httpd & bind services |
@jayson-lynnfield-zen I think, the only way to go from your debugging is:
This leads to a So can you paste the httpd error log from nginx here after you made a request to |
@cytopia correct me if i wrong... there's a log right after utility being started and there's a log after i made a request... (seems all the same) |
@jayson-lynnfield-zen No. I mean the physical log file inside the |
@cytopia in my case log folder has only one, single file, called .keepme... |
@jayson-lynnfield-zen there must be something as soon as the devilbox starts. Could you do the following and paste the folder structure here: ls -lR log/ |
@jayson-lynnfield-zen |
As discussed on gitter, I will close it and mark it as wont fix |
Hi, Was there a solution to this issue? It is identical to the problems I'm having using Windows 7. |
Same issue as above. 404 nginx error on windows 10 home edition. I have to use Docker Toolbox and nothing is being created in the devilbox folders. |
I will re-open this issue as it seems to be active again. @aozkan @prototype2118 please provide detailed information about your system and how to reproduce this issue, so I can start debugging this. |
Same issue as described above. I use Docker Toolbox on a Windows 10 Home Edition laptop and can compose up to create the container. Going to the IP address of the container brings me directly to the 404 nginx page. I cannot get to the devilbox admin page. |
How did you get the IP address of the container? Did you have a look here: https://devilbox.readthedocs.io/en/latest/howto/docker-toolbox/find-docker-toolbox-ip-address.html#howto-find-docker-toolbox-ip-address |
The IP address of the container was shown upon startup. It's the same IP address in the link you provided. |
@prototype2118 can you attach your |
There's an upcoming PR which is going to mitigate DNS issues on Docker Toolbox (Windows and MacOS): #411 Please have a look and let me know how this works for your. |
@jayson-lynnfield-zen @aozkan @prototype2118 I have removed This ticket is now a duplicate of: #248 I will therefore close this one and all further discussions should continue here: #248 |
Hi,
I've already complete setup & using devilbox tool on OS X
(it means that i understand how it works fine)
But on Windows7 x64 host i have a following issue.
Accordingly to documentation, we need to specify a "LOCAL_LISTEN_ADDR",
which is 127.0.0.1 by default. Docker tools software versions provided in attachment image.
In case of windows 7 we can use only docker-toolbox, and cannot use a docker-native client...
While it starts - it shows an IP 192.168.99.100
which must replace a default IP address (127.0.0.1:) from .env file.
Once I've set that - i'm launching the utility...
Starting procedure are the same as on OS X...
The tool sequentially launches a few web services and goes to idle state...
Afterwards my browser (Google chrome Version 60.0.3112.113 (Official Build) (64-bit))
can't get to the main web-panel, neither one of following addresses are recognized by DNS
127.0.0.1
192.168.99.100
172.16.238.11
localhost
I've tries to set all of them to "LOCAL_LISTEN_ADDR" value,
each time after any changes being made I've erase all present containers through following commands:
docker rm -f $(docker ps -a -q)
docker rmi $(docker images -q)
for now it is still doesn't see web-panel...
Who is sharp enough, please advise - what it can be? Is there any solution for that?
Thanks for paying attention, good luck
Software versions are
Working idle state of devilbox tool
The text was updated successfully, but these errors were encountered: