Unicodedecodeerror with runserver

After setting up all what django requires, I tried the runserver command and I caught an error:

UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xcf in position
8: invalid continuation byte

From:

c:sue>python manage.py runserver
Validating models...

0 errors found
April 16, 2014 - 15:02:42
Django version 1.6.2, using settings 'sue.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
Unhandled exception in thread started by <function check_errors.<locals>.wrapper at 0x0000000003890048>
Traceback (most recent call last):
  File "C:python34libsite-packagesdjangoutilsautoreload.py", line 93, in wrapper fn(*args, **kwargs)
  File "C:python34libsite-packagesdjangocoremanagementcommandsrunserver.py", line 127, in inner_run ipv6=self.use_ipv6, threading=threading)
  File "C:python34libsite-packagesdjangocoreserversbasehttp.py", line 167, in run httpd = httpd_cls(server_address, WSGIRequestHandler, ipv6=ipv6)
  File "C:python34libsite-packagesdjangocoreserversbasehttp.py", line 109, in __init__ super(WSGIServer, self).__init__(*args, **kwargs)
  File "C:python34libsocketserver.py", line 430, in __init__ self.server_bind()
  File "C:python34libsite-packagesdjangocoreserversbasehttp.py", line 113, in server_bind super(WSGIServer, self).server_bind()
  File "C:python34libwsgirefsimple_server.py", line 50, in server_bind HTTPServer.server_bind(self)
  File "C:python34libhttpserver.py", line 137, in server_bind
    self.server_name = socket.getfqdn(host)
  File "C:python34libsocket.py", line 460, in getfqdn
    hostname, aliases, ipaddrs = gethostbyaddr(name)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 8: invalid continuation byte

I am using Windows 7 x64, python 3.4 and django 1.6.2. What does this error mean?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

This sounds like this Python issue. If your computer name has non-ASCII characters this will fail. You may:

  1. Issue the runserver command with explicit host and port: python manage.py runserver 127.0.0.1:8000
  2. Change your computer name to a string that only contains ASCII characters.

Method 2

I just had this issue because I accidentally visited the site with https instead of http. Switching back to http fixed it.

Method 3

I hit this issue on python 3.4 with the following situation :

  • Server did have an ascii-only hostname (like host1)
  • The /etc/hosts file did not contain an entry for my hostname
  • There was no available DNS resolver (offline computer)

After adding the following entry to the /etc/hosts file, no further UnicodeDecodeError exceptions were thrown.

127.0.0.1 localhost host1


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x