Unsupported configuration, some functionality (Hadoop, MongoDB, etc) may be lost by removing OSGI. That said, this makes PDI start up much, much quicker
- Remove plugins/pentaho-big-data-plugin
import java.math.BigInteger; | |
import java.util.List; | |
import java.util.ArrayList; | |
import java.util.Map; | |
import java.util.HashMap; | |
import java.security.MessageDigest; | |
import java.security.NoSuchAlgorithmException; | |
List stringFields; | |
MessageDigest digest; |
[ req ] | |
default_bits = 2048 | |
distinguished_name = req_distinguished_name | |
req_extensions = req_ext | |
[ req_distinguished_name ] | |
countryName = US | |
stateOrProvinceName = Florida | |
localityName = Orlando | |
organizationName = Acme Corporation | |
commonName = 172.20.48.1 |
#!/bin/sh | |
find $(pwd) -type f \( -name "*.xml" -or -name "*.properties" -or -name "*.sh" -or -name "*.cfg" \) -print0 | xargs -0 tar -czf $(basename $PWD)_config.tar.gz | |
find $(pwd) -type f -print0 | xargs -0 stat -f '%N%t%Su:%Sg%t%Lp%n' | while read LINE | |
do | |
FILE=$(echo $LINE | awk '{print $1}') | |
OWNER=$(echo $LINE | awk '{print $2}') | |
FILEPERM=$(echo $LINE | awk '{print $3}') | |
MD5SUM=$(md5 $FILE | awk '{print $NF}') | |
echo -e "$FILE\t$MD5SUM\t$OWNER\t$FILEPERM" |
<filter-mapping> | |
<filter-name>Proxy Trusting Filter</filter-name> | |
<url-pattern>/api/repo/files/backup</url-pattern> | |
</filter-mapping> |
# Resize Disk 1 | |
vboxmanage clonemedium disk "C:\Users\mtucker\VirtualBox VMs\MapR-Sandbox-For-Hadoop-4.0.2\MapR-Sandbox-For-Hadoop-4.0.2-disk1.vmdk" "C:\Users\mtucker\VirtualBox VMs\MapR-Sandbox-For-Hadoop-4.0.2\MapR-Sandbox-For-Hadoop-4.0.2-disk1.vdi" --format VDI | |
C:\Program Files\Oracle VM VirtualBox>vboxmanage modifymedium "C:\Users\mtucker\VirtualBox VMs\MapR-Sandbox-For-Hadoop-4.0.2\MapR-Sandbox-For-Hadoop-4.0.2-disk1.vdi" --resize 100000 | |
# Change VM Config to point to VDI, instead of VMDK | |
# Boot with GParted Live CD, add new partition | |
# Boot normally, add partition to LVM, extend LVM, and resize mount point | |
# Configure a FQDN hostname | |
sudo yum -y install krb5-libs krb5-server krb5-workstation | |
# Download and modify https://gist.githubusercontent.com/matthewtckr/eaf6180c3edd7d4ce025/raw/config_server.sh |
REM | |
REM Setup a MongoDB Sharded Cluster | |
REM | |
REM Reference: http://cookbook.mongodb.org/operations/convert-replica-set-to-replicated-shard-cluster/ | |
REM More Info: http://www.kchodorow.com/blog/2010/08/09/sharding-and-replica-sets-illustrated/ | |
REM | |
REM Download and Unpack MongoDB Software | |
REM | |
SET URL="https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-2.6.11.zip" |
#!/bin/bash | |
# Configure Script Settings | |
# KDC Server Name, admin user, non-admin user, default password | |
HOSTNAME=kerberos.muppets.com | |
ADMINUSER=mtucker | |
NORMALUSER=pentaho | |
PASSWORD=Pentaho123 | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<!-- definition of simple elements --> | |
<xs:element name="orderperson" type="xs:string"/> | |
<xs:element name="name" type="xs:string"/> | |
<xs:element name="address" type="xs:string"/> | |
<xs:element name="city" type="xs:string"/> | |
<xs:element name="country" type="xs:string"/> | |
<xs:element name="title" type="xs:string"/> |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": "s3:ListAllMyBuckets", | |
"Resource": "arn:aws:s3:::*" | |
}, | |
{ | |
"Effect": "Allow", |