SlideShare una empresa de Scribd logo
1 de 91
Descargar para leer sin conexión
Installing and Getting Started with Alfresco
                                                              Doc. v. 0.2 - 05/05/09



                                      Wildan Maulana
                                   wildan.m@negeripelangi.com

                                 http://wildan.negeripelangi.com




© 2009, OpenThink Labs. All Rights Reserved
After The Presentation You Will Have Learned
                   How To :
 ●   Determine what is the right installation option for you
 ●   Install Alfresco and all the required software
 ●   Log in to the Alfresco web client application
 ●   Use the administration console and perform system
     administration tasks
 ●   Use Alfresco for basic document management




© 2009, OpenThink Labs. All Rights Reserved
Installing Alfresco




© 2009, OpenThink Labs. All Rights Reserved
Out-of-the Box Installation Architecture




© 2009, OpenThink Labs. All Rights Reserved
Where is Your Content Stored
 ●   The content in Alfresco is stored in persistent
     back-end systems such as a database and file
     system.
 ●   The database is used to store metadata, includes
     information like :
      ●   The format of the content
      ●   Date created
      ●   Language
      ●   Security settings

© 2009, OpenThink Labs. All Rights Reserved
What are the Components of Alfresco Application
                      Server ?
 ●   The Alfresco Application Server houses :
      ●   Alfresco application, also known as the web
          client
      ●   Alfresco repository
            –   The Alfresco repository provides a set of reusable
                cross-cutting content management services such
                as content storage, query, versioning, and
                transformation, which may be utilized by one or
                more applications



© 2009, OpenThink Labs. All Rights Reserved
How can You Access The Application ?
 ●   Using Web Browser
 ●   File Transfer Protocol (FTP) : This is useful to transfer files from your local file
     system to the remote server
 ●   WWW Distributed Authoring and Versioning (WebDAV) : This is primarily
     designed for editing and managing files on remote web server in a structured
     way. For example, an application like Adobe Photoshop can directly open and
     edit a file in the Alfresco content repository. This gives you the flexibility of using
     your own favorite editor to edit the content on the Alfresco server.
 ●   Common Internet File System (CIFS) : This helps you to map Alfresco as your
     local file system folder




© 2009, OpenThink Labs. All Rights Reserved
Which installtion Option is Suitable for
                 You ?
 ●   Enterprise and Labs Family
      ●   Alfresco Labs Family
      ●   Alfresco Enterprise Family




© 2009, OpenThink Labs. All Rights Reserved
Operating Systems
 ●   Windows
 ●   Linux
 ●   UNIX
 ●   MacOS




© 2009, OpenThink Labs. All Rights Reserved
Databases
 ●   MySQL
 ●   Oracle
 ●   MS SQL Server




© 2009, OpenThink Labs. All Rights Reserved
Application Servers
 ●   Tomcat
 ●   JBoss
 ●   Info :
      ●   Alfresco uses Spring framework and not EJB framework.
      ●   Alfresco utilizes JBoss cache's ability to distribute and maintain data caches, making
          it possible to build large-scale systems that outperform traditional enterprise content
          management systems
      ●    Alfresco also utilizes the clustering, failover, and load-balancing facilities of the
          JBoss application server to increase scalability
      ●   Alfresco's business process management features are powered by the JBoss jBPM
          tool.




© 2009, OpenThink Labs. All Rights Reserved
Portals (Optional)
 ●   JBoss Portal
 ●   Liferay



      NOTE : On Alfresco 3, Portal solution can be
     replaced by Alfresco Share




© 2009, OpenThink Labs. All Rights Reserved
Choose the Suitable Software for
             Your Installation
Case Study : Installing on Ubuntu 8.10 Linux




© 2009, OpenThink Labs. All Rights Reserved
Install The Dependencies Packages
 ●   sudo apt-get install imagemagick mysql-server 'openoffice.org-headless' xvfb
     swftools sun-java6-jdk sun-java6-jre nfs-common portmap
 ●   Create ImageMagick symlink :
     sudo ln -s /usr/bin/convert /usr/local/bin/convert
 ●   Create pdf2swf symlink :
     sudo ln -s /usr/bin/pdf2swf /alfresco/bin/pdf2swf
 ●   NOTE (for compiling the newest swftools you must install):
     zlib1g-dev, libjpeg62-dev, libgif-dev, libfreetype6-dev packages




© 2009, OpenThink Labs. All Rights Reserved
Downlod The Software
 ●   wget -c
     http://us.dl.alfresco.com/release/labs/build-1526/Alfre
 ●   chmod +x Alfresco-Labs-3Stable-Linux-x86-Install
 ●   sudo ./Alfresco-Labs-3Stable-Linux-x86-Install




© 2009, OpenThink Labs. All Rights Reserved
Language Selection




© 2009, OpenThink Labs. All Rights Reserved
Confirmation




© 2009, OpenThink Labs. All Rights Reserved
Welcome Message




© 2009, OpenThink Labs. All Rights Reserved
Setup Type




© 2009, OpenThink Labs. All Rights Reserved
Destination Location




© 2009, OpenThink Labs. All Rights Reserved
Start Copying Files




© 2009, OpenThink Labs. All Rights Reserved
Installing




© 2009, OpenThink Labs. All Rights Reserved
OpenOffice Location




© 2009, OpenThink Labs. All Rights Reserved
Complete




© 2009, OpenThink Labs. All Rights Reserved
Set up Alfresco Environtment

 ●   cd /alfresco
 ●   Change ALF_HOME and JAVA_HOME
       #!/bin/sh
       # Start or stop Alfresco server
       # Set the following to where Tomcat is installed
       ALF_HOME=/alfresco
       cd "$ALF_HOME"
       APPSERVER="${ALF_HOME}/tomcat"
       export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/"
       # Set any default JVM values
       export JAVA_OPTS='-Xms128m -Xmx512m -XX:MaxPermSize=128m -server'
       # Following only needed for Sun JVMs before to 1.5 update 8
       export JAVA_OPTS="${JAVA_OPTS} -XX:CompileCommand=exclude,org/apache/lucene/index/IndexReader$1,
              doBody -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger,
             mergeIndexes -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger,
             mergeDeletions"
       #
       if [ "$1" = "start" ]; then
          "${APPSERVER}/bin/startup.sh"
       # if [ -r ./virtual_start.sh ]; then
       # sh ./virtual_start.sh
       # fi
       # if [ -r "$ALF_HOME"/start_oo.sh ]; then
       # sh "$ALF_HOME"/start_oo.sh
       # fi
       elif [ "$1" = "stop" ]; then
          "${APPSERVER}/bin/shutdown.sh"
       # if [ -r ./virtual_start.sh ]; then
       # sh ./virtual_stop.sh
       # fi
       # if [ -r "$ALF_HOME"/start_oo.sh ]; then
       # killall soffice.bin
       # fi
       fi

© 2009, OpenThink Labs. All Rights Reserved
Set up Virtual Alfresco Environment
 ●   Only have to change ALF_HOME and export JAVA_HOME
 ●   sudo jed virtual_alf.sh

                                              #!/bin/sh
                                              # Start or stop Alfresco server
                                              # Set the following to where Tomcat is installed
                                              ALF_HOME=/alfresco
                                              cd "$ALF_HOME"
                                              APPSERVER="$ALF_HOME"/virtual-tomcat
                                              export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/"

                                              # Start virtual-tomcat
                                              #
                                              if [ "$1" = "start" ]; then
                                                 "$APPSERVER"/bin/startup.sh
                                              elif [ "$1" = "stop" ]; then
                                                 "$APPSERVER"/bin/shutdown.sh
                                              fi




© 2009, OpenThink Labs. All Rights Reserved
Change Derby Database to MySQL Database

 ●   This process will wipe out all your data, be very very careful.

          #sudo mysql -p < /alfresco/extras/databases/mysql/db_setup.sql


      ●   See if the database is there :




© 2009, OpenThink Labs. All Rights Reserved
Change Derby Database to MySQL Database (1)

 ●   Change setting from Derby to MySQL :

     cd tomcat/shared/classes/alfresco/extension/
 ●   Locate and open the following two files :

     sudo jed custom-repository.properties

 ●   Change the dir.root to the absoulte path of the data folder :

     # Sample custom content and index data location
     #
     dir.root=/alfresco/alf_data
     dir.indexes=/alfresco/alf_data/lucene-indexes




© 2009, OpenThink Labs. All Rights Reserved
Change Derby Database to MySQL Database (2)

 ●   Change setting from Derby to MySQL :

     cd tomcat/shared/classes/alfresco/extension/
 ●   Locate and open the following two files :

     sudo jed custom-repository.properties

 ●   Change the dir.root to the absoulte path of the data folder :

     # Sample custom content and index data location
     #
     dir.root=/alfresco/alf_data
     dir.indexes=/alfresco/alf_data/lucene-indexes




© 2009, OpenThink Labs. All Rights Reserved
Change Derby Database to MySQL Database (3)

 ●   We need to change one more file :

     sudo jed custom-hibernate-dialect.properties

                                              #
                                              # Derby dialect
                                              #
                                              #hibernate.dialect=org.hibernate.dialect.DerbyDialect

                                              #
                                              # HSQL dialect
                                              #
                                              #hsql#hibernate.dialect=org.hibernate.dialect.HSQLDialect

                                              #
                                              # MySQL dialect (default)
                                              #
                                              hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect

                                              #
                                              # PostgreSQL dialect
                                              #
                                              #postgresql#hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
                                              #postgresql#hibernate.query.substitutions=true TRUE, false FALSE




© 2009, OpenThink Labs. All Rights Reserved
Error : TO FIX
21:54:02,245 ERROR [org.alfresco.repo.content.transform.magick.AbstractImageMagickContentTransformer] ImageMagickContentTransformer not available: Failed to perform ImageMagick transformation:


Execution result:


 os:      Linux


 command:       [/usr/local/bin/convert, /opt/Alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_source_62025.gif, /opt/Alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_target_62026.png]


 succeeded: false


 exit code: 1


 out:


 err:     Cannot run program "/usr/local/bin/convert": java.io.IOException: error=2, No such file or directory


21:54:04,407 INFO [org.alfresco.config.xml.XMLConfigService$PropertyConfigurer] Loading properties file from class path resource [alfresco/file-servers.properties]


21:54:08,877 ERROR [org.alfresco.repo.content.transform.RuntimeExecutableContentTransformer] Failed to start a runtime executable content transformer:


Execution result:


 os:      Linux


 command:       [/opt/Alfresco/bin/pdf2swf, -V]


 succeeded: false


 exit code: 1


 out:


 err:     Cannot run program "/opt/Alfresco/bin/pdf2swf": java.io.IOException: error=2, No such file or directory




        Solution :

        apt-get install swftools



© 2009, OpenThink Labs. All Rights Reserved
Give it a go
 ●   Share Website

     sudo /alfresco/alfresco.sh start

     http://HOSTNAME:8080/share

     user : admin
     password :admin




© 2009, OpenThink Labs. All Rights Reserved
Share Web Sites
                                          Login Page




© 2009, OpenThink Labs. All Rights Reserved
Share Web Sites
                                        Dashboard Page




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
 ●   Web Interface

     sudo /alfresco/alf_start.sh start

     http://HOSTNAME:8080/alfresco

     user : admin
     password :admin




© 2009, OpenThink Labs. All Rights Reserved
Web Client
                                              Login Page




© 2009, OpenThink Labs. All Rights Reserved
Web Client
                                      Dashboard Page




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                   SMB Interface
 ●   For SMB Interface try :

     HOST_IP_ADDRESSalfresco

     http://HOSTNAME:8080/alfresco

     user : admin
     password :admin




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                   SMB Interface
 ●   For SMB Interface try :

     HOST_IP_ADDRESSalfresco

     http://HOSTNAME:8080/alfresco

     user : admin
     password :admin




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                   SMB Interface
 ●   Test it using smbclient :




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                      FTP Access
 ●   For FTP access try :
     ftp : HOST_IP_ADDRESS

 ●   Login as :

     user: admin
     pass: admin




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                      FTP Access




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                               WebDAV Access
 ●   For WebDAV access try this in a browser: The browser has read
     only permissions.

     http://HOST_IP_ADDRESS:8080/alfresco/webdav

     user : admin
     pass : admin

 ●   You can also access this through a Windows Mapped drive or
     Nautilus File Manager to have read/write permission.




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                        WebDAV Access




© 2009, OpenThink Labs. All Rights Reserved
Give it a go
                                      WebDAV Access




© 2009, OpenThink Labs. All Rights Reserved
Start Alfresco at Boot Up
 ●   Create a file :

     sudo jed initialize.sh

                                              #!/bin/sh
 ●   Add these lines :                        ALF_HOME=/alfresco
                                              echo "Creating init.d links"
                                              ln -s $ALF_HOME/alfresco.sh /etc/init.d/alfresco
                                              ln -s $ALF_HOME/virtual_alf.sh /etc/init.d/virtual_alf
 ●   Lets make it                             update-rc.d alfresco defaults
     executable :                             ln -s $ALF_HOME/alfresco.sh /etc/init.d/alfresco
                                              ln -s $ALF_HOME/virtual_alf.sh /etc/init.d/virtual_alf
                                              update-rc.d alfresco defaults
     chmod 777 initialize.sh                  update-rc.d virtual_alf defaults



 ●   Run it : sudo ./initialize.sh
 ●   Reboot and see what happens



© 2009, OpenThink Labs. All Rights Reserved
Introduction to The Web Client
 ●   Alfresco web client is the web-based application bundled and shipped along with the
     Alfresco repository. Using any web browser you can connect to the web client application.
     You will be able to manage users, security, content, business rules, and everything
     related to your enterprise content stored in Alfresco through the web client.




© 2009, OpenThink Labs. All Rights Reserved
Log in to Alfresco as Administrator
 ●   Login to the default url of alfresco :

     http://<ip-or-servername>:8080/alfresco

 ●   User : admin
     Pass : admin




© 2009, OpenThink Labs. All Rights Reserved
Screen Layout
 ●   Tool bar
 ●   Shelf
 ●   Breadcumbs
 ●   Header
 ●   Detail




© 2009, OpenThink Labs. All Rights Reserved
Administration Console

 ●   User and Group Management
 ●   Category Management
 ●   Data Management
 ●   System Information




© 2009, OpenThink Labs. All Rights Reserved
Getting Started with
                           Content Creation
 ●   Create Space
 ●   Create Content
 ●   Create a Link to Content




© 2009, OpenThink Labs. All Rights Reserved
Create Space
 ●   An Alfresco space is a folder with additional properties
     such as business rules and security




© 2009, OpenThink Labs. All Rights Reserved
Create Space (2)




© 2009, OpenThink Labs. All Rights Reserved
Create Content

 ●   In Alfresco content is any kind of document, such as a Microsoft Office file, Open
     Office file, PDF, HTML, XML, text, image, audio, or video file.
 ●   Each content item is made of two main elements, the content itself and the
     information about the content, called metadata or properties. By default each
     content item will have properties such as title, description, author, and audit
     trail information such as creator, creation date, modifier, and modification date.




© 2009, OpenThink Labs. All Rights Reserved
Create a Link to Content
 ●   Identify the target document and click on the Copy action (as
     shown in the
     screenshot on the previous page).
 ●   The document will be placed in the clipboard as shown in the
     screenshot below.
 ●   Go to the space where you would like to create the link to the
     content.
 ●   Click on the Paste Content as Link icon shown in the
     screenshot below.




© 2009, OpenThink Labs. All Rights Reserved
Create a Link to Content




© 2009, OpenThink Labs. All Rights Reserved
Introduction to Alfresco Share




© 2009, OpenThink Labs. All Rights Reserved
About Dashlet
 ●   Dashlet is a summary component that may or may not have an equivalent page
     component. If there is a complementary page component, the related dashlet displays the
     information generated from it. Dashlets only appear on the personal or site dashboards.




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlet -1
 ●   Getting Started
     The Getting Started dashlet gives you options to get started when you access Share for
     the first time. Once you are familiar with Share, you can remove it. This dashlet displays
     by default.
 ●   My Calendar
     Your My Calendar personal dashlet contains a rolled up view of events that you have
     created, as well as events for each site of which you are a member, providing quick
     access to each of them. This dashlet displays by default.
 ●   RSS Feed
     By default, the RSS Feed personal dashlet displays all Global Alfresco RSS feeds. You
     can configure it to personalize your feeds. You can also add and configure as many
     instances of this dashlet as you want. This dashlet displays by default.




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlet -2
 ●   Alfresco Network
     The Alfresco Network dashlet is the portal for Alfresco customers to get all the latest
     news and views, as well as the following:
      ●   A knowledge base
      ●   Ability to track your tickets
      ●   Check in notices
      ●   Documentation
      ●   Downloads
      ●   Alfresco Calendar
     It provides a feed to the latest activities on the Network.
 ●   My Sites' Activities
     Your My Sites’ Activities personal dashlet tracks the most recent activities that have
     been performed in any site of which you are a member.




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlet -3
 ●   My Profile
     Your My Limited Profile personal dashlet contains summary personal details about you,
     based on your detailed profile.
 ●   My Sites
     Your My Sites personal dashlet lists all sites that you have created or of which you are a
     member, providing quick access to each of them.
 ●   Documents I'm Editing
     Your Documents I’m Editing personal dashlet lists all the documents you have checked
     out in all the sites of which you are a member, providing quick access to Editing them.
 ●   CMIS Feed
     Your CMIS Feed dashlet displays links specific to the Content Management
     Interoperability Services (CMIS) specification and implementation.




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlet -4
 ●   My Workspaces
     Your My Workspaces dashlet displays all Document Workspace sites of
     which you are a member, providing quick access to each of them.




© 2009, OpenThink Labs. All Rights Reserved
Set Up Your Personal Dashboard

 ●   You can set up your personal dashboard to tailor the view you have,
     depending on your requirements.
     You Can :
      ●   Modify the dashboard appearance – view as one, two, three, or four
          columns
      ●   Add and remove personal dashlets

                                  DEMO




© 2009, OpenThink Labs. All Rights Reserved
Publish Your Credential
 ●   As part of the site, you want to publish your
     credentials for all site members to view. You
     publish your credentials via your My Profile page
     component. It enables you to:
      ●   Edit your profile
      ●   Change your password
      ●   Specify your settings

                                         DEMO

© 2009, OpenThink Labs. All Rights Reserved
Create your Collaboration Site
 ●   The next step in the scenario is to create a collaboration site for your
     team. From here, your team will be able to :
      ●   Share and manage content
      ●   Schedule and manage meeting events
      ●   Have group discussions
      ●   Write blogs
      ●   Author content online and share with others via a wiki




© 2009, OpenThink Labs. All Rights Reserved
Create The Site
 ●   In the application toolbar, click My Dashboard to return to your personal
     dashboard.
 ●   Click Create Site in the My Sites personal dashlet.




© 2009, OpenThink Labs. All Rights Reserved
© 2009, OpenThink Labs. All Rights Reserved
Set Up Your Site
 ●   The site dashboard displays all information and activities associated with the
     site. It is customized by
     the site owner.
 ●   You can set up your new site to meet your team’s requirements. You can:
      ●   Customize the site dashboard using site dashlets
      ●   Customize the site by adding or removing page components on the site




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlets on The Site
 ●   Getting Started
     The Getting Started site dashlet gives you options to get started when you access Share
     for the first time. Once you are familiar with Share, you can remove it.
 ●   Recently Modified Documents
     Your Recently Modified Documents site dashlet lists all documents that you have
     created or modified in the last 7 days, providing quick access to each of them.
 ●   Site Activities
     Your Site Activities site dashlet tracks the most recent activities that have been
     performed in the current site.
 ●   Site Profile
     Your Site Profile site dashlet displays summary details about the current site.
 ●   Site Colleagues
     The Site Colleagues site dashlet displays all members of this site and their assigned
     role. This dashlet displays by default.




© 2009, OpenThink Labs. All Rights Reserved
Available Dashlets on The Site -2
 ●   Site Calendar
     Your Site Calendar site dashlet contains a rolled up view of events that you have
     created, as well as events for each site of which you are a member, providing quick
     access to each of them.
 ●   Site Wiki
     Your Site Wiki site dashlet enables you to display content from the Wiki page component.
     You can configure this dashlet to select the page you want it to
     display.
 ●   RSS Feed
     By default, the RSS Feed site dashlet displays all Global Alfresco RSS feeds. You can
     configure this dashlet to personalize your feeds. You can also add and configure as many
     instances of this dashlet on the site dashboard as you want
 ●   Site Links
     The Site Links site dashlet displays the web links relevant to the current site.




© 2009, OpenThink Labs. All Rights Reserved
Customize the Site Dahboard
 ●   You can add and reorder the site dashlets on the site dashboard the same as
     you do with personal dashlets on your personal dashboard.
      ●   Ensure you are in your new site and click Customize Dashboard on the
          banner. The Customize Site Dashboard page where you add and remove
          site dashlets appears.
      ●   Click Add Dashlets and add Site Wiki to your site dashboard.
      ●   Click OK. The configuration is saved and you return to the updated site
          dashboard.




© 2009, OpenThink Labs. All Rights Reserved
Customize the Site Content
 ●   Alfresco Share has the concept of page components which you can add to your site as
     customized functionality. A page component has rich functionality and is URL
     addressable.
      ●   Ensure you are within your new site and click Customize Site on the banner. On the
          Customize Site page, you can add and remove page components. The available
          page components are:
            –   Wiki
            –   Blog
            –   Document Library
            –   Calendar : The Calendar page component enables you to schedule and track
                events for all sites you own or of which you are a member.
            –   Links
            –   Discussions
      ●   Click Cancel to return to the site dashboard



© 2009, OpenThink Labs. All Rights Reserved
Prepare Your Site for Collaboration
 ●   To make the new site as collaborative as possible, you should prepare the
     following before inviting any users:
      ●   An introduction and explanation for the site (Wiki)
      ●   A set of marketing material documents (Document Library)
      ●   A scheduled webinar introducing everyone to the site (Calendar)




© 2009, OpenThink Labs. All Rights Reserved
Create an Introduction
 ●   You use the Wiki page component within your site to write your introduction.
     Once it is written, you
     add it to the Wiki dashlet on your site dashboard.
      ●   Within your site, click Wiki on the banner. The Wiki page component
          opens.
      ●   Click New Page and give the page the title Welcome to our collaboration
          site.
      ●   Add the following content
          The purpose of this collaboration site is to share information for the project
          and ensure that communication is as easy as possible.
      ●   Add the tag collaboration
      ●   Click Save. The new page displays




© 2009, OpenThink Labs. All Rights Reserved
Add the Introduction to Your
                                   Site Dashboard
 ●   Within your site, click Site Dashboard on the banner. This returns you to the site
     dashboard for the current site.
 ●   Click Configure in the Wiki dashlet. The Select Wiki Page page displays.




 ●   Click OK to accept the page you have just created. The text from this wiki page displays
     in the Wiki dashlet.




© 2009, OpenThink Labs. All Rights Reserved
Add Marketing Material or Any Other
              Document
 ●   Within your site, click Document Library on the banner. The Document Library
     page component opens.
 ●   Click Upload to load your three content items. The Upload File(s) page opens.
 ●   Click the browse button to locate any three pieces of content on your computer
     to upload. The Upload File(s) page displays the three content items as a list.
 ●   Click Upload File(s). The content items display their upload status.
 ●   Click OK when all content is 100% complete. The page closes and the
     Document Library displays the selected content items.




© 2009, OpenThink Labs. All Rights Reserved
Document Library Upload Issue

 ●   Multiple file upload using flash only works on Internet Explore (on Labs 3 Final)
 ●   As workaround, we will completely disable this feature and using traditional
     HTML upload.
      ●   Reference : http://forums.alfresco.com/en/viewtopic.php?f=9&t=15501




© 2009, OpenThink Labs. All Rights Reserved
Update a document
 ●   In the Document Library item list, highlight one of the content items you have uploaded.
 ●   Click the Edit Offline action associated with this content from the dynamic menu. The
     content moves to the Documents I’m Editing view, indicating that the document is
     checked out to you.
 ●   Choose to save the file and click OK to save the content item in a location from which you
     can edit it.

     Note The content name will be appended with (Working Copy) in the location in which
     you save it.

 ●   Navigate to this content item on your personal computer, change a word, and save it.
 ●   In the browsing pane, ensure I’m Editing is the selected view under Documents.
 ●   In the item list, select the document you modified and click the Upload New Version
     action. The Update File page displays.




© 2009, OpenThink Labs. All Rights Reserved
Update a document -2
 ●   Screenshoot




© 2009, OpenThink Labs. All Rights Reserved
Update a document -3
 ●   Click the browse icon to locate your modified file. Remember that it is appended with
     (Working Copy). Once you select it, it displays in the Update File page.
 ●   Specify whether it is a minor or major version, type any comments you have, and click
     Upload File(s).
 ●   Click OK when all content is 100% complete. The updated content item displays in its
     original location in the library.




© 2009, OpenThink Labs. All Rights Reserved
Document Preview Issues
 ●   Reference : http://forums.alfresco.com/en/viewtopic.php?f=9&t=14380
 ●   Solution : Install and compile the newest package (0.9)




© 2009, OpenThink Labs. All Rights Reserved
Schedule a webinar
 ●   As part of promoting this collaboration site, you want to schedule a
     webinar to welcome the new users and discuss the purpose of the
     site.




© 2009, OpenThink Labs. All Rights Reserved
To schedule a webinar
 ●   Within your site, click Calendar on the banner. The Calendar page component opens.
 ●   Select the date you want to have the webinar and click Add within that date. The Add
     Event page displays.

     Screenshoot

 ●   Enter the webinar details and click OK. You return to the calendar with your new webinar
     displayed on the date you scheduled it.




© 2009, OpenThink Labs. All Rights Reserved
Invite members to your site
 ●   After you have set up your collaborative site, you
     can invite people to join it.




© 2009, OpenThink Labs. All Rights Reserved
To Invite People
 ●   Within your site, click Invite on the banner. The
     Invite page displays.

     Screenshoot




© 2009, OpenThink Labs. All Rights Reserved
To Invite People -2
 ●   In the Search for People section, type the full or partial name of an internal user you
     want to invite and click Search.

     Important :

     If you do not have any users for this installation add them in Alfresco Explorer.

 ●   Click Add associated with the user you want to add. The user displays in the Invite Users
     list.

 ●   In the Add External Users section, type the first name, last name, and email for the
     external user you want to invite, then click Add.




© 2009, OpenThink Labs. All Rights Reserved
To Invite People -3
 ●   In the Invite Users list, select a role from the Select Role menu for each user.

     NOTE : If you want to assign all users the same role, select a role from the Set All Roles
     to menu to apply to all of the users listed. The role displays in the menu.

     Screenshoot




 ●   Click Invite. You are notified that the invite has been sent via email to each member
     invited.




© 2009, OpenThink Labs. All Rights Reserved
View activities within your site
 ●   Recenlty Modified Dashlet
 ●   Site Activities Dashlet




© 2009, OpenThink Labs. All Rights Reserved
Use SharePoint Protocol (SPP) Support with Your MS Office
                      Documents
 ●   TODO , Refer to the Alfresco Tutorial Getting Started with SharePoint Protocol Support




© 2009, OpenThink Labs. All Rights Reserved
Reference
 ●   Alfresco, Enterprise Content Management Implementation, Munwar
        Sharif, PACKT Publishing
 ●   Installing Alfresco Lab 3 Stable on Ubuntu 8.10,
        http://wiki.alfresco.com/wiki/Installing_Alfresco_Lab_3_Stable_on_Ubuntu
 ●   Alfresco Labs 3 Stable - Getting Started with Alfresco Share, Alfresco
        Software Inc




© 2009, OpenThink Labs. All Rights Reserved
Q&A


                                              Thanks! ^_^




© 2009, OpenThink Labs. All Rights Reserved

Más contenido relacionado

La actualidad más candente

Installing WordPress on AWS
Installing WordPress on AWSInstalling WordPress on AWS
Installing WordPress on AWSManish Jain
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesHoward Greenberg
 
IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)Austin Chang
 
DevOps with Ansible
DevOps with AnsibleDevOps with Ansible
DevOps with AnsibleSwapnil Jain
 
What is an Application programming interface(API)?
What is an Application programming interface(API)?What is an Application programming interface(API)?
What is an Application programming interface(API)?Akmal Ali
 
Docker and the Linux Kernel
Docker and the Linux KernelDocker and the Linux Kernel
Docker and the Linux KernelDocker, Inc.
 
WebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction PresentationWebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction PresentationBrad Beiermann
 
Learn Oracle WebLogic Server 12c Administration
Learn Oracle WebLogic Server 12c AdministrationLearn Oracle WebLogic Server 12c Administration
Learn Oracle WebLogic Server 12c AdministrationRevelation Technologies
 
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...panagenda
 
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...Felipe Blini
 
DataPower Restful API Security
DataPower Restful API SecurityDataPower Restful API Security
DataPower Restful API SecurityJagadish Vemugunta
 
How I started to love design patterns
How I started to love design patternsHow I started to love design patterns
How I started to love design patternsSamuel ROZE
 
Introduction to laravel framework
Introduction to laravel frameworkIntroduction to laravel framework
Introduction to laravel frameworkAhmad Fatoni
 
An introduction to terraform
An introduction to terraformAn introduction to terraform
An introduction to terraformJulien Pivotto
 
Celery - A Distributed Task Queue
Celery - A Distributed Task QueueCelery - A Distributed Task Queue
Celery - A Distributed Task QueueDuy Do
 
A Introduction of Packer
A Introduction of PackerA Introduction of Packer
A Introduction of PackerFreyr Lin
 

La actualidad más candente (20)

Apache ppt
Apache pptApache ppt
Apache ppt
 
Installing WordPress on AWS
Installing WordPress on AWSInstalling WordPress on AWS
Installing WordPress on AWS
 
Weblogic
WeblogicWeblogic
Weblogic
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
 
IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)IBM Lotus Domino Domain Monitoring (DDM)
IBM Lotus Domino Domain Monitoring (DDM)
 
DevOps with Ansible
DevOps with AnsibleDevOps with Ansible
DevOps with Ansible
 
Command-Line 101
Command-Line 101Command-Line 101
Command-Line 101
 
What is an Application programming interface(API)?
What is an Application programming interface(API)?What is an Application programming interface(API)?
What is an Application programming interface(API)?
 
Docker and the Linux Kernel
Docker and the Linux KernelDocker and the Linux Kernel
Docker and the Linux Kernel
 
Ansible
AnsibleAnsible
Ansible
 
WebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction PresentationWebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction Presentation
 
Learn Oracle WebLogic Server 12c Administration
Learn Oracle WebLogic Server 12c AdministrationLearn Oracle WebLogic Server 12c Administration
Learn Oracle WebLogic Server 12c Administration
 
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...
From A to Z-itrix: Setting up the most stable and fastest HCL Notes client on...
 
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...
Monitoramento de serviços com Zabbix + Grafana + Python - Marcelo Santoto - D...
 
DataPower Restful API Security
DataPower Restful API SecurityDataPower Restful API Security
DataPower Restful API Security
 
How I started to love design patterns
How I started to love design patternsHow I started to love design patterns
How I started to love design patterns
 
Introduction to laravel framework
Introduction to laravel frameworkIntroduction to laravel framework
Introduction to laravel framework
 
An introduction to terraform
An introduction to terraformAn introduction to terraform
An introduction to terraform
 
Celery - A Distributed Task Queue
Celery - A Distributed Task QueueCelery - A Distributed Task Queue
Celery - A Distributed Task Queue
 
A Introduction of Packer
A Introduction of PackerA Introduction of Packer
A Introduction of Packer
 

Destacado

Intro to Alfresco for Developers
Intro to Alfresco for DevelopersIntro to Alfresco for Developers
Intro to Alfresco for DevelopersJeff Potts
 
Alfresco In An Hour - Document Management, Web Content Management, and Collab...
Alfresco In An Hour - Document Management, Web Content Management, and Collab...Alfresco In An Hour - Document Management, Web Content Management, and Collab...
Alfresco In An Hour - Document Management, Web Content Management, and Collab...Alfresco Software
 
Alfresco tech talk live public api episode 64
Alfresco tech talk live public api episode 64Alfresco tech talk live public api episode 64
Alfresco tech talk live public api episode 64Alfresco Software
 
Alfresco in few points - Search Tutorial
Alfresco in few points - Search TutorialAlfresco in few points - Search Tutorial
Alfresco in few points - Search TutorialPASCAL Jean Marie
 
Alfresco 5.2 REST API
Alfresco 5.2 REST APIAlfresco 5.2 REST API
Alfresco 5.2 REST APIJ V
 
Intro to the Alfresco Public API
Intro to the Alfresco Public APIIntro to the Alfresco Public API
Intro to the Alfresco Public APIJeff Potts
 
2140 api developer-student-guide
2140 api developer-student-guide2140 api developer-student-guide
2140 api developer-student-guideDarko Gicevski
 
Alfresco Share Customization Made Easy With Side Labs
Alfresco Share Customization Made Easy With Side LabsAlfresco Share Customization Made Easy With Side Labs
Alfresco Share Customization Made Easy With Side LabsAlfresco Software
 
Tech talk live on new alfresco api
Tech talk live on new alfresco apiTech talk live on new alfresco api
Tech talk live on new alfresco apiAlfresco Software
 
Alfresco 3.0 (SPK) UI wires (core)
Alfresco 3.0 (SPK) UI wires (core)Alfresco 3.0 (SPK) UI wires (core)
Alfresco 3.0 (SPK) UI wires (core)Linton Baddeley
 
MyIBBT - Project Collaboration with Alfresco Share
MyIBBT - Project Collaboration with Alfresco ShareMyIBBT - Project Collaboration with Alfresco Share
MyIBBT - Project Collaboration with Alfresco ShareAmplexor
 
The power of faceted search in alfresco
The power of faceted search in alfrescoThe power of faceted search in alfresco
The power of faceted search in alfrescoXeniT Solutions nv
 
Alfresco Day Vienna 2016: Alfrescos neue Rest API
Alfresco Day Vienna 2016: Alfrescos neue Rest APIAlfresco Day Vienna 2016: Alfrescos neue Rest API
Alfresco Day Vienna 2016: Alfrescos neue Rest APIAlfresco Software
 
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdf
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdfGetting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdf
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdfInblay Technology
 
Enterprise Content Management Migration Best Practices Feat Migrations From...
Enterprise Content Management Migration Best Practices   Feat Migrations From...Enterprise Content Management Migration Best Practices   Feat Migrations From...
Enterprise Content Management Migration Best Practices Feat Migrations From...Alfresco Software
 
The Power of Drupal and Alfresco Together
The Power of Drupal and Alfresco TogetherThe Power of Drupal and Alfresco Together
The Power of Drupal and Alfresco TogetherJeff Potts
 
Alfresco Security Best Practices 2014
Alfresco Security Best Practices 2014Alfresco Security Best Practices 2014
Alfresco Security Best Practices 2014Toni de la Fuente
 
Alfresco in few points - Node Tutorial
Alfresco in few points - Node TutorialAlfresco in few points - Node Tutorial
Alfresco in few points - Node TutorialPASCAL Jean Marie
 
Getting Started with CMIS
Getting Started with CMISGetting Started with CMIS
Getting Started with CMISJeff Potts
 
Intro To Alfresco Part 1
Intro To Alfresco Part 1Intro To Alfresco Part 1
Intro To Alfresco Part 1Jeff Potts
 

Destacado (20)

Intro to Alfresco for Developers
Intro to Alfresco for DevelopersIntro to Alfresco for Developers
Intro to Alfresco for Developers
 
Alfresco In An Hour - Document Management, Web Content Management, and Collab...
Alfresco In An Hour - Document Management, Web Content Management, and Collab...Alfresco In An Hour - Document Management, Web Content Management, and Collab...
Alfresco In An Hour - Document Management, Web Content Management, and Collab...
 
Alfresco tech talk live public api episode 64
Alfresco tech talk live public api episode 64Alfresco tech talk live public api episode 64
Alfresco tech talk live public api episode 64
 
Alfresco in few points - Search Tutorial
Alfresco in few points - Search TutorialAlfresco in few points - Search Tutorial
Alfresco in few points - Search Tutorial
 
Alfresco 5.2 REST API
Alfresco 5.2 REST APIAlfresco 5.2 REST API
Alfresco 5.2 REST API
 
Intro to the Alfresco Public API
Intro to the Alfresco Public APIIntro to the Alfresco Public API
Intro to the Alfresco Public API
 
2140 api developer-student-guide
2140 api developer-student-guide2140 api developer-student-guide
2140 api developer-student-guide
 
Alfresco Share Customization Made Easy With Side Labs
Alfresco Share Customization Made Easy With Side LabsAlfresco Share Customization Made Easy With Side Labs
Alfresco Share Customization Made Easy With Side Labs
 
Tech talk live on new alfresco api
Tech talk live on new alfresco apiTech talk live on new alfresco api
Tech talk live on new alfresco api
 
Alfresco 3.0 (SPK) UI wires (core)
Alfresco 3.0 (SPK) UI wires (core)Alfresco 3.0 (SPK) UI wires (core)
Alfresco 3.0 (SPK) UI wires (core)
 
MyIBBT - Project Collaboration with Alfresco Share
MyIBBT - Project Collaboration with Alfresco ShareMyIBBT - Project Collaboration with Alfresco Share
MyIBBT - Project Collaboration with Alfresco Share
 
The power of faceted search in alfresco
The power of faceted search in alfrescoThe power of faceted search in alfresco
The power of faceted search in alfresco
 
Alfresco Day Vienna 2016: Alfrescos neue Rest API
Alfresco Day Vienna 2016: Alfrescos neue Rest APIAlfresco Day Vienna 2016: Alfrescos neue Rest API
Alfresco Day Vienna 2016: Alfrescos neue Rest API
 
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdf
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdfGetting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdf
Getting_Started_with_Alfresco_Share_Collaboration_for_Enterprise.pdf
 
Enterprise Content Management Migration Best Practices Feat Migrations From...
Enterprise Content Management Migration Best Practices   Feat Migrations From...Enterprise Content Management Migration Best Practices   Feat Migrations From...
Enterprise Content Management Migration Best Practices Feat Migrations From...
 
The Power of Drupal and Alfresco Together
The Power of Drupal and Alfresco TogetherThe Power of Drupal and Alfresco Together
The Power of Drupal and Alfresco Together
 
Alfresco Security Best Practices 2014
Alfresco Security Best Practices 2014Alfresco Security Best Practices 2014
Alfresco Security Best Practices 2014
 
Alfresco in few points - Node Tutorial
Alfresco in few points - Node TutorialAlfresco in few points - Node Tutorial
Alfresco in few points - Node Tutorial
 
Getting Started with CMIS
Getting Started with CMISGetting Started with CMIS
Getting Started with CMIS
 
Intro To Alfresco Part 1
Intro To Alfresco Part 1Intro To Alfresco Part 1
Intro To Alfresco Part 1
 

Similar a Installing and Getting Started with Alfresco

No Docker? No Problem: Automating installation and config with Ansible
No Docker? No Problem: Automating installation and config with AnsibleNo Docker? No Problem: Automating installation and config with Ansible
No Docker? No Problem: Automating installation and config with AnsibleJeff Potts
 
Fn project quick installation guide
Fn project quick installation guideFn project quick installation guide
Fn project quick installation guideJohan Louwers
 
01 overview-and-setup
01 overview-and-setup01 overview-and-setup
01 overview-and-setupsnopteck
 
01 web-apps
01 web-apps01 web-apps
01 web-appssnopteck
 
How To Install Openbravo ERP 2.50 MP43 in Ubuntu
How To Install Openbravo ERP 2.50 MP43 in UbuntuHow To Install Openbravo ERP 2.50 MP43 in Ubuntu
How To Install Openbravo ERP 2.50 MP43 in UbuntuWirabumi Software
 
