Skip to content

Instantly share code, notes, and snippets.

@thikade
thikade / i_hate_websphere_jacc.md
Created January 17, 2020 15:56
Reconfigure JACC on WebSphere

Trace einschalten dmgr und nodeagent: =info:com.tivoli.pd.as.=all

JACC UNCONFIGURE

  • Goto Jacc Provider - Uncheck "enable JACC Provider"
  • click OK
  • switch to "Built in provider"
  • click OK
  • SAVE
  • STOP DMGR
@thikade
thikade / zfs_cheatsheet.md
Last active July 2, 2025 11:01
ZFS commands cheatsheet for snapshots etc

ZFS Pools

ZFS admin

  • All pools' status: zpool status
  • specific pools status: zpool status pdata1

Filesystems

@thikade
thikade / bootstrap.properties
Last active November 12, 2019 17:04
IBM Liberty JSON logging configuration
todo
@thikade
thikade / aws-cli-commands.md
Created October 11, 2019 17:39
initial AWS cli user setup

install aws cli

configure cli

aws configure
AWS Access Key ID [None]: xxx
AWS Secret Access Key [None]: xxx
Default region name [None]: eu-west-3
Default output format [None]: text
@thikade
thikade / readme.md
Created September 30, 2019 06:20
bash arrays cheatsheet

Docs

Bash Arrays

Declaration

Syntax Description
ARRAY=() Declares an indexed array ARRAY and initializes it to be empty. This can also be used to empty an existing array.
ARRAY[0]= Generally sets the first element of an indexed array. If no array ARRAY existed before, it is created.
@thikade
thikade / gcloud_cheatsheet.md
Last active September 28, 2019 18:25
gcloud Cheatsheet

GCLOUD CHEAT SHEET

Managing Builds

Docs

Managing Builds

Note

You can also run a build locally using the separate component: gcloud components install cloud-build-local.

list builds (10 last builds)

gcloud builds list --limit=10

@thikade
thikade / jarscan_readme.md
Last active August 19, 2019 12:14
jarscan hintsheet

download

https://jarscan.com/

usage

  • java -jar jarscan.jar -showProgress -dir /appDir/ -package org.apache.cxf.ws
  • java -jar jarscan.jar -showProgress -dir /appDir/ -class LoginAbortException
@thikade
thikade / vim_syntaxchecker.md
Last active June 25, 2024 04:52
vim syntax checker / syntastic yamllint

Getting vim yaml linter to work:

  1. Install syntastic vim plugin (as of vim 7.4.x no plugin manager is required anymore!)
    mkdir -p ~/.vim/pack/$USER/start/
    cd ~/.vim/pack/$USER/start/
    git clone https://github.com/vim-syntastic/syntastic.git
    
  2. Install yamllint: pip3 install yamllint
  3. Configure yamllint:
@thikade
thikade / groovy_cheatsheet.md
Last active February 6, 2023 13:38
Jenkins / Groovy language patterns

links

Jenkins Shared Pipelines

killing hanging jenkins jobs

go to script console https://<jenkins>/script, find out JobName and JobNumber, then run:

def jobName = "JobName" // pls change!
def jobNumber = 42      // pls change!
Jenkins.instance.getItemByFullName(jobName)
 .getBuildByNumber(jobNumber)
@thikade
thikade / websphere_messages.md
Last active July 22, 2019 15:19
Websphere important message IDs

Start / Stop of application

  • WSVR0200I: Starting application

  • WSVR0203I: Application: Application build level:

  • WSVR0217I: Stopping application:

  • WSVR0220I: Application stopped:

  • WSVR0221I: Application started:

  • WSVR0190I: Starting composition unit WebSphere:cuname= in BLA <>.

  • WSVR0191I: Composition unit WebSphere:cuname= in BLA <> started.

  • WSVR0193I: Composition unit WebSphere:cuname= in BLA <> stopped.