Uncategorized

Cloudformation YAML Script

, , Comment Closed

AWSTemplateFormatVersion: “2010-09-09”   Description: “Basic Ec2”   Resources:     Ec2Instance1:       Type: AWS::EC2::Instance       Properties:         InstanceType: t2.small         SubnetId: subnet-xxxx      …

Read Post →

Install Alfresco Community Edition

, , Comment Closed

Overview These are the instructions I arrived at for install Alfresco Community Edition 4.0b under JBoss. Much of this is taken from the Alfreso Wiki albeit documention is soemwhat scattered and hard to find. Feel…

Read Post →

Clone WebSphere

, , 6 Comments

#1 – Create deployment manager on the target machine /usr/IBM/WebSphere/AppServer/bin/manageprofiles.sh -create -profileName Dmgr01 -templatePath /usr/IBM/WebSphere/AppServer/profileTemplates/management -serverType DEPLOYMENT_MANAGER -nodeName wstestapp-dm -cellName WC_comm01_cell -hostName localhost Review log file, /usr/IBM/WebSphere/AppServer/profiles/Dmgr01/logs/AboutThisProfile.txt Make note of the “Managment SOAP connector port”…

Read Post →

DKAN Installation

, , 29 Comments

Update the OS and Install Developemnt Tools yum update yum groupinstall ‘Development Tools’ Download Apache HTTPD along with apar and apr_util wget http://mirror.symnds.com/software/Apache/apr/apr-1.5.2.tar.gz wget http://www.interior-dsgn.com/apache/apr/apr-util-1.5.4.tar.gz wget http://mirrors.advancedhosters.com/apache//httpd/httpd-2.4.18.tar.gz wget http://mirror.symnds.com/software/Apache/apr/apr-1.5.2.tar.gz wget http://www.interior-dsgn.com/apache/apr/apr-util-1.5.4.tar.gz Build APR gzip -d…

Read Post →

Dokku Installation

, , Comment Closed

Server Installation and Preparation create a Ubuntu Server 16.04 in AWS and login to the system sudo apt-get update sudo apt-get upgrade sudo apt-get dist-upgrade sudo vi /etc/hosts 127.0.0.1 localhost dok sudo vi /etc/hostname dok…

Read Post →