Creation of Own Cloud
Creation of Own Cloud Creation of Own Cloud
Creation of Own Cloud Mohammed Adam
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning InfrastructurePerforce
 
Read-only rootfs: theory and practice
Read-only rootfs: theory and practiceRead-only rootfs: theory and practice
Read-only rootfs: theory and practiceChris Simmonds
 
Alfresco Environment Validation and "Day Zero" Configuration
Alfresco Environment Validation and "Day Zero" ConfigurationAlfresco Environment Validation and "Day Zero" Configuration
Alfresco Environment Validation and "Day Zero" ConfigurationAlfresco Software
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudSalesforce Developers
 
A Fabric/Puppet Build/Deploy System
A Fabric/Puppet Build/Deploy SystemA Fabric/Puppet Build/Deploy System
A Fabric/Puppet Build/Deploy Systemadrian_nye
 
Puppet - Configuration Management Made Eas(ier)
Puppet - Configuration Management Made Eas(ier)Puppet - Configuration Management Made Eas(ier)
Puppet - Configuration Management Made Eas(ier)Aaron Bernstein
 
Using puppet
Using puppetUsing puppet
Using puppetAlex Su
 
Dockerize your Symfony application - Symfony Live NYC 2014
Dockerize your Symfony application - Symfony Live NYC 2014Dockerize your Symfony application - Symfony Live NYC 2014
Dockerize your Symfony application - Symfony Live NYC 2014André Rømcke
 
Install Redis on Oracle Linux
Install Redis on Oracle LinuxInstall Redis on Oracle Linux
Install Redis on Oracle LinuxJohan Louwers
 

Similar a Installing and Getting Started with Alfresco (20)

DevOps for database
DevOps for databaseDevOps for database
DevOps for database
 
No Docker? No Problem: Automating installation and config with Ansible
No Docker? No Problem: Automating installation and config with AnsibleNo Docker? No Problem: Automating installation and config with Ansible
No Docker? No Problem: Automating installation and config with Ansible
 
Fn project quick installation guide
Fn project quick installation guideFn project quick installation guide
Fn project quick installation guide
 
01 overview-and-setup
01 overview-and-setup01 overview-and-setup
01 overview-and-setup
 
01 web-apps
01 web-apps01 web-apps
01 web-apps
 
01 web-apps
01 web-apps01 web-apps
01 web-apps
 
How To Install Openbravo ERP 2.50 MP43 in Ubuntu
How To Install Openbravo ERP 2.50 MP43 in UbuntuHow To Install Openbravo ERP 2.50 MP43 in Ubuntu
How To Install Openbravo ERP 2.50 MP43 in Ubuntu
 
Creation of Own Cloud
Creation of Own Cloud Creation of Own Cloud
Creation of Own Cloud
 
[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure[MathWorks] Versioning Infrastructure
[MathWorks] Versioning Infrastructure
 
Read-only rootfs: theory and practice
Read-only rootfs: theory and practiceRead-only rootfs: theory and practice
Read-only rootfs: theory and practice
 
Alfresco Environment Validation and "Day Zero" Configuration
Alfresco Environment Validation and "Day Zero" ConfigurationAlfresco Environment Validation and "Day Zero" Configuration
Alfresco Environment Validation and "Day Zero" Configuration
 
PHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the CloudPHP on Heroku: Deploying and Scaling Apps in the Cloud
PHP on Heroku: Deploying and Scaling Apps in the Cloud
 
A Fabric/Puppet Build/Deploy System
A Fabric/Puppet Build/Deploy SystemA Fabric/Puppet Build/Deploy System
A Fabric/Puppet Build/Deploy System
 
Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9
 
Core os dna_automacon
Core os dna_automaconCore os dna_automacon
Core os dna_automacon
 
Puppet - Configuration Management Made Eas(ier)
Puppet - Configuration Management Made Eas(ier)Puppet - Configuration Management Made Eas(ier)
Puppet - Configuration Management Made Eas(ier)
 
Using puppet
Using puppetUsing puppet
Using puppet
 
Dockerize your Symfony application - Symfony Live NYC 2014
Dockerize your Symfony application - Symfony Live NYC 2014Dockerize your Symfony application - Symfony Live NYC 2014
Dockerize your Symfony application - Symfony Live NYC 2014
 
Core os dna_oscon
Core os dna_osconCore os dna_oscon
Core os dna_oscon
 
Install Redis on Oracle Linux
Install Redis on Oracle LinuxInstall Redis on Oracle Linux
Install Redis on Oracle Linux
 

Más de Wildan Maulana

Hasil Pendataan Potensi Desa 2018
Hasil Pendataan Potensi Desa 2018Hasil Pendataan Potensi Desa 2018
Hasil Pendataan Potensi Desa 2018Wildan Maulana
 
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...Wildan Maulana
 
Ketahanan Pangan #1 : Gerakan Sekolah Menanam Melon
Ketahanan Pangan #1 : Gerakan Sekolah Menanam MelonKetahanan Pangan #1 : Gerakan Sekolah Menanam Melon
Ketahanan Pangan #1 : Gerakan Sekolah Menanam MelonWildan Maulana
 
Pengembangan OpenThink SAS 2013-2014
Pengembangan OpenThink SAS 2013-2014Pengembangan OpenThink SAS 2013-2014
Pengembangan OpenThink SAS 2013-2014Wildan Maulana
 
ICA – AtoM : Retensi Arsip
ICA – AtoM : Retensi ArsipICA – AtoM : Retensi Arsip
ICA – AtoM : Retensi ArsipWildan Maulana
 
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RW
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RWOpenThink Labs Workshop : Ketahanan Pangan Skala RT/RW
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RWWildan Maulana
 
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...Wildan Maulana
 
PostgreSQL BootCamp : Manajemen Master Data dengan SkyTools
PostgreSQL BootCamp : Manajemen Master Data dengan SkyToolsPostgreSQL BootCamp : Manajemen Master Data dengan SkyTools
PostgreSQL BootCamp : Manajemen Master Data dengan SkyToolsWildan Maulana
 
Mensetup Google Apps sebagai IdP jenis openID dan Aplikasi Berbasis CakePHP ...
Mensetup Google Apps sebagai IdP jenis openID  dan Aplikasi Berbasis CakePHP ...Mensetup Google Apps sebagai IdP jenis openID  dan Aplikasi Berbasis CakePHP ...
Mensetup Google Apps sebagai IdP jenis openID dan Aplikasi Berbasis CakePHP ...Wildan Maulana
 
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai Sp
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai SpMensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai Sp
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai SpWildan Maulana
 
Konfigurasi simpleSAMLphp dengan Google Apps Sebagai Identity Provider
Konfigurasi simpleSAMLphp  dengan Google Apps Sebagai Identity ProviderKonfigurasi simpleSAMLphp  dengan Google Apps Sebagai Identity Provider
Konfigurasi simpleSAMLphp dengan Google Apps Sebagai Identity ProviderWildan Maulana
 
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)Instalasi simpleSAMLphp sebagai Identity Provider (IdP)
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)Wildan Maulana
 
Instalasi dan Konfigurasi simpleSAMLphp
Instalasi dan Konfigurasi simpleSAMLphpInstalasi dan Konfigurasi simpleSAMLphp
Instalasi dan Konfigurasi simpleSAMLphpWildan Maulana
 
River Restoration in Asia and Connection Between IWRM and River Restoration
River Restoration in Asia and Connection Between IWRM and River RestorationRiver Restoration in Asia and Connection Between IWRM and River Restoration
River Restoration in Asia and Connection Between IWRM and River RestorationWildan Maulana
 
Optimasi Limpasan Air Limbah Ke Kali Surabaya (Segmen Sepanjang – Jagir) De...
Optimasi Limpasan Air Limbah  Ke Kali Surabaya (Segmen Sepanjang – Jagir)  De...Optimasi Limpasan Air Limbah  Ke Kali Surabaya (Segmen Sepanjang – Jagir)  De...
Optimasi Limpasan Air Limbah Ke Kali Surabaya (Segmen Sepanjang – Jagir) De...Wildan Maulana
 
Penilaian Siswa di Finlandia - Pendidikan Dasar
Penilaian Siswa di Finlandia - Pendidikan DasarPenilaian Siswa di Finlandia - Pendidikan Dasar
Penilaian Siswa di Finlandia - Pendidikan DasarWildan Maulana
 
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and Uses
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and UsesProyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and Uses
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and UsesWildan Maulana
 
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang Tua
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang TuaOpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang Tua
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang TuaWildan Maulana
 
Menggunakan AlisJK : Equating
Menggunakan AlisJK : EquatingMenggunakan AlisJK : Equating
Menggunakan AlisJK : EquatingWildan Maulana
 

Más de Wildan Maulana (20)

Hasil Pendataan Potensi Desa 2018
Hasil Pendataan Potensi Desa 2018Hasil Pendataan Potensi Desa 2018
Hasil Pendataan Potensi Desa 2018
 
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...
Double for Nothing? Experimental Evidence on an Unconditional TeacherSalary I...
 
Ketahanan Pangan #1 : Gerakan Sekolah Menanam Melon
Ketahanan Pangan #1 : Gerakan Sekolah Menanam MelonKetahanan Pangan #1 : Gerakan Sekolah Menanam Melon
Ketahanan Pangan #1 : Gerakan Sekolah Menanam Melon
 
Pengembangan OpenThink SAS 2013-2014
Pengembangan OpenThink SAS 2013-2014Pengembangan OpenThink SAS 2013-2014
Pengembangan OpenThink SAS 2013-2014
 
ICA – AtoM : Retensi Arsip
ICA – AtoM : Retensi ArsipICA – AtoM : Retensi Arsip
ICA – AtoM : Retensi Arsip
 
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RW
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RWOpenThink Labs Workshop : Ketahanan Pangan Skala RT/RW
OpenThink Labs Workshop : Ketahanan Pangan Skala RT/RW
 
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...
OpenThink Labs : Dengar Pendapat Komunitas ciliwung dengan kemen pu dan kemen...
 
