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
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