Re: Django & Oracle connection problem

2013-05-16 Thread Jani Tiainen
If you want just to connect Oracle but not run server locally using instant client is much more easier option to setup. On Wed, 15 May 2013 02:43:36 -0700 (PDT) Michael Van wrote: > I have the same error when python managment runserver : > cx_Oracle.DatabaseError:

Re: Django & Oracle connection problem

2013-05-15 Thread Dylan Klomparens
Oops! I was thinking about a different problem, and realized that I gave you some bad information. Please disregard the last message. I will paste some of the installation instructions for the Oracle Full Client I wrote up for my organization: Create a Linux user called 'oracle'. Create the

Re: Django & Oracle connection problem

2013-05-15 Thread Dylan Klomparens
This bug was filed as ticket 19720 ( https://code.djangoproject.com/ticket/19720) and resolved. It should not be a problem if you are using version 1.4.* or 1.5.* of Django. Additionally, the fact that you get the same information when you attempt to login with another SQL client leads me to

Re: Django & Oracle connection problem

2013-05-15 Thread Michael Van
I have the same error when python managment runserver : cx_Oracle.DatabaseError: ORA-28547: connection to server failed, probable Oracle Net admin error and this Error infomation is the same when I type sqlplus try to login. My os is Xubuntu13.10, and I installed oracle-instance on ubuntu, so I

Re: Django & Oracle connection problem

2013-01-25 Thread Dylan Klomparens
Hmm, ok so I guess having a different user name isn't causing the problem. I was able to connect to the database from the webserver using SQL Developer, and I am sure the credentials are correct. Are there any configuration steps that I need to perform for Instant Client or cx_Oracle? So far,

Re: Django & Oracle connection problem

2013-01-25 Thread Dan Gentry
You've probably already tried the simple things: - Confirm that the server name and port are correct. - Ensure that firewall/routing rules will allow the connection. - Try a simple connection on the same box with sqlplus. Walking through this list has helped me a number of times.

Re: Django & Oracle connection problem

2013-01-24 Thread akaariai
On 25 tammi, 00:27, Dylan Klomparens wrote: > I have a Django program that is connecting to an Oracle database. In my > settings.py file I have this configuration: > > DATABASES = { >   'default': { >     'ENGINE': 'django.db.backends.oracle', >     'NAME': 'xe', >    

Django & Oracle connection problem

2013-01-24 Thread Dylan Klomparens
I have a Django program that is connecting to an Oracle database. In my settings.py file I have this configuration: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.oracle', 'NAME': 'xe', 'USER': 'MY_USER_NAME', 'PASSWORD': 'abcdefghijklmnopqrstuvwxyz', 'HOST':