CUBRID Manager Server(CMS) is a part of CUBRID Tools.
CMS provides both HTTP or Socket interfaces for CUBRID Manager to managing CUBRID system, and also provides monitoring information about CUBRID system.
- CUBRID Official Site: http://www.cubrid.org and http://www.cubrid.com
CMS is distributed within CUBRID distribution which can be found here:
Unzip the package of CUBRID and you can find the source code of CMS here: cubrid-{version}/cubridmanager/server.
-
Move to the directory where the source is stored.
cd $HOME/cubridmanager/server
-
Execute autogen.sh.
./autogen.sh
-
Execute the configure script.
./configure --prefix=$CUBRID
--prefix=$CUBRID
: It specifies a directory to be installed.--enable-debug
: Used to enable debug mode.--enable-64bit
: Used to build in a 64-bit environment since supporting 64-bit from CUBRID 2008 R2.0 or higher.
-
Build by using make.
make
-
Install by using make install.
make install
If you want to build CMS on windows, VS2008 must be installed.
-
Open a commander "cmd.exe" and Move to the directory where the source is stored.
cd %CUBRID-SRC%/cubridmanager/server
-
Execute the build batche file
cmd /c build.bat --prefix=%CUBRID% --with-cubrid-dir=%CUBRID%
--prefix=%CUBRID%
: It specifies a directory to be installed.--enable-64bit
: Used to build in a 64-bit environment since supporting 64-bit from CUBRID 2008 R2.0 or higher.--with-cubrid-dir=%CUBRID%
: Option specifies the directory CUBRID is installed.
If You encounter any difficulties with getting started, or just have some questions, or find bugs, or have some suggestions, we kindly ask you to post your thoughts on our subreddit at https://www.reddit.com/r/CUBRID/.
Sincerely, Your CMS Development Team.