cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to login after fresh install

schoelje
Champ in-the-making
Champ in-the-making
Alfresco CE 4.2c
Fresh install
System: SolydK (Debian testing + KDE)
Memory: 2G
DB: MySql
Webserver: Apache2 (for other applications)

Alfresco explorer works fine:
http://localhost:8080/alfresco

Alfresco share:
http://localhost:8080/share
Gives me this message:

    The remote server may be unavailable or your authentication details have not been recognized
Tried to login with:
admin/admin
alfresco/alfresco

I did a search on "ERROR" in the logs, and got these returned:
./localhost_access_log.2013-04-24.txt:359:127.0.0.1 - - [24/Apr/2013:02:35:46 -0400] "GET /share/page/type/login?error=true HTTP/1.1" 200 10121
./localhost_access_log.2013-04-24.txt:514:127.0.0.1 - - [24/Apr/2013:02:37:51 -0400] "GET /share/page/type/login?error=true HTTP/1.1" 200 10121
./catalina.out:80: 2013-04-24 02:31:50,588  ERROR [org.alfresco.fileserver] [CIFS Server] [SMB] Server error : org.alfresco.jlan.server.config.InvalidConfigurationException: Error initializing TCP-IP SMB session handler, Address already in use
./catalina.out:81: 2013-04-24 02:31:50,610  ERROR [org.alfresco.fileserver] [CIFS Server] Error from JLAN
./catalina.out:82: org.alfresco.jlan.server.config.InvalidConfigurationException: Error initializing TCP-IP SMB session handler, Address already in use

I guess that some port is already in use, but I don't know which one or where to start.

nmap gave me this:
sudo nmap -sS -O 127.0.0.1

