Ticket #16455: django.log

File django.log, 2.4 KB (added by Christian Karrié, 13 years ago)

Error translation: ERROR: operator class "gist_geometry_ops" does not accept access method "gist"

Line 
1# Postgis 2.0 Template
2createdb -U postgres postgis_2
3createlang -U postgres plpgsql postgis_2
4
5psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/postgis.sql
6psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/spatial_ref_sys.sql
7psql -U postgres -d postgis_2 -f /usr/share/postgresql/8.4/contrib/postgis-2.0/legacy.sql
8
9createdb -U postgres -T postgis_2 newdb
10
11./manage.py syncdb
12
13# Output:
14Creating tables ...
15Creating table auth_permission
16Creating table auth_group_permissions
17Creating table auth_group
18Creating table auth_user_user_permissions
19Creating table auth_user_groups
20Creating table auth_user
21Creating table django_content_type
22Creating table django_session
23Creating table django_site
24Creating table django_admin_log
25[... a lot of tables ...]
26Creating table tv_myvdr
27
28You just installed Django's auth system, which means you don't have any superusers defined.
29Would you like to create one now? (yes/no): yes
30Username (leave blank to use 'ckarrie'):
31E-mail address: *******
32Password:
33Password (again):
34Superuser created successfully.
35Installing custom SQL ...
36Installing indexes ...
37Failed to install index for bzs_base.Parcel model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
38
39Failed to install index for bzs_base.Bzs model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
40
41Failed to install index for bzs_analyze.IEP model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
42
43Failed to install index for bzs_analyze.UndevPotential model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
44
45Failed to install index for arp_schwachstellen.SchwPoint model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
46
47Failed to install index for arp_schwachstellen.SchwPolygon model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
48
49Failed to install index for arp_schwachstellen.SchwLine model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
50
51Failed to install index for arp_schwachstellen.ExifData model: FEHLER: Operatorklasse »gist_geometry_ops« existiert nicht für Zugriffsmethode »gist«
52
53Installed 46 object(s) (of 135) from 3 fixture(s)
Back to Top