Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  • Install CentOS 6.3 64-bit
  • I'm installing OM on /data, as this server will be a node in a cluster which will be configured at a later stage.

swftools

Code Block
# mkdir -p /install/openmeetings/swftools/ && cd /install/openmeetings/swftools/
 # wget http://www.swftools.org/swftools-0.9.2.tar.gz
 # tar xvzf swftools-0.9.2.tar.gz 
 # cd swftools-0.9.2
 # yum install gcc-c++ zlib-devel libjpeg-devel freetype-devel giflib-devel 
 # ./configure --libdir=/usr/lib --bindir=/usr/bin
 # make 
 # vi swfs/Makefile #to avoid a problem while doing "make install"

Remove "-o" and "-L" after each "rm" command

Code Block
# make install

ghostscript

...

...

  • install root certificate:
    Code Block
    # /opt/jre1.7.0_11/bin/keytool -import -alias root -keystore /data/openmeetings/conf/keystore -trustcacerts -file TrustedRoot.crt
    still add? YES
  • install intermediate certificate:
    Code Block
    # /opt/jre1.7.0_11/bin/keytool -import -alias intermed -keystore /data/openmeetings/conf/keystore -trustcacerts -file DigiCertCA.crt
  • installeer server certificate - alias moet hetzelfde zijn als van de CSR:
    Code Block
    # /opt/jre1.7.0_11/bin/keytool -import -alias red5 -keystore /data/openmeetings/conf/keystore -trustcacerts -file

...

  •  crt_file.crt
  • check contents keystore:
    Code Block
    # /opt/jre1.7.0_11/bin/keytool -v -list -keystore /data/openmeetings/conf/keystore
  • copy keystore to keystore.screen to secure the screen sharing functionality
    Code Block
    # cp /data/openmeetings/conf/keystore /data/openmeetings/conf/keystore.screen

...