Skip to content

Commit acccca8

Browse files
committed
update Bonita and migration tool versions
1 parent 1f64b34 commit acccca8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

bonita/content.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
167167

168168
```console
169169
cd bonita_migration
170-
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.40.0.zip
170+
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.41.0.zip
171171
wget https://download.forge.ow2.org/bonita/BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
172-
unzip bonita-migration-distrib-2.40.0.zip
172+
unzip bonita-migration-distrib-2.41.0.zip
173173
unzip BonitaBPMCommunity-7.2.4-Tomcat-7.0.67.zip
174174
```
175175

@@ -184,14 +184,14 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
184184

185185
```console
186186
cd bonita_migration
187-
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.40.0.zip
188-
unzip bonita-migration-distrib-2.40.0.zip
187+
wget https://release.ow2.org/bonita/bonita-migration-distrib-2.41.0.zip
188+
unzip bonita-migration-distrib-2.41.0.zip
189189
```
190190

191191
- Configure the migration tool
192192

193193
```console
194-
$ cd bonita-migration-distrib-2.40.0
194+
$ cd bonita-migration-distrib-2.41.0
195195
```
196196

197197
edit the migration tool config to point towards the copy of bonita home and db
@@ -228,17 +228,17 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
228228
- If >= 7.3.0
229229

230230
```console
231-
$ docker run --name=bonita_7.8.4_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:7.8.4
231+
$ docker run --name=bonita_7.9.0_postgres --link mydbpostgres:postgres -e "DB_NAME=newbonitadb" -e "DB_USER=newbonitauser" -e "DB_PASS=newbonitapass" -d -p 8081:8080 %%IMAGE%%:7.9.0
232232
```
233233

234234
- Reapply specific configuration if needed, for example with a version >= 7.3.0 :
235235

236236
```console
237-
$ docker exec -ti bonita_7.8.4_postgres /bin/bash
237+
$ docker exec -ti bonita_7.9.0_postgres /bin/bash
238238
```
239239

240240
```console
241-
$ cd /opt/bonita/BonitaCommunity-7.8.4-Tomcat-8.5.34/setup
241+
$ cd /opt/bonita/BonitaCommunity-7.9.0-Tomcat-8.5.34/setup
242242
$ ./setup.sh pull
243243
$ TENANT_LOGIN=tech_user
244244
$ TENANT_PASSWORD=secret
@@ -258,7 +258,7 @@ The `-v /my/own/datadir:/opt/bonita` part of the command mounts the `/my/own/dat
258258
```
259259

260260
```console
261-
$ docker restart bonita_7.8.4_postgres
261+
$ docker restart bonita_7.9.0_postgres
262262
```
263263

264264
For more details regarding Bonita migration, see the [documentation](https://documentation.bonitasoft.com/bonita/7.8/migrate-from-an-earlier-version-of-bonita-bpm).
@@ -370,7 +370,7 @@ For example, you can increase the log level :
370370
```console
371371
$ mkdir -p custom_bonita
372372
$ echo '#!/bin/bash' > custom_bonita/bonita.sh
373-
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.8.4-Tomcat-8.5.34/server/conf/logging.properties' >> custom_bonita/bonita.sh
373+
$ echo 'sed -i "s/^org.bonitasoft.level = WARNING$/org.bonitasoft.level = FINEST/" /opt/bonita/BonitaCommunity-7.9.0-Tomcat-8.5.34/server/conf/logging.properties' >> custom_bonita/bonita.sh
374374
$ chmod +x custom_bonita/bonita.sh
375375

376376
$ docker run --name bonita_custom -v "$PWD"/custom_bonita/:/opt/custom-init.d -d -p 8080:8080 %%IMAGE%%
@@ -380,5 +380,5 @@ Note: There are several ways to check the `bonita` logs. One of them is
380380

381381
```console
382382
$ docker exec -ti bonita_custom /bin/bash
383-
tail -f /opt/bonita/BonitaCommunity-7.8.4-Tomcat-8.5.34/server/logs/bonita.`date +%Y-%m-%d`.log
383+
tail -f /opt/bonita/BonitaCommunity-7.9.0-Tomcat-8.5.34/server/logs/bonita.`date +%Y-%m-%d`.log
384384
```

0 commit comments

Comments
 (0)