Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ready to review/merge] Create a new vagrant environment #294

Closed
wants to merge 3 commits into from

Conversation

Ma27
Copy link

@Ma27 Ma27 commented Jul 31, 2015

Q A
Bug fix? no
New feature? yes
BC breaks? yes
Deprecations? no
Tests pass? no
License MIT

Tasks:

  • implement simple vagrant environment with a functional mysql database and phpcr
  • basic jackrabbit manifest
  • fix review comments
  • refactor vhost configuration
  • make host configurable
  • finish implementation of a jackrabbit module for puppet
  • add section about the vagrant environment in the readme
  • finish implementation (review fixes, squash all commits, rebase master, etc.)
  • jump to directory "/var/www/cmf" when running "vagrant ssh"
  • invalid entries in /etc/hosts when using vagrant-hostmanager

@ElectricMaxxx
Copy link
Member

We should add a new documentation section into the general documentation: how to install. Yea its easy now, but should get an own chapter.

@Ma27
Copy link
Author

Ma27 commented Jul 31, 2015

the broken travis is caused by invalid dependencies located in the composer.lock.
According to the "Blame" feature these old dependencies exist for a longer time. If you wish, I could fix that..

@ElectricMaxxx
Copy link
Member

Yea and that bug lives that long, cause the composer cache hides him. We have seen those zend repo problems 2 month ago in our projects. So we should fix them. either here, if the other like our box, orin a separate PR.

database_user:
database_password:
database_host: localhost
database_port: 3306
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should keep that .distas it is and use a separate one for the box with complete pdo_mysql as driver for the mysq created in the box. The pdo_sqlite is used for an easy entry point.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 - have a config file template for parameters.yml in the place where the other config file templates for vagrant live

@lsmith77 lsmith77 added review and removed wip/poc labels Aug 2, 2015
@Ma27
Copy link
Author

Ma27 commented Aug 3, 2015

ok, but I have to find some time for that ;)

@Ma27 Ma27 changed the title Use wasted as vagrant environment [WIP] Use wasted as vagrant environment Aug 3, 2015
@ElectricMaxxx
Copy link
Member

No worries, we can do that together on a slackday, when you are at the buro.

@lsmith77 lsmith77 added wip/poc and removed review labels Aug 3, 2015
@Ma27
Copy link
Author

Ma27 commented Aug 3, 2015

If I'm right, at the 14th august is the next slacktime and then I should have time ;)

@Ma27
Copy link
Author

Ma27 commented Aug 3, 2015

hrmpf these zend dependencies seem to require php 5.5, but the sandbox requires php 5.3.x. It seems as we have to remove these deps in order to provide BC for older php versions (which are actually dead btw)

@ElectricMaxxx
Copy link
Member

I will ask Reno how he solved that issue in our project. But i think, when lifting up the version is the only sollution, we should do it in an other Issue/PR. So we would have it available in the other PRs too. What would you think @dbu @dantleech

@Ma27
Copy link
Author

Ma27 commented Aug 3, 2015

the question is where is this zend stuff required? I would try to remove this if possible, but I'll wait for the response @dbu and @dantleech

@dbu
Copy link
Member

dbu commented Aug 3, 2015

the newest versions of zend requires php 5.5 but the version we need at minimum should still support php 5.3 so composer should find a solution. ah, unless we commit the composer.lock file built on a machine with php > 5.3


## Apply vagrant box

There's a new vagrant box that is simple to boot:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the readme is not time-based so we should not say "new vagrant box" but simply: "The easiest way to set up the sandbox is using Vagrant:"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest to provide some docs around the sandbox and its install in our common docs.

@Ma27
Copy link
Author

Ma27 commented Aug 3, 2015

@dbu, @ElectricMaxxx I'll have to find some time, but I'll fix the docs as soon as possible.

