Created
March 31, 2017 09:34
-
-
Save jmatsushita/bfcea18fb5fe9b94a9b8ce47b4ac6d22 to your computer and use it in GitHub Desktop.
make devstack.provision
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make devstack.provision | |
./provision.sh | |
Creating network "devstack_default" with the default driver | |
Creating volume "devstack_mysql_data" with default driver | |
Creating volume "devstack_mongo_data" with default driver | |
Creating volume "devstack_elasticsearch_data" with default driver | |
Creating edx.devstack.mongo | |
Creating edx.devstack.mysql | |
Waiting for MySQL | |
........MySQL ready | |
Creating databases and users... | |
MongoDB shell version: 3.0.14 | |
connecting to: test | |
connection to 127.0.0.1 | |
[ | |
{ | |
"user" : "admin", | |
"pwd" : "password", | |
"roles" : [ | |
"root" | |
], | |
"database" : "admin" | |
}, | |
{ | |
"user" : "cs_comments_service", | |
"pwd" : "password", | |
"roles" : [ | |
"readWrite" | |
], | |
"database" : "cs_comments_service" | |
}, | |
{ | |
"user" : "edxapp", | |
"pwd" : "password", | |
"roles" : [ | |
"readWrite" | |
], | |
"database" : "edxapp" | |
} | |
] | |
Successfully added user: { "user" : "admin", "roles" : [ "root" ] } | |
Successfully added user: { "user" : "cs_comments_service", "roles" : [ "readWrite" ] } | |
Successfully added user: { "user" : "edxapp", "roles" : [ "readWrite" ] } | |
bye | |
edx.devstack.mysql is up-to-date | |
edx.devstack.mongo is up-to-date | |
Creating edx.devstack.elasticsearch | |
Creating edx.devstack.memcached | |
Creating edx.devstack.edxapp | |
Creating edx.devstack.discovery | |
Creating edx.devstack.ecommerce | |
Creating edx.devstack.credentials | |
Loading the ecommerce database... | |
Finished loading the ecommerce database! | |
Loading the edxapp database... | |
Finished loading the edxapp database! | |
Loading the edxapp_csmh database... | |
Finished loading the edxapp_csmh database! | |
---> pavelib.prereqs.install_prereqs | |
---> pavelib.prereqs.install_node_prereqs | |
Node prereqs unchanged, skipping... | |
---> pavelib.prereqs.install_python_prereqs | |
---> pavelib.prereqs.uninstall_python_packages | |
pip freeze | |
pip uninstall --disable-pip-version-check -y edxval | |
Uninstalling edxval-0.0.13: | |
Exception: | |
Traceback (most recent call last): | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/basecommand.py", line 215, in main | |
status = self.run(options, args) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/commands/uninstall.py", line 76, in run | |
requirement_set.uninstall(auto_confirm=options.yes) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/req/req_set.py", line 346, in uninstall | |
req.uninstall(auto_confirm=auto_confirm) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/req/req_install.py", line 754, in uninstall | |
paths_to_remove.remove(auto_confirm) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/req/req_uninstall.py", line 115, in remove | |
renames(path, new_path) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/pip/utils/__init__.py", line 267, in renames | |
shutil.move(old, new) | |
File "/usr/lib/python2.7/shutil.py", line 300, in move | |
rmtree(src) | |
File "/usr/lib/python2.7/shutil.py", line 256, in rmtree | |
onerror(os.rmdir, path, sys.exc_info()) | |
File "/usr/lib/python2.7/shutil.py", line 254, in rmtree | |
os.rmdir(path) | |
OSError: [Errno 39] Directory not empty: '/edx/app/edxapp/venvs/edxapp/lib/python2.7/site-packages/edxval-0.0.13-py2.7.egg-info' | |
Captured Task Output: | |
--------------------- | |
---> pavelib.prereqs.install_prereqs | |
---> pavelib.prereqs.install_node_prereqs | |
---> pavelib.prereqs.install_python_prereqs | |
---> pavelib.prereqs.uninstall_python_packages | |
pip freeze | |
pip uninstall --disable-pip-version-check -y edxval | |
Build failed running pavelib.prereqs.install_prereqs: Subprocess return code: 2 | |
Makefile:30: recipe for target 'devstack.provision' failed | |
make: *** [devstack.provision] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment