Questions tagged [rex]

(R)?ex is a server orchestration tool. Use the rexx tag if you want to refer to the REXX programming language.

(R)?ex is a server orchestration tool that doesn't need an agent on the hosts you want to manage. In fact it uses ssh to execute the given commands.

To use (R)?ex you don't need Perl knowledge at first. (R)?ex uses a simple DSL to describe your servers. Indeed, it is also possible to use (R)?ex from within your shell scripts without using perl at all.

In fact, if you know a little bit perl it won't hurt you.

The starting point of every (R)?ex project is the so called Rexfile. You can think of this file like a Makefile. You can define tasks in this file.

A task is a bunch of related commands. For example installing a package, uploading the configuration file and starting the service. You can also call tasks from other tasks or create rollback scenarios if something went wrong during the execution.

38 questions
0
votes
1 answer

How to use rex command to extract two fields and chart the count for both in one search query?

I have a log statement like 2017-06-21 12:53:48,426 INFO transaction.TransactionManager.Info:181 -{"message":{"TransactionStatus":true,"TransactioName":"removeLockedUser-1498029828160"}} . How can i extract TransactionName and TranscationStatus and…
anu arora
  • 23
  • 7
0
votes
3 answers

Sub search to look up field comprised of rex in main search

My sub search contains this predefined field, and I'm trying to use it to search my main search that gets the field using rex, but I get no results. I've tried a few different things: host=blah... [search...| table my_field] | rex field=_raw…
JJBee
  • 56
  • 2
  • 8
0
votes
1 answer

Oracle error : "ANOMALY : meaningless REX prefix used"

Error while installing Oracle 11g Message While Connecting to my ORACLE DB(with 11g express ver) I was trying to install Oracle 11g on my local computer(Windows 7 64bit) but I failed with the first screen capture. (some Korean language words are…
kdragon
  • 41
  • 1
  • 10
0
votes
1 answer

Rex command not found

I am trying to install Rex on Mac OS X (El Capitan), following the instructions at https://www.rexify.org/get.html I have installed XCode and MacPorts. Below are the responses I got from the installation commands now $ sudo port install libssh2…
slbteam08
  • 681
  • 3
  • 11
0
votes
1 answer

how to create simple derived type from XSD

how to can I create derived simpleType in your XSD file BASED ON xs:ID. The restriction should use a pattern with a value that starts with a "_", followed by two characters that are digits in the range 1 - 8. element from xml
user474901
-1
votes
1 answer

Extract alphanumeric string after matching pattren

Need help to extract those productIDs (XA363636363633) which printed as REGISTER_NOT_FOUND in log . These porductIDs will change {"line":"2019-10-05 03:58:11.627 ERROR [xxx-csscsc0sssscs-xxxx] 1 --- [nio-8080-exec-2] c.u.f.b.s.registryImpl :…
-1
votes
1 answer

transpose one set of characters into another set of characters in Splunk

I need to replace all the accents in the 5 vowels of the Spanish alphabet using a single replacement regex and 5 capture groups. In my text I have áéíóúàèìòù and so on. Until now I have this…
Sircam
  • 79
  • 1
  • 2
  • 12
-2
votes
1 answer

Extracting fields with REGEX from group of words with hypen and separated by dot

String Examples : a1-a2.b1-b2-b3.c1-c2 Need to extract fields like : a1-a2 b1-b2-b3 c1-c2 group of words with hypen and separated by dot
1 2
3