why puppet? Well at the mayflower barcamp I've asked @ElectricMaxxx whether there's a vagrant box for the CMF, but there's just one which doesn't work properly, so we got the idea to configure wasted (https://github.com/mayflower/wasted) for the cmf and I could open the pull request.

app_dev.php: 👎 It is possible to set a "production" key in the common.yaml to true and then the app.php will be used instead of the app_dev.php (I should really extend the docs): https://github.com/Ma27/cmf-sandbox/blob/vagrant-box/vagrant-cfg/common.yaml#L14.

php 5.3 issue: the disadvantage would be that people having a php 5.3 machine on their pc are the only one who are allowed to update the dependencies.

the ip will be set by vagrant and is accessible in the private network of your pc only (and is changeable, too: https://github.com/Ma27/cmf-sandbox/blob/vagrant-box/vagrant-cfg/common.yaml#L16

what do you mean with "do we need all these files"? I'm not sure whether I understood you right, but do you mean writing a script that downloads the environment automatically and does all the stuff automaticall.

@fpletz
Copy link

fpletz commented Aug 4, 2015

As one of the developers of wasted I'm not sure if you really want to use the full wasted stack here. IMHO it would make more sense to rip out the puppet classes that are needed because wasted supports much more stuff than needed for this project.

The idea behind wasted is to have a quick way to bootstrap and create a vagrant development environment for new or existing projects for our customers with all possible use cases, i.e. nodejs, Oracle Instantclient. That's why you can find all kinds of commented out examples in the Hiera YAML files, which act as a simple documentation.

But in this case all the functionality in the form of puppet manifests and the hiera configuration is too much cruft IMHO. If you keep the directory structure (but delete not needed files), even fixes from wasted could be cherry-picked and subtree-merged if needed.

The developers of this project need to decide which way to go. We will definitely continue to maintain wasted.

@Ma27
Copy link
Author

Ma27 commented Aug 4, 2015

thank you @fpletz for your reply.

so you suggest to remove not necessary files, don't you? I think I'll have time for that at the next slackday.
But one question (since I'm no such git expert): how to update? when using "git subtree update" it is no problem, but we change the working tree of the subtree when removing not needed files, don't we? This would cause issues when trying to update, right? So what would be the best strategy to update?

@dbu
Copy link
Member

dbu commented Aug 5, 2015 via email

@Ma27
Copy link
Author

Ma27 commented Aug 5, 2015

what do you mean with "customize the files"?

@@ -0,0 +1,26 @@
class jackrabbit(
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the actual reason of this module was to separate the jackrabbit-specific code, but now I've solved the jackrabbit issues using the shell provisioner and that's just something like an initializer (comparable to the behavior of the cmf::infrastructure::phpcr::mysql_wrapper, so it should be moved there.

@Ma27
Copy link
Author

Ma27 commented Oct 15, 2015

squashed everything, should be ready to review

/cc @ElectricMaxxx @dbu

@Ma27
Copy link
Author

Ma27 commented Oct 15, 2015

I would like to figure it out whether there's a better solution for my export hack

@Ma27 Ma27 changed the title [WIP] Create a new vagrant environment [Ready to review/merge] Create a new vagrant environment Oct 20, 2015
@Ma27
Copy link
Author

Ma27 commented Oct 24, 2015

ping @dbu @ElectricMaxxx

@lsmith77
Copy link
Member

lsmith77 commented Nov 4, 2015

can you rebase once more?

@Ma27
Copy link
Author

Ma27 commented Nov 4, 2015

I'll rebase tonight

- vagrant with an ubuntu trusty
- stack with customizable parameters (hostname/ip/php version)
- support for the jackrabbit and doctrine-dbal implementations of jackalope
@Ma27
Copy link
Author

Ma27 commented Nov 4, 2015

@lsmith77 ok, rebased master

@Ma27
Copy link
Author

Ma27 commented Nov 6, 2015

ping @lsmith77

@lsmith77
Copy link
Member

lsmith77 commented Nov 6, 2015

it would be good if by default after vagrant ssh I would end up in /var/www/cmf.
also I am not sure what the hostname is .. from looking at common.yaml I thought its cmf.dev but host master adds symfony-cmf into my /etc/hosts.

@dbu
Copy link
Member

dbu commented Nov 6, 2015 via email

@Ma27
Copy link
Author

Ma27 commented Nov 6, 2015

ok, I'll fix that...

@Ma27
Copy link
Author

Ma27 commented Nov 6, 2015

@lsmith77 the vhost name is located in the common.yaml, for parameters for the VM are located in the "vagrant/machine.yaml", but I'll find a solution for that.

@lsmith77
Copy link
Member

lsmith77 commented Nov 6, 2015

hmm something isn't quite working yet for me .. I end up with a white page and I see nothing come up in the dev/prod logs nor in the error.log

@Ma27
Copy link
Author

Ma27 commented Nov 6, 2015

could you please show me the log output shown when running "vagrant up"?

@Ma27
Copy link
Author

Ma27 commented Dec 8, 2015

ping @lsmith77 could you please show me the output log when running vagrant up?

@lsmith77
Copy link
Member

looks like there are some issues with DB creation

lsmith@pooteeweet cmf-sandbox (detached*)*$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'ubuntu/trusty64' is up to date...
==> default: A newer version of the box 'ubuntu/trusty64' is available! You currently
==> default: have version '20151104.0.0'. The latest is version '20151217.0.0'. Run
==> default: `vagrant box update` to update.
==> default: Clearing any previously set forwarded ports...
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 22 => 2222 (adapter 1)
==> default: Running 'pre-boot' VM customizations...
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: Warning: Connection timeout. Retrying...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
    default: The guest additions on this VM do not match the installed version of
    default: VirtualBox! In most cases this is fine, but in rare cases it can
    default: prevent things such as shared folders from working properly. If you see
    default: shared folder errors, please make sure the guest additions within the
    default: virtual machine match the version of VirtualBox you have installed on
    default: your host and reload your VM.
    default:
    default: Guest Additions Version: 4.3.10
    default: VirtualBox Version: 5.0
==> default: Checking for host entries
==> default: adding to (/etc/hosts) : 192.168.66.211  cmf.dev  # VAGRANT: 63857a1d0db25d3a365f5a5017817938 (default) / 4c6db2df-41f1-4401-82b7-b5562acd8d39
Password:
==> default: Setting hostname...
==> default: Configuring and enabling network interfaces...
==> default: Exporting NFS shared folders...
==> default: Preparing to edit /etc/exports. Administrator privileges will be required...
==> default: Mounting NFS shared folders...
==> default: Mounting shared folders...
    default: /tmp/vagrant-puppet/modules-06be39e4969a24ae1fe499107a2b8daa => /Users/lsmith/htdocs/cmf-sandbox/vagrant/puppet
    default: /tmp/vagrant-puppet/manifests-00a28150b4e8ae487ef7b222bc4d679b => /Users/lsmith/htdocs/cmf-sandbox/vagrant/manifests
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
lsmith@pooteeweet cmf-sandbox (detached*)*$ vagrant provision
==> default: Running provisioner: shell...
    default: Running: /var/folders/gh/9_bf2knj7cjdbl0bw_qg_5vr0000gn/T/vagrant-shell20151225-16577-g8a2n5.sh
==> default: stdin: is not a tty
==> default: Get:1 http://ppa.launchpad.net trusty InRelease [15.4 kB]
==> default: Ign http://archive.ubuntu.com trusty InRelease
==> default: Get:2 http://archive.ubuntu.com trusty-updates InRelease [64.4 kB]
==> default: Get:3 http://ppa.launchpad.net trusty/main amd64 Packages [20.2 kB]
==> default: Get:4 http://security.ubuntu.com trusty-security InRelease [64.4 kB]
==> default: Hit http://archive.ubuntu.com trusty Release.gpg
==> default: Get:5 http://ppa.launchpad.net trusty/main Translation-en [13.5 kB]
==> default: Get:6 http://archive.ubuntu.com trusty-updates/main Sources [246 kB]
==> default: Get:7 http://archive.ubuntu.com trusty-updates/universe Sources [145 kB]
==> default: Get:8 http://archive.ubuntu.com trusty-updates/main amd64 Packages [678 kB]
==> default: Get:9 http://archive.ubuntu.com trusty-updates/universe amd64 Packages [332 kB]
==> default: Get:10 http://security.ubuntu.com trusty-security/main Sources [101 kB]
==> default: Get:11 http://archive.ubuntu.com trusty-updates/main Translation-en [340 kB]
==> default: Get:12 http://archive.ubuntu.com trusty-updates/universe Translation-en [174 kB]
==> default: Hit http://archive.ubuntu.com trusty Release
==> default: Hit http://archive.ubuntu.com trusty/main Sources
==> default: Get:13 http://security.ubuntu.com trusty-security/universe Sources [31.9 kB]
==> default: Hit http://archive.ubuntu.com trusty/universe Sources
==> default: Hit http://archive.ubuntu.com trusty/main amd64 Packages
==> default: Get:14 http://security.ubuntu.com trusty-security/main amd64 Packages [396 kB]
==> default: Hit http://archive.ubuntu.com trusty/universe amd64 Packages
==> default: Hit http://archive.ubuntu.com trusty/main Translation-en
==> default: Hit http://archive.ubuntu.com trusty/universe Translation-en
==> default: Ign http://archive.ubuntu.com trusty/main Translation-en_US
==> default: Ign http://archive.ubuntu.com trusty/universe Translation-en_US
==> default: Get:15 http://security.ubuntu.com trusty-security/universe amd64 Packages [122 kB]
==> default: Get:16 http://security.ubuntu.com trusty-security/main Translation-en [218 kB]
==> default: Get:17 http://security.ubuntu.com trusty-security/universe Translation-en [71.1 kB]
==> default: Fetched 3,034 kB in 4s (662 kB/s)
==> default: Reading package lists...
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── puppetlabs-stdlib (v4.10.0)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── puppetlabs-apt (v2.2.1)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── puppetlabs-mysql (v3.6.2)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── puppetlabs-gcc (v0.3.0)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── puppetlabs-java (v1.4.3)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── example42-puppi (v2.1.12)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── example42-apache (v2.1.12)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── example42-php (v2.0.25)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── willdurand-composer (v1.1.1)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── maestrodev-wget (v1.7.1)
==> default: Notice: Preparing to install into /etc/puppet/modules ...
==> default: Notice: Downloading from https://forge.puppetlabs.com ...
==> default: Notice: Installing -- do not interrupt ...
==> default: /etc/puppet/modules
==> default: └── ripienaar-concat (v0.2.0)
==> default: Running provisioner: puppet...
==> default: Running Puppet with site.pp...
==> default: stdin: is not a tty
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_update_last_success.rb
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_updates.rb
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_reboot_required.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/puppi_projects.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/windows_common_appdata.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/last_run.rb
==> default: Info: Loading facts in /etc/puppet/modules/php/lib/facter/php_fact_extension_dir.rb
==> default: Info: Loading facts in /etc/puppet/modules/php/lib/facter/php_fact_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/package_provider.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/pe_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/root_home.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/service_provider.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
==> default: Info: Loading facts in /etc/puppet/modules/mysql/lib/facter/mysql_server_id.rb
==> default: Info: Loading facts in /etc/puppet/modules/mysql/lib/facter/mysql_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_major_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_patch_level.rb
==> default: Info: Loading facts in /etc/puppet/modules/concat/lib/facter/concat_basedir.rb
==> default: Notice: Compiled catalog for cmf.dev in environment production in 1.86 seconds
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_update_last_success.rb
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_updates.rb
==> default: Info: Loading facts in /etc/puppet/modules/apt/lib/facter/apt_reboot_required.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/puppi_projects.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/windows_common_appdata.rb
==> default: Info: Loading facts in /etc/puppet/modules/puppi/lib/facter/last_run.rb
==> default: Info: Loading facts in /etc/puppet/modules/php/lib/facter/php_fact_extension_dir.rb
==> default: Info: Loading facts in /etc/puppet/modules/php/lib/facter/php_fact_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/package_provider.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/pe_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/root_home.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/service_provider.rb
==> default: Info: Loading facts in /etc/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
==> default: Info: Loading facts in /etc/puppet/modules/mysql/lib/facter/mysql_server_id.rb
==> default: Info: Loading facts in /etc/puppet/modules/mysql/lib/facter/mysql_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_major_version.rb
==> default: Info: Loading facts in /etc/puppet/modules/java/lib/facter/java_patch_level.rb
==> default: Info: Loading facts in /etc/puppet/modules/concat/lib/facter/concat_basedir.rb
==> default: Info: Applying configuration version '1451061242'
==> default: Info: FileBucket got a duplicate file {md5}661cbda045d7ca53514bad0c649d9dba
==> default: Info: /Stage[main]/Cmf::Infrastructure::Phpcr/File[/var/www/cmf/app/config/phpcr.yml]: Filebucketed /var/www/cmf/app/config/phpcr.yml to puppet with sum 661cbda045d7ca53514bad0c649d9dba
==> default: Notice: /Stage[main]/Cmf::Infrastructure::Phpcr/File[/var/www/cmf/app/config/phpcr.yml]/content: content changed '{md5}661cbda045d7ca53514bad0c649d9dba' to '{md5}8ded9d3ab9aa8981f5591bc7fc3941f9'
==> default: Notice: /Stage[main]/Composer/Exec[composer-update]/returns: executed successfully
==> default: Notice: /Stage[main]/Cmf::Application::Php/Exec[php::apt-get-upgrade]/returns: executed successfully
==> default: Info: FileBucket got a duplicate file {md5}0363232bd889c016ffc9c237ed4023e1
==> default: Info: /Stage[main]/Cmf::Application::Parameters/File[/var/www/cmf/app/config/parameters.yml]: Filebucketed /var/www/cmf/app/config/parameters.yml to puppet with sum 0363232bd889c016ffc9c237ed4023e1
==> default: Notice: /Stage[main]/Cmf::Application::Parameters/File[/var/www/cmf/app/config/parameters.yml]/content: content changed '{md5}0363232bd889c016ffc9c237ed4023e1' to '{md5}78dfce04198f61cd5638fc1c0dcfbf0c'
==> default: Notice: Finished catalog run in 258.58 seconds
==> default: Running provisioner: shell...
    default: Running: /var/folders/gh/9_bf2knj7cjdbl0bw_qg_5vr0000gn/T/vagrant-shell20151225-16577-1rj21ms.sh
==> default: stdin: is not a tty
==> default: You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
==> default: Loading composer repositories with package information
==> default: Installing dependencies (including require-dev) from lock file
==> default: Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. Run update to update them.
==> default: Nothing to install or update
==> default: Package sonata-project/jquery-bundle is abandoned, you should avoid using it. No replacement was suggested.
==> default: Generating autoload files
==> default: > Incenteev\ParameterHandler\ScriptHandler::buildParameters
==> default: Updating the "app/config/parameters.yml" file
==> default: Updating the "app/config/phpcr.yml" file
==> default: > WillemJan\CheckBundles\Composer\CheckBundles::postPackageUpdate
==> default: Checking for bundles that are installed with composer, but not activated in AppKernel
==> default: No inactive bundles found
==> default: > Symfony\Cmf\Bundle\CreateBundle\Composer\ScriptHandler::downloadCreateAndCkeditor
==> default: Download or update create
==> default: Download or update ckeditor
==> default: From https://github.com/ckeditor/ckeditor-releases
==> default:    a84a972..6b2514e  4.5.x      -> origin/4.5.x
==> default:    459ad55..8d284b6  basic/4.5.x -> origin/basic/4.5.x
==> default:    459ad55..8d284b6  basic/latest -> origin/basic/latest
==> default:    459ad55..8d284b6  basic/stable -> origin/basic/stable
==> default:    b29d2db..c1cefe7  full/4.5.x -> origin/full/4.5.x
==> default:    b29d2db..c1cefe7  full/latest -> origin/full/latest
==> default:    b29d2db..c1cefe7  full/stable -> origin/full/stable
==> default:    a84a972..6b2514e  latest     -> origin/latest
==> default:    a84a972..6b2514e  master     -> origin/master
==> default:    a84a972..6b2514e  stable     -> origin/stable
==> default:    9f699a3..3090390  standard/4.5.x -> origin/standard/4.5.x
==> default:    9f699a3..3090390  standard/latest -> origin/standard/latest
==> default:    9f699a3..3090390  standard/stable -> origin/standard/stable
==> default:  * [new tag]         4.5.6      -> 4.5.6
==> default:  * [new tag]         basic/4.5.6 -> basic/4.5.6
==> default:  * [new tag]         full/4.5.6 -> full/4.5.6
==> default:  * [new tag]         standard/4.5.6 -> standard/4.5.6
==> default:  * [new tag]         4.5.5      -> 4.5.5
==> default:  * [new tag]         basic/4.5.5 -> basic/4.5.5
==> default:  * [new tag]         full/4.5.5 -> full/4.5.5
==> default:  * [new tag]         standard/4.5.5 -> standard/4.5.5
==> default: > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::buildBootstrap
==> default: > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache
==> default: Clearing the cache for the dev environment with debug true
==> default: > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installAssets
==> default: Installing assets as hard copies.
==> default: Installing assets for Symfony\Bundle\FrameworkBundle into web/bundles/framework
==> default: Installing assets for Symfony\Cmf\Bundle\TreeBrowserBundle into web/bundles/cmftreebrowser
==> default: Installing assets for FM\ElfinderBundle into web/bundles/fmelfinder
==> default: Installing assets for Symfony\Cmf\Bundle\CreateBundle into web/bundles/cmfcreate
==> default: Installing assets for Sonata\jQueryBundle into web/bundles/sonatajquery
==> default: Installing assets for Sonata\CoreBundle into web/bundles/sonatacore
==> default: Installing assets for Sonata\AdminBundle into web/bundles/sonataadmin
==> default: Installing assets for FOS\JsRoutingBundle into web/bundles/fosjsrouting
==> default: Installing assets for AppBundle into web/bundles/app
==> default: Installing assets for Sensio\Bundle\DistributionBundle into web/bundles/sensiodistribution
==> default: > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::installRequirementsFile
==> default: Could not create database `cmf-database` for connection named default
==> default: An exception occurred while executing 'CREATE DATABASE `cmf-database`':
==> default:
==> default: SQLSTATE[HY000]: General error: 1007 Can't create database 'cmf-database'; database exists
==> default: ATTENTION: This operation should not be executed in a production environment.
==> default:
==> default:   [Doctrine\DBAL\Exception\TableExistsException]
==> default:   An exception occurred while executing 'CREATE TABLE phpcr_namespaces (prefix VARCHAR(255) NOT NULL, uri VARCHAR(255) NOT NULL, PRIMARY KEY(prefix)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB':
==> default:   SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'phpcr_namespaces' already exists
==> default:
==> default:
==> default:   [Doctrine\DBAL\Driver\PDOException]
==> default:   SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'phpcr_namespaces' already exists
==> default:
==> default:
==> default:   [PDOException]
==> default:   SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'phpcr_namespaces' already exists
==> default:
==> default:
==> default:
==> default: doctrine:phpcr:init:dbal [--force] [--dump-sql] [--drop] [--session [SESSION]]
==> default: This repository already has a workspace called "default"
==> default:
==> default: Successfully registered system node types.
==> default: Executing initializer: CmfRoutingBundle
==> default: Executing initializer: CmfMenuBundle
==> default: Executing initializer: CmfContentBundle
==> default: Executing initializer: CmfBlockBundle
==> default: Executing initializer: CmfSimpleCmsBundle Homepage
==> default: Executing initializer: CmfMediaBundle
==> default: Executing initializer: CmfRoutingAutoBundle
==> default:   > purging database
==> default:   > Executing initializer: CmfRoutingBundle
==> default:   > Executing initializer: CmfMenuBundle
==> default:   > Executing initializer: CmfContentBundle
==> default:   > Executing initializer: CmfBlockBundle
==> default:   > Executing initializer: CmfSimpleCmsBundle Homepage
==> default:   > Executing initializer: CmfMediaBundle
==> default:   > Executing initializer: CmfRoutingAutoBundle
==> default:   > loading [5] AppBundle\DataFixtures\PHPCR\LoadStaticPageData
==> default:   > loading [21] AppBundle\DataFixtures\PHPCR\LoadRoutingData
==> default:   > loading [50] AppBundle\DataFixtures\PHPCR\LoadNewsData
==> default:   > loading [50] AppBundle\DataFixtures\PHPCR\LoadSimpleCmsData
==> default:   > loading [60] AppBundle\DataFixtures\PHPCR\LoadMenuData
==> default: Dumping all dev assets.
==> default: Debug mode is on.
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_elfinder.min_1.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_jquery-ui-1.8.21.custom_2.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_theme_3.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_jquery-1.8.0.min_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_jquery-ui-1.8.23.custom.min_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_elfinder.min_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.LANG_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ar_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.bg_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ca_4.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.cs_5.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.de_6.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.el_7.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.es_8.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.fa_9.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.fr_10.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.hu_11.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.it_12.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.jp_13.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ko_14.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.nl_15.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.no_16.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.pl_17.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.pt_BR_18.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ru_19.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sk_20.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sl_21.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sv_22.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.tr_23.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.vi_24.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.zh_CN_25.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.zh_TW_26.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_jquery-1.8.0.min_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_jquery-ui-1.8.23.custom.min_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_elfinder.min_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.LANG_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.ar_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.bg_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.ca_4.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.cs_5.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.de_6.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.el_7.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.es_8.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.fa_9.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.fr_10.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.hu_11.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.it_12.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.jp_13.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.ko_14.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.nl_15.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.no_16.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.pl_17.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.pt_BR_18.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.ru_19.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.sk_20.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.sl_21.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.sv_22.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.tr_23.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.vi_24.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.zh_CN_25.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/bundles/fmelfinder/js/main_part_4_elfinder.zh_TW_26.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_elfinder.min_1.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_jquery-ui-1.8.21.custom_2.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/css/compiled/fmelfinder/main_part_1_theme_3.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_jquery-1.8.0.min_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_jquery-ui-1.8.23.custom.min_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_elfinder.min_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.LANG_1.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ar_2.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.bg_3.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ca_4.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.cs_5.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.de_6.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.el_7.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.es_8.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.fa_9.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.fr_10.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.hu_11.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.it_12.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.jp_13.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ko_14.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.nl_15.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.no_16.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.pl_17.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.pt_BR_18.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.ru_19.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sk_20.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sl_21.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.sv_22.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.tr_23.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.vi_24.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.zh_CN_25.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/assetic/js/compiled/fmelfinder/main_part_4_elfinder.zh_TW_26.js
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_tags_1.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_create-ui_2.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_font-awesome_3.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_midgardnotif_4.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_halloCmfStyle_5.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_createStyle_6.css
==> default: 16:39:50 [file+] /var/www/cmf/app/../web/css/06935bc_overlay_7.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/ckeditor.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/ckeditor_ckeditor_1.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/ckeditor_init-create-ckeditor_2.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/ckeditor_init-create-common_3.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_jquery_1.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_jquery-ui_2.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_underscore_3.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_backbone_4.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_rangy-core_5.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_vie_6.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_jquery.rdfquery.core_7.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_jquery.rdfquery.rules_8.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_jquery.tagsinput_9.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_annotate_10.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/create_create_11.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/hallo-extra.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/hallo-extra_jquery.htmlClean_1.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/hallo-extra_hallo_2.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/hallo-extra_init-create-hallo_3.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/hallo-extra_init-create-common_4.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/41a6328.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/41a6328_sonata_admin_1.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/5f21071.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/5f21071_bootstrap.min_1.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/5f21071_bootstrap-responsive.min_2.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/css/5f21071_style_3.css
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/48837d7.js
==> default: 16:39:51 [file+] /var/www/cmf/app/../web/js/48837d7_rawdata_1.js
==> default: Site 000-default already disabled
==> default:  * Reloading web server apache2
==> default:  *
lsmith@pooteeweet cmf-sandbox (detached*)*$ vagrant ssh
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-67-generic x86_64)

 * Documentation:  https://help.ubuntu.com/

  System information as of Fri Dec 25 16:33:19 UTC 2015

  System load:  0.27              Processes:           86
  Usage of /:   3.7% of 39.34GB   Users logged in:     0
  Memory usage: 17%               IP address for eth0: 10.0.2.15
  Swap usage:   0%                IP address for eth1: 192.168.66.211

  Graph this data and manage this system at:
    https://landscape.canonical.com/

  Get cloud support with Ubuntu Advantage Cloud Guest:
    http://www.ubuntu.com/business/services/cloud

17 packages can be updated.
2 updates are security updates.


Last login: Fri Nov  6 22:03:05 2015 from 10.0.2.2
vagrant@cmf:/var/www/cmf$ tail -f /var/log/apache2/error.log
tail: cannot open ‘/var/log/apache2/error.log’ for reading: Permission denied
vagrant@cmf:/var/www/cmf$ sudo !!
sudo tail -f /var/log/apache2/error.log
[Fri Nov 06 21:59:45.671058 2015] [core:notice] [pid 17835] AH00094: Command line: '/usr/sbin/apache2'
[Fri Nov 06 22:05:38.491448 2015] [mpm_prefork:notice] [pid 17835] AH00173: SIGHUP received.  Attempting to restart
[Fri Nov 06 22:05:38.537797 2015] [mpm_prefork:notice] [pid 17835] AH00163: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Fri Nov 06 22:05:38.537826 2015] [core:notice] [pid 17835] AH00094: Command line: '/usr/sbin/apache2'
[Sat Nov 07 11:39:55.234777 2015] [mpm_prefork:notice] [pid 17835] AH00169: caught SIGTERM, shutting down
[Fri Dec 25 16:32:36.693297 2015] [mpm_prefork:notice] [pid 1207] AH00163: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Fri Dec 25 16:32:36.693844 2015] [core:notice] [pid 1207] AH00094: Command line: '/usr/sbin/apache2'
[Fri Dec 25 16:39:51.989783 2015] [mpm_prefork:notice] [pid 1207] AH00171: Graceful restart requested, doing restart
[Fri Dec 25 16:39:52.131098 2015] [mpm_prefork:notice] [pid 1207] AH00163: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Fri Dec 25 16:39:52.131121 2015] [core:notice] [pid 1207] AH00094: Command line: '/usr/sbin/apache2'
:q
^Cvagrant@cmf:/var/www/cmf$ sudo tail -f /var/log/apache2/access.log
::1 - - [06/Nov/2015:21:59:45 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) (internal dummy connection)"
::1 - - [06/Nov/2015:21:59:45 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) (internal dummy connection)"
::1 - - [06/Nov/2015:21:59:45 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) (internal dummy connection)"
::1 - - [06/Nov/2015:21:59:45 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) (internal dummy connection)"
::1 - - [06/Nov/2015:21:59:45 +0000] "OPTIONS * HTTP/1.0" 200 125 "-" "Apache/2.4.7 (Ubuntu) (internal dummy connection)"

@Ma27
Copy link
Author

Ma27 commented Dec 25, 2015

thx for your error report.

This error occurs if you run vagrant provision/up multiple times as the database exist after some installs already (must be fixed before merging).
I have to find some more time for that and then you can have a look at it again.

@Ma27
Copy link
Author

Ma27 commented Oct 11, 2016

closing because of #344

@Ma27 Ma27 closed this Oct 11, 2016
@lsmith77 lsmith77 removed the wip/poc label Oct 11, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants