Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
mxq
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
3
Code
Issues
20
Pull requests
3
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
3732792
helper
manpages
mysql
web
.gitignore
.vimrc
Doxyfile
LICENSE
Makefile
README.md
keywordset.c
keywordset.h
mx_flock.c
mx_flock.h
mx_getopt.c
mx_getopt.h
mx_log.c
mx_log.h
mx_mysql.c
mx_mysql.h
mx_proc.c
mx_proc.h
mx_util.c
mx_util.h
mxq.h
mxq_daemon.c
mxq_daemon.h
mxq_group.c
mxq_group.h
mxq_job.c
mxq_job.h
mxq_log.c
mxq_reaper.c
mxqadmin.c
mxqd.c
mxqd.h
mxqd_control.c
mxqd_control.h
mxqdctl-hostconfig.sh
mxqdump.c
mxqkill.c
mxqps.c
mxqset.c
mxqsub.c
os-release
parser.y
ppidcache.c
ppidcache.h
test_keywordset.c
test_mx_log.c
test_mx_mysql.c
test_mx_util.c
test_mxqd_control.c
test_parser.c
xmalloc.h
Breadcrumbs
mxq
/
README.md
Blame
Blame
Latest commit
History
History
69 lines (56 loc) · 1.99 KB
Breadcrumbs
mxq
/
README.md
Top
File metadata and controls
Preview
Code
Blame
69 lines (56 loc) · 1.99 KB
Raw
# MXQ - mariux64 job scheduling system - by Marius Tolzmann <marius.tolzmann@molgen.mpg.de> 2013-2015 - and Donald Buczek <buczek@molgen.mpg.de> 2015-2016 ## Sources ### Main git repository https://github.molgen.mpg.de/mariux64/mxq ### github.com clone https://github.com/mariux/mxq ## Installation ### Install using `GNU make` ``` make install ``` or to specify a prefix: ``` make PREFIX=... [DESTDIR=...] install ``` ### Install using `bee` ``` bee init $(bee download git://github.molgen.mpg.de/mariux64/mxq.git) --execute bee update mxq ``` or to specify a prefix ``` bee init $(bee download git://github.molgen.mpg.de/mariux64/mxq.git) --prefix=... --execute bee update mxq ``` ## Initial setup Definitions of the tables for the MySQL database can be found in [mysql/create_tables.sql](https://github.molgen.mpg.de/mariux64/mxq/blob/master/mysql/create_tables.sql) and [mysql/create_trigger.sql](https://github.molgen.mpg.de/mariux64/mxq/blob/master/mysql/create_trigger.sql) Be sure to create those once and check the same [directory for alter_tables*.sql`](https://github.molgen.mpg.de/mariux64/mxq/blob/master/mysql/) files when upgrading. ``` mysql [options] [database] <mysql/create_tables.sql mysql [options] [database] <mysql/create_trigger.sql ``` ## Development builds The `devel` target in the Makefile will enable all devolopment features by defining `MXQ_DEVELOPMENT` when compiling C sources. ``` make clean make devel PREFIX=/path/to/test make install PREFIX=/path/to/test ``` ### Differences to production builds Some new features and improvements are enabled in development builds. Those features may not be tested for every situation yet and may result in database corruption and/or failing jobs. #### changed `mxqd` default options In devolopment builds `--no-log` is default (enable logging with `--log`) #### Development database access Devolopment builds default to use `[mxqdevel]` groups from mysql config files for servers and clients (instead of the default `[mxqclient]` and `[mxqd]` groups)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
You can’t perform that action at this time.