cancel
Showing results for 
Search instead for 
Did you mean: 

Alfresco 2.1 Installaion Guide

kvramalingeswar
Champ in-the-making
Champ in-the-making
Pls let me know the link of Alfresco 2.1 Installation Guide
1 REPLY 1

kvramalingeswar
Champ in-the-making
Champ in-the-making
I got the information.


Instllation Steps for Alfresco:

       
JDK 1.5.0 was installed in C:\java.
Create one folder(Alfresco)  in C drive.
Unzip jboss-4.2.0.GA .zip file in C:\Alfresco.
Install MySQL 5.0.18
Install Navicat tool for MySQL .
Create one folder(alfresco.war) in  C:\Alfresco\jboss-4.2.0.GA  \server\default\deploy\
Unzip alfresco.war in C:\Alfresco\jboss-4.2.0.GA  \server\default\deploy\alfresco.war.
Edit run.bat file in C:\Alfresco\jboss-4.2.0.GA \bin
                set JAVA_OPTS=%JAVA_OPTS% -Xms1024m -Xmx1024m -XX:MaxPermSize=128m

Copy mysql-connector-java-3.1.7-bin.jar file in C:\Alfresco\jboss-4.2.0.GA  \server\default\lib
Edit web.xml file  in C:\Alfresco\jboss\server\default\deploy\jboss-web.deployer\conf
           Add following entry

           <context-param>
             <param-name>org.jboss.jbossfaces.WAR_BUNDLES_JSF_IMPL</param-name>
             <param-value>true</param-value>
           </context-param>

   Edit hibernate-cfg.properties file in C:\Alfresco\jboss\server\default\deploy\alfresco.war\WEB-INF\classes\alfresco\domain
           Add following entry

           hibernate.dialect=org.hibernate.dialect.MySQLDialect

Edit   repository.properties file in C:\Alfresco\jboss\server\default\deploy\alfresco.war\WEB-INF\classes\alfresco
          Add following entry

         # Database configuration

            db.schema.update=true
            db.driver=com.mysql.jdbc.Driver
            db.name=alfresco
            db.url=jdbc:mysql:///${db.name}
            db.username=root
           db.password=root
           db.pool.initial=10
           db.pool.max=20

     # Email configuration

          mail.host=MailServerName
          mail.port=25
          mail.username=UserId
          mail.password=Password
          # Set this value to UTF-8 or similar for encoding of email messages as required
          mail.encoding=UTF-8
          # Set this value to 7bit or similar for Asian encoding of email headers as required
          mail.header=

Create Database in MySQL
        create database alfresco;

      grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant 

      option;



      grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco'

      with grant option;

Run the application by using run.bat in C:\Alfresco\jboss-4.2.0.GA \bin
  Test application by using URL:http://localhost:8080/alfresco
The default UserID:admin  and  Password:admin