Before install remmber to add IP Address to /etc/hosts Download swftools, run configure –prefix=/usr install to /usr Install flash palyer 12 by donwloding from adobe, then cp -r usr/* /usr Disbale linux firewall chkconfig ip6tables off, chkconfig iptables off , reboot yum install convert ImageMagick zlib-devel libjpeg-devel giflib-devel freetype-devel gcc gcc-c++ Install alfresco ./alfresco-community-4.2.e-installer-linux-x64.bin, only […]
Tag: alfresco
Alfresco Installation And Configuration On Solaris
How to install and configure Alfresco on Solaris Install Solaris 11 First lets prepare the os, Install Solaris 11 global. Now lets configure and install a Solaris zone (since Alfresco will be running in a zone). Follow the below zone configuration to configure your Alfresco Solaris zone.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
zfs create -o mountpoint=/docs rpool/docs chmod 700 /docs zonecfg -z docs # Paste form below to file /tmp/docs.cfg/tmp/docs.cfg # run zonecfg -z docs -f create -b set zonepath=/docs set brand=ipkg set autoboot=true set scheduling-class=FSS set ip-type=exclusive add net set physical=vnic0 end add capped-memory set physical=6G end add dataset set name=rpool/opt/alfresco end add dataset set name=rpool/alfresco end add dataset set name=rpool/mysql-logs end add dataset set name=rpool/mysql-data end commit #Install zone zoneadm -z docs install |
Configure Local IP Address & route
1 2 |
ipadm create-addr -T static -a 10.10.0.171/22 igb0/v4static route -p add default 10.10.0.1 |
[…]