aboutsummaryrefslogtreecommitdiff
path: root/doc/README.org
diff options
context:
space:
mode:
authorzsloan2018-01-04 14:10:02 -0600
committerGitHub2018-01-04 14:10:02 -0600
commit56065c9f994c9247eaa17e5216d44d0e5e733aa2 (patch)
treec0efbb873b77eeacdc6da7edc62a934c8088eced /doc/README.org
parentf6ad049db84a83baad9bbf863244b174742380fc (diff)
parenta2325f723052ff951200020f9b072a2dd5140c01 (diff)
downloadgenenetwork2-56065c9f994c9247eaa17e5216d44d0e5e733aa2.tar.gz
Merge pull request #270 from pjotrp/testing
Merge some older commits
Diffstat (limited to 'doc/README.org')
-rw-r--r--doc/README.org26
1 files changed, 22 insertions, 4 deletions
diff --git a/doc/README.org b/doc/README.org
index a39ef603..937a9549 100644
--- a/doc/README.org
+++ b/doc/README.org
@@ -104,11 +104,29 @@ As root configure and run
: mysqld --datadir=/var/mysql --initialize-insecure
: mkdir -p /var/run/mysqld
: chown mysql.mysql ~/mysql /var/run/mysqld
-: su mysql -c mysqld --datadir=/var/mysql --explicit_defaults_for_timestamp -P 12048
+: mysqld -u mysql --datadir=/var/mysql --explicit_defaults_for_timestamp -P 12048"
-/etc/my.cnf
-[mysqld]
-user=root
+If you want to run as root you may have to set
+
+: /etc/my.cnf
+: [mysqld]
+: user=root
+
+To check error output in a file on start-up run with something like
+
+: mysqld -u mysql --console --explicit_defaults_for_timestamp --datadir=/gnu/mysql --log-error=~/test.log
+
+Other tips are that Guix installs mysqld in your profile, so this may work
+
+: /home/user/.guix-profile/bin/mysqld -u mysql --explicit_defaults_for_timestamp --datadir=/gnu/mysql
+
+When you get errors like:
+
+: qlalchemy.exc.IntegrityError: (_mysql_exceptions.IntegrityError) (1215, 'Cannot add foreign key constraint')
+
+you may need to set
+
+: set foreign_key_checks=0
** Load the small database in MySQL