Skip to content

Commit 016d772

Browse files
committed
Update for V5.0
1 parent 7a2f304 commit 016d772

File tree

1 file changed

+27
-17
lines changed

1 file changed

+27
-17
lines changed

manuals/GridDB_QuickStartGuide.md

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ In a nutshell, you can install GridDB on one machine and start / stop GridDB nod
1515
---
1616
# Using source code
1717

18-
We have confirmed the operation on CentOS 7.6 (gcc 4.8.5).
18+
We have confirmed the operation on CentOS 7.9 (gcc 4.8.5).
19+
20+
Note:
21+
- Please install Python3 in advance.
22+
- Please install tcl like "yum install tcl.x86_64" in advance.
1923

2024
## Build a server and client(Java)
2125

@@ -42,10 +46,6 @@ The following environment variables are defined.
4246
4347
#### :warning: Note
4448
- These environment variables are referenced by the operational commands shown in the following subsections.
45-
- Default building environment repeals the trigger function. Add the following option in build to enable a trigger function. Add the following option in build to enable the trigger function.
46-
```
47-
$ ./configure --enable-activemq
48-
```
4949
5050
## Environmental settings
5151
@@ -352,9 +352,10 @@ $ java gsSample/Sample1 239.0.0.1 31999 setup_cluster_name admin your_password
352352
---
353353
# Using RPM
354354
355-
We have confirmed the operation on CentOS 7.6.
355+
We have confirmed the operation on CentOS 7.9.
356356
357357
#### :warning: Note
358+
- Please install Python3 in advance.
358359
- When you install this package, a gsadm OS user are created in the OS. Execute the operating command as the gsadm user.
359360
Example
360361
```
@@ -364,13 +365,14 @@ We have confirmed the operation on CentOS 7.6.
364365
```
365366
- You do not need to set environment variable GS_HOME and GS_LOG. And the place of operating command is set to environment variable PATH.
366367
- There is Java client library (gridstore.jar) on /usr/share/java and a sample on /usr/gridb-XXX/docs/sample/programs.
368+
- If old version has been installed, please uninstall and remove conf/ and data/ on /var/lib/gridstore.
367369
368370
## Install
369371
370372
Install the package of your target OS.
371373
372374
(CentOS)
373-
$ sudo rpm -ivh griddb_nosql-X.X.X-linux.x86_64.rpm
375+
$ sudo rpm -ivh griddb-X.X.X-linux.x86_64.rpm
374376
375377
X.X.X means version
376378
@@ -401,23 +403,25 @@ The following two directories are created: GridDB home directory which contains
401403
402404
###### GridDB home directory
403405
```
404-
/var/lib/gridstore/ #GridDB home directory
406+
/var/lib/gridstore/ # GridDB home directory
405407
conf/ # Definition file directory
406-
gs_cluster.json #Cluster definition file
407-
gs_node.json #Node definition file
408-
password #User definition file
409-
data/ # Database file directory
408+
gs_cluster.json # Cluster definition file
409+
gs_node.json # Node definition file
410+
password # User definition file
411+
data/ # Data file, checkpoint log directory
412+
txnlog/ # Transaction log file directory
410413
log/ # Log directory
411414
```
412415
413416
###### Installation directory
414417
```
415418
Installation directory
416419
bin/ # Operation command, module directory
417-
conf/ #Definition file directory
420+
conf/ # Definition file directory
418421
gs_cluster.json # Custer definition file
419-
gs_node.json #Node definition file
420-
password #User definition file
422+
gs_node.json # Node definition file
423+
password # User definition file
424+
conf_multicast/ # Definition file directory (for remote connection)
421425
3rd_party/
422426
docs/
423427
manual/
@@ -430,7 +434,13 @@ Installation directory
430434
431435
## Starting/stopping
432436
433-
Operate as the gsadm user. Other than that, it is the same as "Start / Stop" in "[When using source code]".
437+
Operate as the gsadm user.
438+
439+
Default is only for local connection. So, please change the configure files as follows.
440+
441+
[gsadm]$ cp /usr/griddb-X.X.X/conf_multicast/* conf/.
442+
443+
Other than that, it is the same as "Start / Stop" in "[When using source code]".
434444
435445
## Build/execution method
436446
@@ -459,7 +469,7 @@ If you no longer need GridDB, uninstall the package. Execute the following proce
459469
[Example]
460470
461471
(CentOS)
462-
$ sudo rpm -e griddb_nosql
472+
$ sudo rpm -e griddb
463473
464474
#### :warning: Note
465475
- Files under the GridDB home directory such as definition files and data files will not be uninstalled. If you do not need it, delete it manually.

0 commit comments

Comments
 (0)