Advertisement
Guest User

Untitled

a guest
Apr 12th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. >php app/console doctrine:database:create
  2. Could not create database "monng" for connection named default
  3. Notice: Undefined index: dbname
  4.  
  5. >php app/console doctrine:mapping:import AppBundle
  6. Importing mapping information from "default" entity manager
  7. > writing /var/www/html/structure/src/AppBundle/Resources/config/doctrine/Projects.orm.xml
  8.  
  9. parameters:
  10. database_host: 172.25.x.y
  11. database_port: '60000'
  12. database_name: structure
  13. database_user: structure
  14. database_password: xxxxxxx
  15. database_driver: ibm_db2
  16.  
  17. ...
  18. # Doctrine Configuration
  19. doctrine:
  20. dbal:
  21. driver: "%database_driver%"
  22. host: "%database_host%"
  23. port: "%database_port%"
  24. dbname: "%database_name%"
  25. user: "%database_user%"
  26. password: "%database_password%"
  27. charset: UTF8
  28. ...
  29.  
  30. doctrine/doctrine-bundle 1.6.2 Symfony DoctrineBundle
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement