aboutsummaryrefslogtreecommitdiff
path: root/doc/README.org
diff options
context:
space:
mode:
authorPjotr Prins2017-12-20 09:11:31 -0600
committerPjotr Prins2017-12-20 09:11:31 -0600
commit837ce8b9c779b1da6e4390220ccd353b289c1fca (patch)
tree7c830e9e1fffabe8e267a3ee2ef931a559c6e690 /doc/README.org
parentd692e4f79f61691ecac7a14d0d7c7e93ead919e4 (diff)
downloadgenenetwork2-837ce8b9c779b1da6e4390220ccd353b289c1fca.tar.gz
Bring in some earlier work - mostly documentation and startup handling
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