diff options
author | Arun Isaac | 2024-03-02 03:36:50 +0000 |
---|---|---|
committer | Arun Isaac | 2024-03-02 03:46:44 +0000 |
commit | d6ca4d4ca7773a954cf147a80514c33b6870615a (patch) | |
tree | e4aa265710c8d7964028001ca2b1c3b0fc0020c5 | |
parent | 3baf150595f0b7d7061a119f1c52d1dbea328e83 (diff) | |
download | gn-machines-d6ca4d4ca7773a954cf147a80514c33b6870615a.tar.gz |
Restore default auth database path on production.
*
production.scm (operating-system)[services]{genenetwork-service-type}:
Remove auth-db field.
* production-deploy.sh (container_script): Mount /var/genenetwork.
-rwxr-xr-x | production-deploy.sh | 1 | ||||
-rw-r--r-- | production.scm | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/production-deploy.sh b/production-deploy.sh index 67c1167..d72dbac 100755 --- a/production-deploy.sh +++ b/production-deploy.sh @@ -25,6 +25,7 @@ container_script=$(guix system container \ --network \ --load-path=. \ --verbosity=3 \ + --share=/export2/guix-containers/genenetwork/var/genenetwork=/var/genenetwork \ --share=/export2/guix-containers/genenetwork/var/lib/acme=/var/lib/acme \ --share=/export2/guix-containers/genenetwork/var/lib/mysql=/var/lib/mysql \ --share=/export2/guix-containers/genenetwork/var/lib/virtuoso=/var/lib/virtuoso \ diff --git a/production.scm b/production.scm index f422b34..3115b59 100644 --- a/production.scm +++ b/production.scm @@ -65,7 +65,6 @@ (gn2-port 8892) (gn3-port 8893) (sql-uri "mysql://webqtlout:webqtlout@localhost/db_webqtl") - (auth-db "/export/data/genenetwork-sqlite/auth.db") (xapian-db "/export/data/genenetwork-xapian") (genotype-files "/export/data/genenetwork/genotype_files") (sparql-endpoint "http://localhost:8892/sparql") |