Starting Nmap 6.00 ( http://nmap.org ) at 2013-04-24 05:11 EDT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00016s latency).
Not shown: 988 closed ports
PORT      STATE SERVICE
21/tcp    open  ftp
80/tcp    open  http
111/tcp   open  rpcbind
139/tcp   open  netbios-ssn
445/tcp   open  microsoft-ds
631/tcp   open  ipp
3306/tcp  open  mysql
5432/tcp  open  postgresql
8009/tcp  open  ajp13
8080/tcp  open  http-proxy
8443/tcp  open  https-alt
50500/tcp open  unknown
and see that port 8080 is used by http-proxy, but Tomcat is by default configured on the same port.
So, I changed all 8080 to 7070 in these files:
  • /opt/alfresco/tomcat/shared/classes/alfresco-global.properties
  • /opt/alfresco/tomcat/conf/server.xml
  • /opt/alfresco/tomcat/shared/classes/alfresco/web-extension/share-config-custom.xml
Unfortunately, with the same result

Although I'm new to Alfresco, I have some experience programming (15 years).
I've been searching this forum, and google, but haven't found an adequate answer yet.
So, I hope someone here can guide me through this.

Below are the installation details, catalina.out, and the alfresco-global.properties file.
I've attached the localhost_access_log.2013-04-24.txt

Installation details:
Edit MySQL’s configuration (/etc/mysql/my.cnf) and set the following configurations:
[mysqld]
character-set-server = utf8
collation-server = utf8_unicode_ci
default-storage-engine = INNODB
max_sp_recursion_depth = 100
max_allowed_packet = 20M
thread_stack = 512K
optimizer-search-depth = 0
innodb_locks_unsafe_for_binlog = 1
Create database and user
mysql -u root -p
create database alfresco DEFAULT CHARACTER SET utf8;
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;
FLUSH PRIVILEGES;
quit

service mysql restart
Installing Alfresco
# ./alfresco-community-4.2.c-installer-linux-x64.bin —mode text

—————————————————————————-
—————————————————————————-
Language Selection

Please select the installation language
[1] English - English
[2] French - Français
[3] Spanish - Español
[4] Italian - Italiano
[5] German - Deutsch
[6] Japanese - 日本語
[7] Dutch - Nederlands
[8] Russian - Русский
[9] Simplified Chinese - 简体中文
Please choose an option [1] :
Warning: Alfresco recommends at least 1024MB of memory. 1002MB detected.
Press [Enter] to continue :
—————————————————————————-
Welcome to the Alfresco Community Setup Wizard.

—————————————————————————-
Installation Type

[1] Easy - Installs servers with the default configuration
[2] Advanced - Configures server ports and service properties.: Also choose optional components to install.
Please choose an option [1] : 2

—————————————————————————-
Select the components you want to install; clear the components you do not want
to install. Click Next when you are ready to continue.

Java [Y/n] :y

PostgreSQL [y/N] : n

Alfresco : Y (Cannot be edited)

SharePoint [Y/n] :n

Web Quick Start [Y/n] :y

Google Docs Integration [Y/n] :y

LibreOffice [Y/n] :n

Is the selection above correct? [Y/n]: y

—————————————————————————-
Installation folder

Please choose a folder to install Alfresco Community

Select a folder [/opt/alfresco-4.2.c]: /opt/alfresco

—————————————————————————-
Database Configuration

JDBC URL: [jdbc:postgresql://localhost/alfresco]: jdbc:mysql://localhost/alfresco

JDBC Driver: [org.postgresql.Driver]: org.gjt.mm.mysql.Driver

Database name: [alfresco]:

Username: []: alfresco

Password: : alfresco
Verify: : alfresco
—————————————————————————-
Tomcat Port Configuration

Please enter the Tomcat configuration parameters you wish to use.

Web Server domain: [127.0.0.1]:

Tomcat Server Port: [8080]:

Tomcat Shutdown Port: [8005]:

Tomcat SSL Port [8443]:

Tomcat AJP Port: [8009]:

—————————————————————————-
Alfresco FTP Port

Please choose a port number to use for the integrated Alfresco FTP server.

Port: [21]:

—————————————————————————-
Alfresco RMI Port

Please choose a port number for Alfresco to use to execute remote commands.

Port: [50500]:

—————————————————————————-
Admin Password

Please give a password to use for the Alfresco administrator account.

Admin Password: : alfresco
Repeat Password: : alfresco
—————————————————————————-
Install as a service

You can optionally register Alfresco Community as a service. This way it will
automatically be started every time the machine is started.

Install Alfresco Community as a service? [Y/n]: y


—————————————————————————-
Setup is now ready to begin installing Alfresco Community on your computer.

Do you want to continue? [Y/n]: y

—————————————————————————-
—————————————————————————-
alfresco-global.properties

###############################
## Common Alfresco Properties #
###############################

dir.root=/opt/alfresco/alf_data

alfresco.context=alfresco
alfresco.host=127.0.0.1
alfresco.port=8080
alfresco.protocol=http

share.context=share
share.host=127.0.0.1
share.port=8080
share.protocol=http

### database connection properties ###
db.driver=org.gjt.mm.mysql.Driver
db.username=alfresco
db.password=alfresco
db.name=alfresco
db.url=jdbc:mysql://localhost/alfresco

### FTP Server Configuration ###
ftp.enabled=true
ftp.port=21

### RMI service ports ###
alfresco.rmi.services.port=50500
avm.rmi.service.port=0
avmsync.rmi.service.port=0
attribute.rmi.service.port=0
authentication.rmi.service.port=0
repo.rmi.service.port=0
action.rmi.service.port=0
deployment.rmi.service.port=0

### External executable locations ###
ooo.exe=/usr/lib/libreoffice/program/soffice.bin
ooo.enabled=true
ooo.port=8100
img.root=/opt/alfresco/common
img.dyn=${img.root}/lib
img.exe=${img.root}/bin/convert
swf.exe=/opt/alfresco/common/bin/pdf2swf
swf.languagedir=/opt/alfresco/common/japanese

jodconverter.enabled=true
jodconverter.officeHome=/usr/lib/libreoffice
jodconverter.portNumbers=8100

### Initial admin password ###
alfresco_user_store.adminpassword=eac2d371655e14c1dc0744fd60a70251

### E-mail site invitation setting ###
notification.email.siteinvite=false

### License location ###
dir.license.external=/opt/alfresco

### Solr indexing ###
index.subsystem.name=solr
dir.keystore=${dir.root}/keystore
solr.port.ssl=8443

### BPM Engine ###
system.workflow.engine.jbpm.enabled=false
catalina.out
Apr 24, 2013 2:26:09 AM org.apache.catalina.core.AprLifecycleListener init
INFO: Loaded APR based Apache Tomcat Native library 1.1.24 using APR version 1.4.6.
Apr 24, 2013 2:26:09 AM org.apache.catalina.core.AprLifecycleListener init
INFO: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
Apr 24, 2013 2:26:10 AM org.apache.catalina.core.AprLifecycleListener initializeSSL
INFO: OpenSSL successfully initialized (OpenSSL 0.9.8o 01 Jun 2010)
Apr 24, 2013 2:26:11 AM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-apr-8080"]
Apr 24, 2013 2:26:11 AM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["ajp-apr-8009"]
Apr 24, 2013 2:26:11 AM org.apache.coyote.AbstractProtocol init
INFO: Initializing ProtocolHandler ["http-bio-8443"]
Apr 24, 2013 2:26:14 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 9158 ms
Apr 24, 2013 2:26:15 AM org.apache.catalina.core.StandardService startInternal
INFO: Starting service Catalina
Apr 24, 2013 2:26:15 AM org.apache.catalina.core.StandardEngine startInternal
INFO: Starting Servlet Engine: Apache Tomcat/7.0.30
Apr 24, 2013 2:26:15 AM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor /opt/alfresco/tomcat/conf/Catalina/localhost/solr.xml
Apr 24, 2013 2:26:15 AM org.apache.catalina.startup.SetContextPropertiesRule begin
WARNING: [SetContextPropertiesRule]{Context} Setting property 'debug' to '0' did not find a matching property.
2013-04-24 02:26:41,737  WARN  [handler.component.SpellCheckComponent] [localhost-startStop-1] No queryConverter defined, using default converter
2013-04-24 02:26:45,718  WARN  [handler.component.SpellCheckComponent] [localhost-startStop-1] No queryConverter defined, using default converter
Apr 24, 2013 2:26:46 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive /opt/alfresco/tomcat/webapps/wcmqs.war
02:26:52,962 WARN  [org.apache.myfaces.shared_impl.util.LocaleUtils] Locale name in faces-config.xml null or empty, setting locale to default locale : en_US
Apr 24, 2013 2:27:13 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive /opt/alfresco/tomcat/webapps/share.war
2013-04-24 02:27:40,182  INFO  [extensions.webscripts.TemplateProcessorRegistry] [localhost-startStop-1] Registered template processor freemarker for extension ftl
2013-04-24 02:27:40,566  INFO  [extensions.webscripts.ScriptProcessorRegistry] [localhost-startStop-1] Registered script processor javascript for extension js
2013-04-24 02:27:40,576  INFO  [extensions.webscripts.TemplateProcessorRegistry] [localhost-startStop-1] Registered template processor freemarker for extension ftl
2013-04-24 02:27:40,608  INFO  [extensions.webscripts.ScriptProcessorRegistry] [localhost-startStop-1] Registered script processor javascript for extension js
2013-04-24 02:27:48,394  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 344 Web Scripts (+0 failed), 357 URLs
2013-04-24 02:27:48,395  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 8 Package Description Documents (+0 failed)
2013-04-24 02:27:48,395  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 0 Schema Description Documents (+0 failed)
2013-04-24 02:27:50,078  INFO  [extensions.webscripts.AbstractRuntimeContainer] [localhost-startStop-1] Initialised Spring Surf Container Web Script Container (in 9447.365ms)
2013-04-24 02:27:50,106  INFO  [extensions.webscripts.TemplateProcessorRegistry] [localhost-startStop-1] Registered template processor freemarker for extension ftl
2013-04-24 02:27:50,140  INFO  [extensions.webscripts.ScriptProcessorRegistry] [localhost-startStop-1] Registered script processor javascript for extension js
Apr 24, 2013 2:27:51 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive /opt/alfresco/tomcat/webapps/alfresco.war
Apr 24, 2013 2:28:12 AM org.apache.catalina.startup.TaglibUriRule body
INFO: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
Apr 24, 2013 2:28:12 AM org.apache.catalina.core.StandardContext addApplicationListener
INFO: The listener "org.apache.myfaces.webapp.StartupServletContextListener" is already configured for this context. The duplicate definition has been ignored.
Apr 24, 2013 2:28:16 AM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
2013-04-24 02:28:55,231  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'sysAdmin' subsystem, ID: [sysAdmin, default]
2013-04-24 02:28:55,320  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'sysAdmin' subsystem, ID: [sysAdmin, default] complete
Apr 24, 2013 2:29:34 AM org.activiti.engine.impl.ProcessEngineImpl <init>
INFO: ProcessEngine default created
2013-04-24 02:30:38,135  INFO  [extensions.webscripts.TemplateProcessorRegistry] [localhost-startStop-1] Registered template processor Repository Template Processor for extension ftl
2013-04-24 02:30:38,143  INFO  [extensions.webscripts.ScriptProcessorRegistry] [localhost-startStop-1] Registered script processor Repository Script Processor for extension js
2013-04-24 02:31:22,580  INFO  [domain.schema.SchemaBootstrap] [localhost-startStop-1] Connecting to database: jdbc:mysql://localhost/alfresco, UserName=alfresco@localhost, MySQL-AB JDBC Driver
2013-04-24 02:31:22,581  INFO  [domain.schema.SchemaBootstrap] [localhost-startStop-1] Schema managed by database dialect org.hibernate.dialect.MySQLInnoDBDialect.
2013-04-24 02:31:25,980  INFO  [domain.schema.SchemaBootstrap] [localhost-startStop-1] No changes were made to the schema.
Apr 24, 2013 2:31:26 AM org.activiti.engine.impl.jobexecutor.JobExecutor start
INFO: Starting up the JobExecutor[org.activiti.engine.impl.jobexecutor.DefaultJobExecutor].
Apr 24, 2013 2:31:26 AM org.activiti.engine.impl.jobexecutor.AcquireJobsRunnable run
INFO: JobExecutor[org.activiti.engine.impl.jobexecutor.DefaultJobExecutor] starting to acquire jobs
2013-04-24 02:31:29,194  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'Search' subsystem, ID: [Search, managed, solr]
2013-04-24 02:31:33,620  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'Search' subsystem, ID: [Search, managed, solr] complete
2013-04-24 02:31:34,466  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'thirdparty' subsystem, ID: [thirdparty, default]
2013-04-24 02:31:35,449  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'thirdparty' subsystem, ID: [thirdparty, default] complete
2013-04-24 02:31:35,453  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'OOoDirect' subsystem, ID: [OOoDirect, default]
2013-04-24 02:31:36,919  WARN  [alfresco.util.OpenOfficeConnectionTester] [localhost-startStop-1] An initial OpenOffice connection could not be established.
2013-04-24 02:31:36,942  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'OOoDirect' subsystem, ID: [OOoDirect, default] complete
2013-04-24 02:31:36,955  INFO  [repo.admin.ConfigurationChecker] [localhost-startStop-1] The Alfresco root data directory ('dir.root') is: /opt/alfresco/alf_data
2013-04-24 02:31:37,090  INFO  [admin.patch.PatchExecuter] [localhost-startStop-1] Checking for patches to apply …
2013-04-24 02:31:41,516  INFO  [admin.patch.PatchExecuter] [localhost-startStop-1] No patches were required.
2013-04-24 02:31:41,548  INFO  [repo.module.ModuleServiceImpl] [localhost-startStop-1] Found 2 module(s).
2013-04-24 02:31:41,659  INFO  [repo.module.ModuleServiceImpl] [localhost-startStop-1] Starting module 'org_alfresco_module_wcmquickstart' version 1.0.
2013-04-24 02:31:41,731  INFO  [repo.module.ModuleServiceImpl] [localhost-startStop-1] Starting module 'org.alfresco.integrations.google.docs' version 2.0.1.
2013-04-24 02:31:41,789  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'fileServers' subsystem, ID: [fileServers, default]
2013-04-24 02:31:44,519  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1]
2013-04-24 02:31:45,070  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'Authentication' subsystem, ID: [Authentication, managed, alfrescoNtlm1] complete
2013-04-24 02:31:50,164  WARN  [org.alfresco.fileserver] [localhost-startStop-1] CIFS, Unable to get local domain/workgroup name, using default of WORKGROUP. This may be due to firewall settings or incorrect <broadcast> setting)
2013-04-24 02:31:50,416  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'fileServers' subsystem, ID: [fileServers, default] complete
2013-04-24 02:31:50,417  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'imap' subsystem, ID: [imap, default]
2013-04-24 02:31:50,588  ERROR [org.alfresco.fileserver] [CIFS Server] [SMB] Server error : org.alfresco.jlan.server.config.InvalidConfigurationException: Error initializing TCP-IP SMB session handler, Address already in use
2013-04-24 02:31:50,610  ERROR [org.alfresco.fileserver] [CIFS Server] Error from JLAN
org.alfresco.jlan.server.config.InvalidConfigurationException: Error initializing TCP-IP SMB session handler, Address already in use
   at org.alfresco.jlan.smb.server.nio.NIOCifsConnectionsHandler.initializeHandler(NIOCifsConnectionsHandler.java:259)
   at org.alfresco.jlan.smb.server.SMBServer.run(SMBServer.java:479)
   at java.lang.Thread.run(Thread.java:722)
