- Locate the SoapUI installation dir
- Edit the SoapUI-X.X.X.vmoptions (X.X.X is the SoapUI version) and add the
-Duser.home=<YOUR_NEW_WORKSPACE_DIR>
. - Restart SoapUI
- Done
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Script sample" | |
# para cada server | |
# para cada container | |
# declaracao das vars | |
# local onde todos os jars estarao no server | |
STAGING_AREA="/tmp" | |
# local de instalacao do fuse |
- Create a
module.xml
file in$JBOSS_HOME/modules/org/springframework/${spring-version}
:
<?xml version="1.0"?>
<module xmlns="urn:jboss:module:1.1" name="org.springframework" slot="${spring-version}">
<resources>
<resource-root path="aopalliance-1.0.jar" />
<resource-root path="spring-aop-${spring-version}.jar" />
<resource-root path="spring-beans-${spring-version}.jar" />
<resource-root path="spring-context-${spring-version}.jar" />
- nohup ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/byo/config.yml &
- uninstall: ansible-playbook /usr/share/ansible/openshift-ansible/playbooks/adhoc/uninstall.yml
- login as admin oc login -u system:admin
- oc rollout latest deploymentconfig asb*
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package amq.sample.interceptor; | |
import java.util.List; | |
import javax.security.auth.Subject; | |
import org.apache.activemq.artemis.api.core.ActiveMQBuffer; | |
import org.apache.activemq.artemis.api.core.ActiveMQException; | |
import org.apache.activemq.artemis.api.core.ICoreMessage; | |
import org.apache.activemq.artemis.api.core.SimpleString; | |
import org.apache.activemq.artemis.core.remoting.CloseListener; | |
import org.apache.activemq.artemis.core.remoting.FailureListener; |
oc scale --replicas=0 $(oc get dc -o name | xargs) -n
Note: Tested on Fedora only
- Download the new release of GraalVM and unpack it anywhere in your filesystem:
$ tar -xvzf graalvm-ce-1.0.0-rc14-linux-amd64.tar.gz
- Download and install crc
- Configure it to have at least 8 cpus and 16000 of memory available. Do not start it before setting this config.
crc config view
- cpus : 8
- memory : 16000
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "neworderapproval", | |
"name": "New Order Approval", | |
"version": "1.0", | |
"events": [ | |
{ | |
"name": "newOrder", | |
"source": "orders/new", | |
"type": "knative", | |
"kind": "consumed" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: app.kiegroup.org/v1alpha1 | |
kind: KogitoMgmtConsole | |
metadata: | |
name: management-console | |
spec: | |
replicas: 1 | |
image: | |
tag: "0.12" | |
# we use environment variables to set the external data index URL | |
# this is needed for now since Management Console is a client application, we are working on having a local proxy to |
OlderNewer