PostgreSQL BootCamp : Manajemen Master Data dengan SkyTools
PostgreSQL BootCamp : Manajemen Master Data dengan SkyToolsPostgreSQL BootCamp : Manajemen Master Data dengan SkyTools
PostgreSQL BootCamp : Manajemen Master Data dengan SkyTools
 
Mensetup Google Apps sebagai IdP jenis openID dan Aplikasi Berbasis CakePHP ...
Mensetup Google Apps sebagai IdP jenis openID  dan Aplikasi Berbasis CakePHP ...Mensetup Google Apps sebagai IdP jenis openID  dan Aplikasi Berbasis CakePHP ...
Mensetup Google Apps sebagai IdP jenis openID dan Aplikasi Berbasis CakePHP ...
 
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai Sp
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai SpMensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai Sp
Mensetup Google Apps sebagai IdP jenis openID dan Wordpress sebagai Sp
 
Konfigurasi simpleSAMLphp dengan Google Apps Sebagai Identity Provider
Konfigurasi simpleSAMLphp  dengan Google Apps Sebagai Identity ProviderKonfigurasi simpleSAMLphp  dengan Google Apps Sebagai Identity Provider
Konfigurasi simpleSAMLphp dengan Google Apps Sebagai Identity Provider
 
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)Instalasi simpleSAMLphp sebagai Identity Provider (IdP)
Instalasi simpleSAMLphp sebagai Identity Provider (IdP)
 
Instalasi dan Konfigurasi simpleSAMLphp
Instalasi dan Konfigurasi simpleSAMLphpInstalasi dan Konfigurasi simpleSAMLphp
Instalasi dan Konfigurasi simpleSAMLphp
 
River Restoration in Asia and Connection Between IWRM and River Restoration
River Restoration in Asia and Connection Between IWRM and River RestorationRiver Restoration in Asia and Connection Between IWRM and River Restoration
River Restoration in Asia and Connection Between IWRM and River Restoration
 
Optimasi Limpasan Air Limbah Ke Kali Surabaya (Segmen Sepanjang – Jagir) De...
Optimasi Limpasan Air Limbah  Ke Kali Surabaya (Segmen Sepanjang – Jagir)  De...Optimasi Limpasan Air Limbah  Ke Kali Surabaya (Segmen Sepanjang – Jagir)  De...
Optimasi Limpasan Air Limbah Ke Kali Surabaya (Segmen Sepanjang – Jagir) De...
 
Penilaian Siswa di Finlandia - Pendidikan Dasar
Penilaian Siswa di Finlandia - Pendidikan DasarPenilaian Siswa di Finlandia - Pendidikan Dasar
Penilaian Siswa di Finlandia - Pendidikan Dasar
 
Statistik Listrik
Statistik ListrikStatistik Listrik
Statistik Listrik
 
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and Uses
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and UsesProyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and Uses
Proyek Al-'Alaq : Electric Bicycles ; History, Characteristics, and Uses
 
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang Tua
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang TuaOpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang Tua
OpenThink SAS : Interaksi Antara Sekolah, Wali Kelas, Siswa dan Orang Tua
 
Menggunakan AlisJK : Equating
Menggunakan AlisJK : EquatingMenggunakan AlisJK : Equating
Menggunakan AlisJK : Equating
 

Último

Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Nikki Chapple
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Último (20)

Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
Microsoft 365 Copilot: How to boost your productivity with AI – Part one: Ado...
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

