Advertisement
Guest User

Untitled

a guest
Jun 19th, 2014
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.43 KB | None | 0 0
  1. Checking configuration files
  2. Checking postgresql database connection
  3. Checking mongodb database connection
  4. Syncronizing database
  5. Syncing...
  6. Creating tables ...
  7. Installing custom SQL ...
  8. Installing indexes ...
  9. Installed 0 object(s) from 0 fixture(s)
  10.  
  11. Synced:
  12.  > django.contrib.auth
  13.  > django.contrib.contenttypes
  14.  > django.contrib.sessions
  15.  > django.contrib.sites
  16.  > django.contrib.admin
  17.  > django.contrib.messages
  18.  > south
  19.  > noc.wf
  20.  
  21. Not synced (use migrations):
  22.  - noc.main
  23.  - noc.project
  24.  - noc.gis
  25.  - noc.inv
  26.  - noc.sa
  27.  - noc.fm
  28.  - noc.pm
  29.  - noc.cm
  30.  - noc.ip
  31.  - noc.vc
  32.  - noc.dns
  33.  - noc.peer
  34.  - noc.kb
  35. (use ./manage.py migrate to migrate these)
  36. Migrating database
  37. Running migrations for main:
  38. - Nothing to migrate.
  39.  - Loading initial data for main.
  40. Installed 0 object(s) from 0 fixture(s)
  41. Running migrations for project:
  42. - Nothing to migrate.
  43.  - Loading initial data for project.
  44. Installed 0 object(s) from 0 fixture(s)
  45. Running migrations for gis:
  46.  - Migrating forwards to 0002_world_area.
  47.  > gis:0001_check_postgis
  48. PostGIS is not installed. Trying to install ...
  49. Failed to install PostGIS: Not found: /usr/local/share/postgresql/contrib/postgis-1.5
  50. Install PostGIS into database 'noc' according to your operation system's procedure
  51. Stopping...
  52. upgrade-user: 39: migrate failed
  53. Terminating
  54. upgrade complete
  55. BEGIN
  56. UPDATE 1
  57. COMMIT
  58. Performing sanity check on nginx configuration:
  59. nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
  60. nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
  61. nginx not running? (check /var/run/nginx.pid).
  62. Performing sanity check on nginx configuration:
  63. nginx: the configuration file /usr/local/etc/nginx/nginx.conf syntax is ok
  64. nginx: configuration file /usr/local/etc/nginx/nginx.conf test is successful
  65. Starting nginx.
  66. /usr/local/etc/rc.d/noc: set_rcvar: not found
  67. Starting noc.
  68. root@sd:/ # /usr/local/noc/manage.py
  69. Traceback (most recent call last):
  70.  File "/usr/local/noc/manage.py", line 21, in <module>
  71.    import settings  # Assumed to be in the same directory.
  72.  File "/usr/local/noc/settings.py", line 13, in <module>
  73.    DEBUG = config.getboolean("main", "debug")
  74.  File "/usr/local/lib/python2.7/ConfigParser.py", line 368, in getboolean
  75.    v = self.get(section, option)
  76.  File "/usr/local/lib/python2.7/ConfigParser.py", line 607, in get
  77.    raise NoSectionError(section)
  78. ConfigParser.NoSectionError: No section: 'main'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement