mamcxyz,

I've had pretty good luck with Fedora Core 4. Here are my (terse) notes
from setting up Django and my blog on FC4 a couple of weeks ago. Note
that FC4 already had MySQL 4.1.x and Python 2.4.1 and Apache 2.0.54
(with mod_python) so I just went with them. On Windows I use MySQL 5
but I haven't run into any probs between them yet.

  - yum install subversion
  - yum install python-docutils
  - svn co http://code.djangoproject.com/svn/django/trunk
  - python ez_setup.py (in Django co dir)
  - python setup.py install (in Django co dir)
  - mysqladmin create database web
  - mysql web < web.sql to restore it
  - make mysql autostart
    chkconfig --level 3 mysqld on
  - make httpd autostart
    chkconfig --level 3 httpd on
  - start them
    service httpd start
    service mysqld start

Note that I build and install Django. Most people here use symlinks
instead. But I like to follow the same process as I do on XP. I also
didn't have to compile any of the dependency packages.

There are of course more details than I've listed above but that really
covers the most of it. I think in all it took me about 30 minutes once
I had the Linux VM built.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to