View Single Post
01/02/20, 03:19 PM   #4
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
Did you run minion with admin/priviledged rights?

The log file says "IOException: Read timed out" which means Java was not able to connect to the http website of Minion.
It tried using your proxy server (if enabled. You already said there is none so it uses the direct connection of your ISP).

You need to check Windows Firewall if Minion is really enabled for all protocolls (tcp, udp, others) and ports.
If so, you need to check if your router allows the connection or some other firewall software in your computer is installed and used.

I cannot fix this from here and cannot tell you more about the ipv4 and ipv6 stuff as I'm not java dev. Basically these 2 are different network protocolls. ipv4 is the typical ip address protocoll you might know, looking like this: 192.168.178.4 or any x.x.x.x type of address.
As the number range of these is limited from 1.1.1.1 to 255.255.255.255 the ipv4 protocoll was not able to provide numbers for the increasing number of devices in the wolrd wide web (internet). So ipv6 was created which supports way more number combinations + other features.
Your network adapter drivers either use ipv4 or ipv6, or both, to connect to the internet. If your java applications is set to only use ipv4 and your network connections settings says use ipv6 only this might be a problem.

So there was some command console (WIN key + r, type "cmd" and run as administrator) command to switch the java stack to use both or only one of these I remember.
I found this thread about it e.g.
https://stackoverflow.com/questions/...pv4-ips-on-jre

Close Minion.
Use taskmanager to check if all minion.exe processes are really closed!

Windows:
If you are using Windows, just run this command on Windows cmd (WIN key+r -> type cmd and run as admin then):
Code:
setx _JAVA_OPTIONS -Djava.net.preferIPv4Stack=true
Press return key afterwards.

Run Minion 32bit version then (if you have installed Minion 64bit client deinstall it and download the Minion 32bit client instead!) as admin and tyr again. Hope it helps.
  Reply With Quote