Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
test_block_process
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
community
test_block_process
Commits
4718da8c
Commit
4718da8c
authored
May 14, 2018
by
Aigul Baimussayeva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
readme
parent
e5793907
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
62 additions
and
0 deletions
+62
-0
README.md
README.md
+62
-0
No files found.
README.md
0 → 100644
View file @
4718da8c
# Инструкция по использованию
1.
Остановить jboss
```
# /etc/init.d/arta-synergy-jboss stop
```
2.
Результат сборки
`build/libs/blocking.war`
положить в
`/opt/synergy/jboss/standalone/deployments`
3.
Создать очередь JMS для блокирующего процесса.
Для этого необходимо в конфигурационный файл
(в стандартной установке это
`/opt/synergy/jboss/standalone/configuration/standalone-onesynergy.xml`
)
в секцию
<subsystem
xmlns=
"urn:jboss:domain:messaging:1.2"
>
раздел
`<jms-destinations>`
добавить:
```xml
<jms-queue name="TestBlockQueue">
<entry name="queue/TestBlockQueue"/>
<entry name="java:jboss/queues/Synergy/TestBlockQueue"/>
<durable>true</durable>
</jms-queue>
```
4.
Связать очередь и процесс через конфигурационный файл
`/opt/synergy/jboss/standalone/configuration/arta/api-observation-configuration.xml`
,
добавив в него следующее:
```
xml
<listener>
<queue>
java:jboss/queues/Synergy/TestBlockQueue
</queue>
<event>
event.blocking.test.*
</event>
</listener>
```
Если конфигурационного файла
`api-observation-configuration.xml`
нет, то необходимо его создать и указать владельца:
```
# chown jboss:synergy api-observation-configuration.xml
```
Его содержимое должно быть следующим:
```
xml
<?xml version="1.0"?>
<configuration>
<listener>
<queue>
java:jboss/queues/Integration/InterpreterQueue
</queue>
<event>
event.blocking.interpreter.*
</event>
</listener>
<listener>
<queue>
java:jboss/queues/Synergy/TestBlockQueue
</queue>
<event>
event.blocking.test.*
</event>
</listener>
</configuration>
```
5.
Запустить jboss
```
# /etc/init.d/arta-synergy-jboss start
```
6.
В маршруте реестра добавить блокирующий процесс
`event.blocking.test.blocking.3`
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment