Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
devstack
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
devstack
Commits
94171f1b
Commit
94171f1b
authored
May 24, 2017
by
Vedran Karacic
Committed by
Vedran Karačić
Jun 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Common issues section to README.
parent
b29c81fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
README.rst
+42
-0
No files found.
README.rst
View file @
94171f1b
...
@@ -271,3 +271,45 @@ all containers, networks, AND data volumes.
...
@@ -271,3 +271,45 @@ all containers, networks, AND data volumes.
.. |Build Status| image:: https://travis-ci.org/edx/devstack.svg?branch=master
.. |Build Status| image:: https://travis-ci.org/edx/devstack.svg?branch=master
:target: https://travis-ci.org/edx/devstack
:target: https://travis-ci.org/edx/devstack
Common issues
-------------
File ownership change
~~~~~~~~~~~~~~~~~~~~~
If you notice that the ownership of some (maybe all) files have changed and you
need to enter your root password when editing a file, that could be because you
have pulled changes the remote repository from within a container. While running
``git pull`` git changes the owner of the files that you pull to the user that runs
that command, and within a container that is the root user, hence git operations
should be ran outside of the container.
To fix this change the owner back to yourself outside of the container by running:
.. code:: sh
$ sudo chown <user>:<group> -R .
Running LMS commands within a container
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Most of the ``paver`` commands require a settings flag, which if omitted defaults to
``devstack`` which is the settings flag for vagrant-based devstack instances. Therefor
if you run into issues running those command in a docker container you should append
the ``devstack_docker`` flag. For example:
.. code:: sh
$ paver update_assets --settings=devstack_docker
Resource busy or locked
~~~~~~~~~~~~~~~~~~~~~~~
While running ``make static`` within the ecommerce container you could get an error
saying:
Error: Error: EBUSY: resource busy or locked, rmdir '/edx/app/ecommerce/ecommerce/ecommerce/static/build/'
To fix this, remove the directory manually outside of the container and run the command again.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment