Stuck on "Connected" - world-of-warcraft

I have an AzerothCore running on Windows in a local network. After logging in, the client hangs on "Connected" when attempting to enter the realm.

This is how I've solved the issue:
Find and record your Internal IP address. ( It will look like this -> 192.168.xxx.xxx )
Use an MySQL client (e.g. HeidiSQL) to open the database table acore_auth.realmlist.
Change address and localAddress from 127.0.0.1 to your internal IP address.
Open your WoW client's realmlist.wtf file and change 127.0.0.1 to your internal IP address.
Log in and enter the realm!

Related

Modify pg_hba.conf file to allow me access

I keep getting an error when trying to connect to psql database, "connection closed by remote host". I have tried modifying the pg_hba.conf file to allow the IP of my computer to have access, but I still get the same error, what am I doing wrong? Do I have to restart the server or something?
host all all <ip>/32 md5
As well, I have seen /24 instead of /32, how do I know which number to use?
The notation "/32" refers to a single IP address whereas the notation "192.168.1.0/24" refers to all addresses on the 192.168.1.x network.
And yes, you will probably have to do an SQL restart, something like:
service postmaster restart
But make sure your IP address is restrictive so that hackers won't be visiting your database all day. Use "localhost" if you can (127.0.0.1).

Connect from specific ip address in linux

I'm writing a distributed system and I want to test it on my machine. I created several ip addresses on the interface lo using ip addr add ip_add dev lo.
I have binded all servers to their specific addresses and now I want my servers to connect to each other such that each server would think that it connects from his own ip. But when I use connect I get connection from my localhost. How is it possible to connect from a specific ip address?
It turned out that calling bind() on my socket does all necessary work.

how to use host name in the place of ip address in the socket programming in java?

I am using socket programming to connect two PCs in java through wi-fi. I used the ip address of the server at the client side. but the problem is that when the ip address of the server got changed then i have to change the ip address of server at client side. and when i use host name for connection nothing happens. is there any way to use static ip or any other solutions that can work to connect both of them which can work on any network. independent of ip address of the server.
please suggest me the solution.
i think there is a simple solution to your problem ...
you should get the ip address of your device by using Inetaddress.getbyName("user-pc").getHostAddress()
hope it will work for u...
1. First of all If you are on LAN, then Any IP from Class A, B, C will suffice, But if you want it over the Internet, then you will have to be careful about the Private and Public IPs.
2. For static IP over internet you need to contact you Internet Server Provider, or you can try out some sites over the net that provides static ip based on your dynamic ips.
3. But if you want that due to the change in your server ip the client code need NOT be changed then you can do the following...
- Use the Domain Name of the Server instead of IP, by using Domain Name Server.
- Instead of storing the raw IP of the Server in the Client code, use Some variable which gets the IP of the server from some file like the Property file, Database etc...

Troubles accessing the VirtualHost on a local net

Hi I have a Huawei ADSL modem with a dynamic IP. I set up a dynamic dns with freedns and I can easily access my Virtual host on apache from outside my private network, from internet.
So trying to access it from a local network I get a modems login page.
I have the rule in my modems NAT to connect port 80 to my server but it seems it doesnt work from internal net.
My server hosting the virtual host is 192.168.0.1 , the modem has the 192.168.0.254 address.
I tried to put my external domain name into the /etc/hosts file, but if I do that then asterisk server gets confused.
What could be the cause of the problem ? And what would be the best solution to this problem ?
Should I set up a caching DNS on the private side of the net ?
Hugger is half right... Its because your router is blocking loopbacks. The easiest way around this is to edit the hosts file (See the Wiki page) on the computer that is behind the network to see the local IP of the computer as the virtual host your going for. For example if your server is on 192.168.0.1 and the virtual hostname is www.imrad.com then insert
192.168.0.1 www.imrad.com
into your hosts file. If your computer leaves the local network (like a laptop you take to work) and joins a network not behind your router you need to comment out the line in the hosts file.
well actually to access that you must find the local ip address of the server by going into command line/prompt and typing ipconfig /all then you will find ipv4 address. Take note of that.
Go to another computer and your that ip and it will show.
The reason that was happening is because the router/modem knows you are in its network so it will think you ar trying to go top the login page of it. That happens to me too.

Getting Started with CouchDB

I've got CouchDB installed on my linux cloud server and I'm trying to access the "Futon Welcome Screen". The O'Reilly book says to go to "127.0.0.1:portnum", but I'm not working on localhost, it is my remote server, so I should be able to use "xxx.xxx.xxx.x:portnum" (my remote address) to access Futon right? This is not working, do I need a virtual host or something? Thanks.
Go to your local.ini file. (probably in /etc/couchdb) and set bind_address to either 0.0.0.0 (ie. respond to all IP addresses) or specify another IP address that you're either using in your LAN (private) or over the internet. (public)

Resources