2013-04-24 02:31:52,362  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'imap' subsystem, ID: [imap, default] complete
2013-04-24 02:31:52,362  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'email' subsystem, ID: [email, outbound]
2013-04-24 02:31:52,483  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'email' subsystem, ID: [email, outbound] complete
2013-04-24 02:31:52,483  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'email' subsystem, ID: [email, inbound]
2013-04-24 02:31:52,647  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'email' subsystem, ID: [email, inbound] complete
2013-04-24 02:31:52,647  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'googledocs' subsystem, ID: [googledocs, default]
2013-04-24 02:31:52,753  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'googledocs' subsystem, ID: [googledocs, default] complete
2013-04-24 02:31:52,754  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'Subscriptions' subsystem, ID: [Subscriptions, default]
2013-04-24 02:31:52,777  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'Subscriptions' subsystem, ID: [Subscriptions, default] complete
2013-04-24 02:31:52,781  INFO  [repo.usage.UserUsageTrackingComponent] [localhost-startStop-1] Disabled - clear non-missing user usages …
2013-04-24 02:31:52,819  INFO  [repo.usage.UserUsageTrackingComponent] [localhost-startStop-1] Found 0 users to clear
2013-04-24 02:31:52,833  INFO  [repo.usage.UserUsageTrackingComponent] [localhost-startStop-1] … cleared non-missing usages for 0 users
2013-04-24 02:31:52,833  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'Synchronization' subsystem, ID: [Synchronization, default]
2013-04-24 02:31:53,170  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'Synchronization' subsystem, ID: [Synchronization, default] complete
2013-04-24 02:31:53,471  INFO  [service.descriptor.DescriptorService] [localhost-startStop-1] Alfresco JVM - v1.7.0_07-b10; maximum heap size 989.875MB
2013-04-24 02:31:53,473  INFO  [service.descriptor.DescriptorService] [localhost-startStop-1] Alfresco started (Community). Current version: 4.2.0 (4576) schema 6,022. Originally installed version: 4.2.0 (4576) schema 6,022.
2013-04-24 02:31:53,481  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'ActivitiesFeed' subsystem, ID: [ActivitiesFeed, default]
2013-04-24 02:31:53,793  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'ActivitiesFeed' subsystem, ID: [ActivitiesFeed, default] complete
2013-04-24 02:31:53,793  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'Replication' subsystem, ID: [Replication, default]
2013-04-24 02:31:53,886  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'Replication' subsystem, ID: [Replication, default] complete
2013-04-24 02:32:14,090  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Starting 'googledocs' subsystem, ID: [googledocs, v2]
2013-04-24 02:32:14,390  INFO  [management.subsystems.ChildApplicationContextFactory] [localhost-startStop-1] Startup of 'googledocs' subsystem, ID: [googledocs, v2] complete
2013-04-24 02:32:34,836  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 498 Web Scripts (+0 failed), 779 URLs
2013-04-24 02:32:34,838  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 2 Package Description Documents (+0 failed)
2013-04-24 02:32:34,838  INFO  [extensions.webscripts.DeclarativeRegistry] [localhost-startStop-1] Registered 1 Schema Description Documents (+0 failed)
2013-04-24 02:32:34,849  INFO  [extensions.webscripts.AbstractRuntimeContainer] [localhost-startStop-1] Initialised Repository Web Script Container (in 20387.67ms)
2013-04-24 02:32:34,916  INFO  [extensions.webscripts.TemplateProcessorRegistry] [localhost-startStop-1] Registered template processor freemarker for extension ftl
2013-04-24 02:32:34,924  INFO  [extensions.webscripts.ScriptProcessorRegistry] [localhost-startStop-1] Registered script processor javascript for extension js
Apr 24, 2013 2:32:35 AM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
Apr 24, 2013 2:32:54 AM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
Apr 24, 2013 2:32:59 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive /opt/alfresco/tomcat/webapps/awe.war
Apr 24, 2013 2:33:28 AM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory /opt/alfresco/tomcat/webapps/host-manager
Apr 24, 2013 2:33:28 AM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory /opt/alfresco/tomcat/webapps/manager
Apr 24, 2013 2:33:28 AM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory /opt/alfresco/tomcat/webapps/ROOT
Apr 24, 2013 2:33:28 AM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-apr-8080"]
Apr 24, 2013 2:33:28 AM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["ajp-apr-8009"]
Apr 24, 2013 2:33:28 AM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8443"]
Apr 24, 2013 2:33:28 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 434093 ms
2013-04-24 02:33:40,273  INFO  [web.site.EditionInterceptor] [http-apr-8080-exec-4] Successfully retrieved license information from Alfresco.
12 REPLIES 12

bisana
Champ on-the-rise
Champ on-the-rise
Hi
No need to install java on the OS, alfresco installation comes with default java installation
As u had tried, try again make sure no alfresco instance or process is running, then do it
[ do not use the just now installed instance, becuase you might not selected java]
It should work

schoelje
Champ in-the-making
Champ in-the-making
I did it all with default settings: clean OS, no Java, default install (postgresql instead of mysql), but unfortunately the same result.
It took 8 minutes, 90% CPU, and over 800MB memory to just show the login page, and still I couldn't login.

Doubting myself, I also tried the competitor (Nuxeo) on a clean install with openjdk-7 and MySql: installed and working within 30 minutes. The login shows within 8 seconds, but more importantly: I can login.

Although I would have preferred Alfresco, with my current experience I regretfully had to decide not to use Alfresco for the Back Office version of SolydK I'm currently working on.

If the developers would ever like me to test this further, they just need to send me an e-mail.

Thank you for your time and effort, bisana.

supreeth
Champ in-the-making
Champ in-the-making
Can any body please tell me the solution for this?

Thanks in advance