diff --git a/doc/source/installation.rst b/doc/source/installation.rst index 08272c0..106f4f4 100644 --- a/doc/source/installation.rst +++ b/doc/source/installation.rst @@ -109,6 +109,11 @@ exist and are writeable by your turbo-hipster user:: mkdir -p /var/cache/pip chown turbo-hipster:turbo-hipster /var/cache/pip +Edit MySQL's log rotate to ensure it is other writable:: + + vim /etc/logrotate.d/mysql-server + # edit create 640 to 644. + Start turbo-hipster ------------------- diff --git a/doc/source/intro.rst b/doc/source/intro.rst index c580182..d3fb16d 100644 --- a/doc/source/intro.rst +++ b/doc/source/intro.rst @@ -21,7 +21,7 @@ Typical workflow diagram ------------------------ **clearly this needs a lot of work, however I believe the structure -is mostly there...** +is mostly there... If you know graphviz please help!** .. graphviz:: diff --git a/tools/setup_software.sh b/tools/setup_software.sh index 9f9d885..dee8f86 100755 --- a/tools/setup_software.sh +++ b/tools/setup_software.sh @@ -38,3 +38,5 @@ chown turbo-hipster:turbo-hipster /var/log/turbo-hipster mysql -u root -e "create user 'nova'@'localhost' identified by 'tester';" mysql -u root -e "grant all privileges on nova.* TO 'nova'@'localhost';" + +# Fix log rotate for MySQL to be other readable. \ No newline at end of file