0d85ae6603
Changed data directory to /var/lib/maxscale.
2015-05-22 11:31:22 +03:00
6d9765f736
Added copying of old configuration files to new directories.
2015-05-21 15:22:18 +03:00
e794c0953c
Added systemd script installation
2015-05-19 18:17:42 +03:00
a6701ee786
Added missing newline to usage output.
2015-05-14 15:42:49 +03:00
b41130b533
Fixed the useradd command in the postinst script having he command line arguments in the wrong order.
2015-05-12 08:11:10 +03:00
3fcc1778bb
Added changing of directory ownership.
2015-05-12 06:43:36 +03:00
2b457bf372
Updated init.d and systemd scripts.
2015-05-11 06:19:06 +03:00
63060d1233
Added possibility to run as non-root user.
2015-05-10 06:27:41 +03:00
fb8359b5ca
Fixed missing installation of init.d and ldconfig files.
2015-05-06 12:34:10 +03:00
416ffea9b7
Changed errmsg.sys installation location to /var/lib/maxscale
2015-04-30 10:37:06 +03:00
c035f4b8b7
Removed current directory from the module search path.
2015-04-29 07:03:05 +03:00
5394b4d0fa
Changed standard installation directory from /usr/local/mariadb-maxscale to /usr/local.
2015-04-29 05:42:58 +03:00
3501ffb689
Updated documentation
2015-04-28 16:39:52 +03:00
71531cde3e
Updated package installation and started documentation update.
2015-04-28 11:09:49 +03:00
e681d18fdd
Split packaging to RPM and DEB cmake files.
2015-04-27 23:11:49 +03:00
9e0a2bfc12
Changed relevant files to use get_cachedir() instead of using the now deprecated MAXSCALE_HOME.
2015-04-27 21:55:57 +03:00
1cc6ced505
Updated old references to MAXSCALE_HOME
2015-04-27 15:06:45 +03:00
55249193a9
Updated post-install scripts and binlogrouter
...
Binlogrouter: Switched hard-coded maximum path values to PATH_MAX and used cache directory instead of MAXSCALE_HOME
Scripts: Updated with new executable file paths
2015-04-27 14:47:26 +03:00
bbcecc0db5
Changed all MaxScale.cnf code references to maxscale.cnf
2015-04-27 13:44:36 +03:00
0cfcad55da
Moved get_libdir function to its own file.
2015-04-27 11:06:11 +03:00
2fce114483
Added missing buffer.c from fullcore static lib.
2015-04-27 10:18:43 +03:00
97653e98fa
Fixed a typo in the core CMakeLists.txt
2015-04-27 10:16:01 +03:00
d5682bf7c0
Removed file globbing in the core CMake file and used explicit names instead.
2015-04-27 10:14:14 +03:00
41ddc6fbfd
Switched over to gwbuf_clone_portion in modutils_get_complete_packets.
...
Conflicts:
server/core/modutil.c
2015-04-27 09:45:11 +03:00
49907ffdea
Added optional jemalloc linkage.
2015-04-27 05:57:16 +03:00
9eeec2e9d3
Added FindJemalloc.cmake
2015-04-27 04:52:29 +03:00
c500d23d04
Moved default file search paths to gwdirs.h which is configured by CMake from gwdirs.h.in.
2015-04-27 04:48:50 +03:00
17a7b2addb
Updated more variables.
2015-04-26 20:08:27 +03:00
10e9203b5b
Updated postinst script
2015-04-26 11:39:00 +03:00
ed426ca30d
Updated packaging install layout, moved some cmake files around.
2015-04-26 06:35:36 +03:00
df9bc65430
Added variables that are used when installing instead of relative paths.
2015-04-25 18:35:47 +03:00
eec053924c
Updated various MaxScale command line and configuration options to allow custom log, module, data, cache and language directories.
2015-04-24 22:11:49 +03:00
45c3b453ec
Changed PID file to /data instead of /log
2015-04-24 17:47:30 +03:00
b62f7f942b
modutil_get_complete_packets now partially clones the buffer instead of allocating a new one.
2015-04-24 17:20:20 +03:00
d7b665b867
Removed obsolete log directory in MAXSCALE_HOME.
2015-04-24 17:19:33 +03:00
58e85098f9
Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop
2015-04-24 17:18:48 +03:00
c89c704705
MXS-117: https://mariadb.atlassian.net/browse/MXS-117
...
Added command line and configuration file options for controlling the log directory. The default log directory is now /var/log/maxscale/.
2015-04-24 17:15:28 +03:00
e7cdf4d8ef
Merge pull request #78 from sjmudd/develop
...
Make MaxScale handle zero-length files to aid bootstrapping.
2015-04-24 07:08:43 +03:00
89cae0e35b
Added README.md and updated schemarouter documentation.
2015-04-24 06:19:50 +03:00
327f22a0dc
Added the release number into the maxscale version macro in macros.cmake and used it in CPack configuration.
2015-04-24 06:04:46 +03:00
21ad6fba2a
Added option to disable slave recovery in readwritesplit.
2015-04-24 05:55:06 +03:00
087e2df5a4
Make MaxScale handle zero-length files to aid bootstrapping.
...
When bootstrapping a binlog router to start it needs to know the first
file to use. You can provide this information in the config file but
that will never be up to date, or you can copy a file to the binlog
server and start maxscale. It will then carry on from the last file’s
current position.
The binlog files have a 4-byte magic prefix so to start from the beginning
(position 4) you need to add these to an empty file if you do this by
hand. If you don’t then maxscale will attempt to download from the
master at position 0 and the master will not accept this value. (This is
not apparent with a mysql client as change master to … master_log_pos
= 0 triggers a write of the 4 magic bytes and then asks the master for
information from position 4 [not 0]).
This patch makes MaxScale behave similarly and allows you to only
need to touch the first binlog file to be downloaded for it to do the
right thing.
2015-04-23 20:26:56 +02:00
7cdf32773f
Updated documentation.
2015-04-23 21:05:50 +03:00
fbfbc9fda7
Added more statistics to schemarouter diagnostics.
2015-04-23 21:00:52 +03:00
9dfc20d966
Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop
2015-04-23 20:12:57 +03:00
8d4f301545
Added the option to disable session command history to readwritesplit.
2015-04-23 20:12:04 +03:00
d1551be54f
Added support for disabling the saving of the session command history for the schemarouter.
2015-04-23 19:35:41 +03:00
d89dce4372
Added emacs mode support for maxadmin. Accepted command line switches are -e and --emacs and the .maxadmin file looks for a editor=vi|emacs parameter.
2015-04-23 19:34:41 +03:00
e148efe8ca
Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop
2015-04-23 15:38:34 +02:00
b3745eba3e
Logging to file message update
...
Logging to file message update
2015-04-23 14:44:56 +02:00