Installing and Getting Started with Alfresco

  • 1. Installing and Getting Started with Alfresco Doc. v. 0.2 - 05/05/09 Wildan Maulana wildan.m@negeripelangi.com http://wildan.negeripelangi.com © 2009, OpenThink Labs. All Rights Reserved
  • 2. After The Presentation You Will Have Learned How To : ● Determine what is the right installation option for you ● Install Alfresco and all the required software ● Log in to the Alfresco web client application ● Use the administration console and perform system administration tasks ● Use Alfresco for basic document management © 2009, OpenThink Labs. All Rights Reserved
  • 3. Installing Alfresco © 2009, OpenThink Labs. All Rights Reserved
  • 4. Out-of-the Box Installation Architecture © 2009, OpenThink Labs. All Rights Reserved
  • 5. Where is Your Content Stored ● The content in Alfresco is stored in persistent back-end systems such as a database and file system. ● The database is used to store metadata, includes information like : ● The format of the content ● Date created ● Language ● Security settings © 2009, OpenThink Labs. All Rights Reserved
  • 6. What are the Components of Alfresco Application Server ? ● The Alfresco Application Server houses : ● Alfresco application, also known as the web client ● Alfresco repository – The Alfresco repository provides a set of reusable cross-cutting content management services such as content storage, query, versioning, and transformation, which may be utilized by one or more applications © 2009, OpenThink Labs. All Rights Reserved
  • 7. How can You Access The Application ? ● Using Web Browser ● File Transfer Protocol (FTP) : This is useful to transfer files from your local file system to the remote server ● WWW Distributed Authoring and Versioning (WebDAV) : This is primarily designed for editing and managing files on remote web server in a structured way. For example, an application like Adobe Photoshop can directly open and edit a file in the Alfresco content repository. This gives you the flexibility of using your own favorite editor to edit the content on the Alfresco server. ● Common Internet File System (CIFS) : This helps you to map Alfresco as your local file system folder © 2009, OpenThink Labs. All Rights Reserved
  • 8. Which installtion Option is Suitable for You ? ● Enterprise and Labs Family ● Alfresco Labs Family ● Alfresco Enterprise Family © 2009, OpenThink Labs. All Rights Reserved
  • 9. Operating Systems ● Windows ● Linux ● UNIX ● MacOS © 2009, OpenThink Labs. All Rights Reserved
  • 10. Databases ● MySQL ● Oracle ● MS SQL Server © 2009, OpenThink Labs. All Rights Reserved
  • 11. Application Servers ● Tomcat ● JBoss ● Info : ● Alfresco uses Spring framework and not EJB framework. ● Alfresco utilizes JBoss cache's ability to distribute and maintain data caches, making it possible to build large-scale systems that outperform traditional enterprise content management systems ● Alfresco also utilizes the clustering, failover, and load-balancing facilities of the JBoss application server to increase scalability ● Alfresco's business process management features are powered by the JBoss jBPM tool. © 2009, OpenThink Labs. All Rights Reserved
  • 12. Portals (Optional) ● JBoss Portal ● Liferay NOTE : On Alfresco 3, Portal solution can be replaced by Alfresco Share © 2009, OpenThink Labs. All Rights Reserved
  • 13. Choose the Suitable Software for Your Installation Case Study : Installing on Ubuntu 8.10 Linux © 2009, OpenThink Labs. All Rights Reserved
  • 14. Install The Dependencies Packages ● sudo apt-get install imagemagick mysql-server 'openoffice.org-headless' xvfb swftools sun-java6-jdk sun-java6-jre nfs-common portmap ● Create ImageMagick symlink : sudo ln -s /usr/bin/convert /usr/local/bin/convert ● Create pdf2swf symlink : sudo ln -s /usr/bin/pdf2swf /alfresco/bin/pdf2swf ● NOTE (for compiling the newest swftools you must install): zlib1g-dev, libjpeg62-dev, libgif-dev, libfreetype6-dev packages © 2009, OpenThink Labs. All Rights Reserved
  • 15. Downlod The Software ● wget -c http://us.dl.alfresco.com/release/labs/build-1526/Alfre ● chmod +x Alfresco-Labs-3Stable-Linux-x86-Install ● sudo ./Alfresco-Labs-3Stable-Linux-x86-Install © 2009, OpenThink Labs. All Rights Reserved
  • 16. Language Selection © 2009, OpenThink Labs. All Rights Reserved
  • 17. Confirmation © 2009, OpenThink Labs. All Rights Reserved
  • 18. Welcome Message © 2009, OpenThink Labs. All Rights Reserved
  • 19. Setup Type © 2009, OpenThink Labs. All Rights Reserved
  • 20. Destination Location © 2009, OpenThink Labs. All Rights Reserved
  • 21. Start Copying Files © 2009, OpenThink Labs. All Rights Reserved
  • 22. Installing © 2009, OpenThink Labs. All Rights Reserved
  • 23. OpenOffice Location © 2009, OpenThink Labs. All Rights Reserved
  • 24. Complete © 2009, OpenThink Labs. All Rights Reserved
  • 25. Set up Alfresco Environtment ● cd /alfresco ● Change ALF_HOME and JAVA_HOME #!/bin/sh # Start or stop Alfresco server # Set the following to where Tomcat is installed ALF_HOME=/alfresco cd "$ALF_HOME" APPSERVER="${ALF_HOME}/tomcat" export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/" # Set any default JVM values export JAVA_OPTS='-Xms128m -Xmx512m -XX:MaxPermSize=128m -server' # Following only needed for Sun JVMs before to 1.5 update 8 export JAVA_OPTS="${JAVA_OPTS} -XX:CompileCommand=exclude,org/apache/lucene/index/IndexReader$1, doBody -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger, mergeIndexes -XX:CompileCommand=exclude,org/alfresco/repo/search/impl/lucene/index/IndexInfo$Merger, mergeDeletions" # if [ "$1" = "start" ]; then "${APPSERVER}/bin/startup.sh" # if [ -r ./virtual_start.sh ]; then # sh ./virtual_start.sh # fi # if [ -r "$ALF_HOME"/start_oo.sh ]; then # sh "$ALF_HOME"/start_oo.sh # fi elif [ "$1" = "stop" ]; then "${APPSERVER}/bin/shutdown.sh" # if [ -r ./virtual_start.sh ]; then # sh ./virtual_stop.sh # fi # if [ -r "$ALF_HOME"/start_oo.sh ]; then # killall soffice.bin # fi fi © 2009, OpenThink Labs. All Rights Reserved
  • 26. Set up Virtual Alfresco Environment ● Only have to change ALF_HOME and export JAVA_HOME ● sudo jed virtual_alf.sh #!/bin/sh # Start or stop Alfresco server # Set the following to where Tomcat is installed ALF_HOME=/alfresco cd "$ALF_HOME" APPSERVER="$ALF_HOME"/virtual-tomcat export JAVA_HOME="/usr/lib/jvm/java-6-sun-1.6.0.10/" # Start virtual-tomcat # if [ "$1" = "start" ]; then "$APPSERVER"/bin/startup.sh elif [ "$1" = "stop" ]; then "$APPSERVER"/bin/shutdown.sh fi © 2009, OpenThink Labs. All Rights Reserved
  • 27. Change Derby Database to MySQL Database ● This process will wipe out all your data, be very very careful. #sudo mysql -p < /alfresco/extras/databases/mysql/db_setup.sql ● See if the database is there : © 2009, OpenThink Labs. All Rights Reserved
  • 28. Change Derby Database to MySQL Database (1) ● Change setting from Derby to MySQL : cd tomcat/shared/classes/alfresco/extension/ ● Locate and open the following two files : sudo jed custom-repository.properties ● Change the dir.root to the absoulte path of the data folder : # Sample custom content and index data location # dir.root=/alfresco/alf_data dir.indexes=/alfresco/alf_data/lucene-indexes © 2009, OpenThink Labs. All Rights Reserved
  • 29. Change Derby Database to MySQL Database (2) ● Change setting from Derby to MySQL : cd tomcat/shared/classes/alfresco/extension/ ● Locate and open the following two files : sudo jed custom-repository.properties ● Change the dir.root to the absoulte path of the data folder : # Sample custom content and index data location # dir.root=/alfresco/alf_data dir.indexes=/alfresco/alf_data/lucene-indexes © 2009, OpenThink Labs. All Rights Reserved
  • 30. Change Derby Database to MySQL Database (3) ● We need to change one more file : sudo jed custom-hibernate-dialect.properties # # Derby dialect # #hibernate.dialect=org.hibernate.dialect.DerbyDialect # # HSQL dialect # #hsql#hibernate.dialect=org.hibernate.dialect.HSQLDialect # # MySQL dialect (default) # hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect # # PostgreSQL dialect # #postgresql#hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect #postgresql#hibernate.query.substitutions=true TRUE, false FALSE © 2009, OpenThink Labs. All Rights Reserved
  • 31. Error : TO FIX 21:54:02,245 ERROR [org.alfresco.repo.content.transform.magick.AbstractImageMagickContentTransformer] ImageMagickContentTransformer not available: Failed to perform ImageMagick transformation: Execution result: os: Linux command: [/usr/local/bin/convert, /opt/Alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_source_62025.gif, /opt/Alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_target_62026.png] succeeded: false exit code: 1 out: err: Cannot run program "/usr/local/bin/convert": java.io.IOException: error=2, No such file or directory 21:54:04,407 INFO [org.alfresco.config.xml.XMLConfigService$PropertyConfigurer] Loading properties file from class path resource [alfresco/file-servers.properties] 21:54:08,877 ERROR [org.alfresco.repo.content.transform.RuntimeExecutableContentTransformer] Failed to start a runtime executable content transformer: Execution result: os: Linux command: [/opt/Alfresco/bin/pdf2swf, -V] succeeded: false exit code: 1 out: err: Cannot run program "/opt/Alfresco/bin/pdf2swf": java.io.IOException: error=2, No such file or directory Solution : apt-get install swftools © 2009, OpenThink Labs. All Rights Reserved
  • 32. Give it a go ● Share Website sudo /alfresco/alfresco.sh start http://HOSTNAME:8080/share user : admin password :admin © 2009, OpenThink Labs. All Rights Reserved
  • 33. Share Web Sites Login Page © 2009, OpenThink Labs. All Rights Reserved
  • 34. Share Web Sites Dashboard Page © 2009, OpenThink Labs. All Rights Reserved
  • 35. Give it a go ● Web Interface sudo /alfresco/alf_start.sh start http://HOSTNAME:8080/alfresco user : admin password :admin © 2009, OpenThink Labs. All Rights Reserved
  • 36. Web Client Login Page © 2009, OpenThink Labs. All Rights Reserved
  • 37. Web Client Dashboard Page © 2009, OpenThink Labs. All Rights Reserved
  • 38. Give it a go SMB Interface ● For SMB Interface try : HOST_IP_ADDRESSalfresco http://HOSTNAME:8080/alfresco user : admin password :admin © 2009, OpenThink Labs. All Rights Reserved
  • 39. Give it a go SMB Interface ● For SMB Interface try : HOST_IP_ADDRESSalfresco http://HOSTNAME:8080/alfresco user : admin password :admin © 2009, OpenThink Labs. All Rights Reserved
  • 40. Give it a go SMB Interface ● Test it using smbclient : © 2009, OpenThink Labs. All Rights Reserved
  • 41. Give it a go FTP Access ● For FTP access try : ftp : HOST_IP_ADDRESS ● Login as : user: admin pass: admin © 2009, OpenThink Labs. All Rights Reserved
  • 42. Give it a go FTP Access © 2009, OpenThink Labs. All Rights Reserved
  • 43. Give it a go WebDAV Access ● For WebDAV access try this in a browser: The browser has read only permissions. http://HOST_IP_ADDRESS:8080/alfresco/webdav user : admin pass : admin ● You can also access this through a Windows Mapped drive or Nautilus File Manager to have read/write permission. © 2009, OpenThink Labs. All Rights Reserved
  • 44. Give it a go WebDAV Access © 2009, OpenThink Labs. All Rights Reserved
  • 45. Give it a go WebDAV Access © 2009, OpenThink Labs. All Rights Reserved
  • 46. Start Alfresco at Boot Up ● Create a file : sudo jed initialize.sh #!/bin/sh ● Add these lines : ALF_HOME=/alfresco echo "Creating init.d links" ln -s $ALF_HOME/alfresco.sh /etc/init.d/alfresco ln -s $ALF_HOME/virtual_alf.sh /etc/init.d/virtual_alf ● Lets make it update-rc.d alfresco defaults executable : ln -s $ALF_HOME/alfresco.sh /etc/init.d/alfresco ln -s $ALF_HOME/virtual_alf.sh /etc/init.d/virtual_alf update-rc.d alfresco defaults chmod 777 initialize.sh update-rc.d virtual_alf defaults ● Run it : sudo ./initialize.sh ● Reboot and see what happens © 2009, OpenThink Labs. All Rights Reserved
  • 47. Introduction to The Web Client ● Alfresco web client is the web-based application bundled and shipped along with the Alfresco repository. Using any web browser you can connect to the web client application. You will be able to manage users, security, content, business rules, and everything related to your enterprise content stored in Alfresco through the web client. © 2009, OpenThink Labs. All Rights Reserved
  • 48. Log in to Alfresco as Administrator ● Login to the default url of alfresco : http://<ip-or-servername>:8080/alfresco ● User : admin Pass : admin © 2009, OpenThink Labs. All Rights Reserved
  • 49. Screen Layout ● Tool bar ● Shelf ● Breadcumbs ● Header ● Detail © 2009, OpenThink Labs. All Rights Reserved
  • 50. Administration Console ● User and Group Management ● Category Management ● Data Management ● System Information © 2009, OpenThink Labs. All Rights Reserved
  • 51. Getting Started with Content Creation ● Create Space ● Create Content ● Create a Link to Content © 2009, OpenThink Labs. All Rights Reserved
  • 52. Create Space ● An Alfresco space is a folder with additional properties such as business rules and security © 2009, OpenThink Labs. All Rights Reserved
  • 53. Create Space (2) © 2009, OpenThink Labs. All Rights Reserved
  • 54. Create Content ● In Alfresco content is any kind of document, such as a Microsoft Office file, Open Office file, PDF, HTML, XML, text, image, audio, or video file. ● Each content item is made of two main elements, the content itself and the information about the content, called metadata or properties. By default each content item will have properties such as title, description, author, and audit trail information such as creator, creation date, modifier, and modification date. © 2009, OpenThink Labs. All Rights Reserved
  • 55. Create a Link to Content ● Identify the target document and click on the Copy action (as shown in the screenshot on the previous page). ● The document will be placed in the clipboard as shown in the screenshot below. ● Go to the space where you would like to create the link to the content. ● Click on the Paste Content as Link icon shown in the screenshot below. © 2009, OpenThink Labs. All Rights Reserved
  • 56. Create a Link to Content © 2009, OpenThink Labs. All Rights Reserved
  • 57. Introduction to Alfresco Share © 2009, OpenThink Labs. All Rights Reserved
  • 58. About Dashlet ● Dashlet is a summary component that may or may not have an equivalent page component. If there is a complementary page component, the related dashlet displays the information generated from it. Dashlets only appear on the personal or site dashboards. © 2009, OpenThink Labs. All Rights Reserved
  • 59. Available Dashlet -1 ● Getting Started The Getting Started dashlet gives you options to get started when you access Share for the first time. Once you are familiar with Share, you can remove it. This dashlet displays by default. ● My Calendar Your My Calendar personal dashlet contains a rolled up view of events that you have created, as well as events for each site of which you are a member, providing quick access to each of them. This dashlet displays by default. ● RSS Feed By default, the RSS Feed personal dashlet displays all Global Alfresco RSS feeds. You can configure it to personalize your feeds. You can also add and configure as many instances of this dashlet as you want. This dashlet displays by default. © 2009, OpenThink Labs. All Rights Reserved
  • 60. Available Dashlet -2 ● Alfresco Network The Alfresco Network dashlet is the portal for Alfresco customers to get all the latest news and views, as well as the following: ● A knowledge base ● Ability to track your tickets ● Check in notices ● Documentation ● Downloads ● Alfresco Calendar It provides a feed to the latest activities on the Network. ● My Sites' Activities Your My Sites’ Activities personal dashlet tracks the most recent activities that have been performed in any site of which you are a member. © 2009, OpenThink Labs. All Rights Reserved
  • 61. Available Dashlet -3 ● My Profile Your My Limited Profile personal dashlet contains summary personal details about you, based on your detailed profile. ● My Sites Your My Sites personal dashlet lists all sites that you have created or of which you are a member, providing quick access to each of them. ● Documents I'm Editing Your Documents I’m Editing personal dashlet lists all the documents you have checked out in all the sites of which you are a member, providing quick access to Editing them. ● CMIS Feed Your CMIS Feed dashlet displays links specific to the Content Management Interoperability Services (CMIS) specification and implementation. © 2009, OpenThink Labs. All Rights Reserved
  • 62. Available Dashlet -4 ● My Workspaces Your My Workspaces dashlet displays all Document Workspace sites of which you are a member, providing quick access to each of them. © 2009, OpenThink Labs. All Rights Reserved
  • 63. Set Up Your Personal Dashboard ● You can set up your personal dashboard to tailor the view you have, depending on your requirements. You Can : ● Modify the dashboard appearance – view as one, two, three, or four columns ● Add and remove personal dashlets DEMO © 2009, OpenThink Labs. All Rights Reserved
  • 64. Publish Your Credential ● As part of the site, you want to publish your credentials for all site members to view. You publish your credentials via your My Profile page component. It enables you to: ● Edit your profile ● Change your password ● Specify your settings DEMO © 2009, OpenThink Labs. All Rights Reserved
  • 65. Create your Collaboration Site ● The next step in the scenario is to create a collaboration site for your team. From here, your team will be able to : ● Share and manage content ● Schedule and manage meeting events ● Have group discussions ● Write blogs ● Author content online and share with others via a wiki © 2009, OpenThink Labs. All Rights Reserved
  • 66. Create The Site ● In the application toolbar, click My Dashboard to return to your personal dashboard. ● Click Create Site in the My Sites personal dashlet. © 2009, OpenThink Labs. All Rights Reserved
  • 67. © 2009, OpenThink Labs. All Rights Reserved
  • 68. Set Up Your Site ● The site dashboard displays all information and activities associated with the site. It is customized by the site owner. ● You can set up your new site to meet your team’s requirements. You can: ● Customize the site dashboard using site dashlets ● Customize the site by adding or removing page components on the site © 2009, OpenThink Labs. All Rights Reserved
  • 69. Available Dashlets on The Site ● Getting Started The Getting Started site dashlet gives you options to get started when you access Share for the first time. Once you are familiar with Share, you can remove it. ● Recently Modified Documents Your Recently Modified Documents site dashlet lists all documents that you have created or modified in the last 7 days, providing quick access to each of them. ● Site Activities Your Site Activities site dashlet tracks the most recent activities that have been performed in the current site. ● Site Profile Your Site Profile site dashlet displays summary details about the current site. ● Site Colleagues The Site Colleagues site dashlet displays all members of this site and their assigned role. This dashlet displays by default. © 2009, OpenThink Labs. All Rights Reserved
  • 70. Available Dashlets on The Site -2 ● Site Calendar Your Site Calendar site dashlet contains a rolled up view of events that you have created, as well as events for each site of which you are a member, providing quick access to each of them. ● Site Wiki Your Site Wiki site dashlet enables you to display content from the Wiki page component. You can configure this dashlet to select the page you want it to display. ● RSS Feed By default, the RSS Feed site dashlet displays all Global Alfresco RSS feeds. You can configure this dashlet to personalize your feeds. You can also add and configure as many instances of this dashlet on the site dashboard as you want ● Site Links The Site Links site dashlet displays the web links relevant to the current site. © 2009, OpenThink Labs. All Rights Reserved
  • 71. Customize the Site Dahboard ● You can add and reorder the site dashlets on the site dashboard the same as you do with personal dashlets on your personal dashboard. ● Ensure you are in your new site and click Customize Dashboard on the banner. The Customize Site Dashboard page where you add and remove site dashlets appears. ● Click Add Dashlets and add Site Wiki to your site dashboard. ● Click OK. The configuration is saved and you return to the updated site dashboard. © 2009, OpenThink Labs. All Rights Reserved
  • 72. Customize the Site Content ● Alfresco Share has the concept of page components which you can add to your site as customized functionality. A page component has rich functionality and is URL addressable. ● Ensure you are within your new site and click Customize Site on the banner. On the Customize Site page, you can add and remove page components. The available page components are: – Wiki – Blog – Document Library – Calendar : The Calendar page component enables you to schedule and track events for all sites you own or of which you are a member. – Links – Discussions ● Click Cancel to return to the site dashboard © 2009, OpenThink Labs. All Rights Reserved
  • 73. Prepare Your Site for Collaboration ● To make the new site as collaborative as possible, you should prepare the following before inviting any users: ● An introduction and explanation for the site (Wiki) ● A set of marketing material documents (Document Library) ● A scheduled webinar introducing everyone to the site (Calendar) © 2009, OpenThink Labs. All Rights Reserved
  • 74. Create an Introduction ● You use the Wiki page component within your site to write your introduction. Once it is written, you add it to the Wiki dashlet on your site dashboard. ● Within your site, click Wiki on the banner. The Wiki page component opens. ● Click New Page and give the page the title Welcome to our collaboration site. ● Add the following content The purpose of this collaboration site is to share information for the project and ensure that communication is as easy as possible. ● Add the tag collaboration ● Click Save. The new page displays © 2009, OpenThink Labs. All Rights Reserved
  • 75. Add the Introduction to Your Site Dashboard ● Within your site, click Site Dashboard on the banner. This returns you to the site dashboard for the current site. ● Click Configure in the Wiki dashlet. The Select Wiki Page page displays. ● Click OK to accept the page you have just created. The text from this wiki page displays in the Wiki dashlet. © 2009, OpenThink Labs. All Rights Reserved
  • 76. Add Marketing Material or Any Other Document ● Within your site, click Document Library on the banner. The Document Library page component opens. ● Click Upload to load your three content items. The Upload File(s) page opens. ● Click the browse button to locate any three pieces of content on your computer to upload. The Upload File(s) page displays the three content items as a list. ● Click Upload File(s). The content items display their upload status. ● Click OK when all content is 100% complete. The page closes and the Document Library displays the selected content items. © 2009, OpenThink Labs. All Rights Reserved
  • 77. Document Library Upload Issue ● Multiple file upload using flash only works on Internet Explore (on Labs 3 Final) ● As workaround, we will completely disable this feature and using traditional HTML upload. ● Reference : http://forums.alfresco.com/en/viewtopic.php?f=9&t=15501 © 2009, OpenThink Labs. All Rights Reserved
  • 78. Update a document ● In the Document Library item list, highlight one of the content items you have uploaded. ● Click the Edit Offline action associated with this content from the dynamic menu. The content moves to the Documents I’m Editing view, indicating that the document is checked out to you. ● Choose to save the file and click OK to save the content item in a location from which you can edit it. Note The content name will be appended with (Working Copy) in the location in which you save it. ● Navigate to this content item on your personal computer, change a word, and save it. ● In the browsing pane, ensure I’m Editing is the selected view under Documents. ● In the item list, select the document you modified and click the Upload New Version action. The Update File page displays. © 2009, OpenThink Labs. All Rights Reserved
  • 79. Update a document -2 ● Screenshoot © 2009, OpenThink Labs. All Rights Reserved
  • 80. Update a document -3 ● Click the browse icon to locate your modified file. Remember that it is appended with (Working Copy). Once you select it, it displays in the Update File page. ● Specify whether it is a minor or major version, type any comments you have, and click Upload File(s). ● Click OK when all content is 100% complete. The updated content item displays in its original location in the library. © 2009, OpenThink Labs. All Rights Reserved
  • 81. Document Preview Issues ● Reference : http://forums.alfresco.com/en/viewtopic.php?f=9&t=14380 ● Solution : Install and compile the newest package (0.9) © 2009, OpenThink Labs. All Rights Reserved
  • 82. Schedule a webinar ● As part of promoting this collaboration site, you want to schedule a webinar to welcome the new users and discuss the purpose of the site. © 2009, OpenThink Labs. All Rights Reserved
  • 83. To schedule a webinar ● Within your site, click Calendar on the banner. The Calendar page component opens. ● Select the date you want to have the webinar and click Add within that date. The Add Event page displays. Screenshoot ● Enter the webinar details and click OK. You return to the calendar with your new webinar displayed on the date you scheduled it. © 2009, OpenThink Labs. All Rights Reserved
  • 84. Invite members to your site ● After you have set up your collaborative site, you can invite people to join it. © 2009, OpenThink Labs. All Rights Reserved
  • 85. To Invite People ● Within your site, click Invite on the banner. The Invite page displays. Screenshoot © 2009, OpenThink Labs. All Rights Reserved
  • 86. To Invite People -2 ● In the Search for People section, type the full or partial name of an internal user you want to invite and click Search. Important : If you do not have any users for this installation add them in Alfresco Explorer. ● Click Add associated with the user you want to add. The user displays in the Invite Users list. ● In the Add External Users section, type the first name, last name, and email for the external user you want to invite, then click Add. © 2009, OpenThink Labs. All Rights Reserved
  • 87. To Invite People -3 ● In the Invite Users list, select a role from the Select Role menu for each user. NOTE : If you want to assign all users the same role, select a role from the Set All Roles to menu to apply to all of the users listed. The role displays in the menu. Screenshoot ● Click Invite. You are notified that the invite has been sent via email to each member invited. © 2009, OpenThink Labs. All Rights Reserved
  • 88. View activities within your site ● Recenlty Modified Dashlet ● Site Activities Dashlet © 2009, OpenThink Labs. All Rights Reserved
  • 89. Use SharePoint Protocol (SPP) Support with Your MS Office Documents ● TODO , Refer to the Alfresco Tutorial Getting Started with SharePoint Protocol Support © 2009, OpenThink Labs. All Rights Reserved
  • 90. Reference ● Alfresco, Enterprise Content Management Implementation, Munwar Sharif, PACKT Publishing ● Installing Alfresco Lab 3 Stable on Ubuntu 8.10, http://wiki.alfresco.com/wiki/Installing_Alfresco_Lab_3_Stable_on_Ubuntu ● Alfresco Labs 3 Stable - Getting Started with Alfresco Share, Alfresco Software Inc © 2009, OpenThink Labs. All Rights Reserved
  • 91. Q&A Thanks! ^_^ © 2009, OpenThink Labs. All Rights Reserved