Couldn't browse alfresco after isntall - mysql - debian
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 04:58 PM
Then, I start ./alfresco.sh start, nothing appears in logs
I try to browse http://myserver:8080 and gets the following errors :
debian:/opt/alfresco# more alfresco.log
22:54:25,056 ERROR [org.alfresco.repo.content.transform.magick.AbstractImageMagickContentTransformer] ImageMagickContentTransformer not available: Failed
to execute command: imconvert /opt/alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_source_32619.gif /opt/alfresco/tomcat/temp/Alfresco/I
mageMagickContentTransformer_init_target_32620.png
22:54:44,939 ERROR [org.alfresco.smb.protocol.netbios] NetBIOSNameServer setup error:
java.net.BindException: Address already in use
at java.net.PlainDatagramSocketImpl.bind0(Native Method)
at java.net.PlainDatagramSocketImpl.bind(PlainDatagramSocketImpl.java:82)
at java.net.DatagramSocket.bind(DatagramSocket.java:368)
at java.net.DatagramSocket.<init>(DatagramSocket.java:210)
at java.net.DatagramSocket.<init>(DatagramSocket.java:261)
at java.net.DatagramSocket.<init>(DatagramSocket.java:234)
at org.alfresco.filesys.netbios.server.NetBIOSNameServer.openSocket(NetBIOSNameServer.java:1080)
at org.alfresco.filesys.netbios.server.NetBIOSNameServer.run(NetBIOSNameServer.java:1489)
at java.lang.Thread.run(Thread.java:595)
22:54:45,001 ERROR [org.alfresco.smb.protocol] [SMB] Server error :
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at java.net.ServerSocket.<init>(ServerSocket.java:141)
at org.alfresco.filesys.smb.server.SessionSocketHandler.initialize(SessionSocketHandler.java:249)
at org.alfresco.filesys.smb.server.NetBIOSSessionSocketHandler.createSessionHandlers(NetBIOSSessionSocketHandler.java:157)
at org.alfresco.filesys.smb.server.SMBServer.run(SMBServer.java:522)
at java.lang.Thread.run(Thread.java:595)
22:54:45,660 INFO [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Open Source) - v1.1.2; repository v1.1.2
debian:/opt/alfresco#
any idea ?
I try to browse http://myserver:8080 and gets the following errors :
debian:/opt/alfresco# more alfresco.log
22:54:25,056 ERROR [org.alfresco.repo.content.transform.magick.AbstractImageMagickContentTransformer] ImageMagickContentTransformer not available: Failed
to execute command: imconvert /opt/alfresco/tomcat/temp/Alfresco/ImageMagickContentTransformer_init_source_32619.gif /opt/alfresco/tomcat/temp/Alfresco/I
mageMagickContentTransformer_init_target_32620.png
22:54:44,939 ERROR [org.alfresco.smb.protocol.netbios] NetBIOSNameServer setup error:
java.net.BindException: Address already in use
at java.net.PlainDatagramSocketImpl.bind0(Native Method)
at java.net.PlainDatagramSocketImpl.bind(PlainDatagramSocketImpl.java:82)
at java.net.DatagramSocket.bind(DatagramSocket.java:368)
at java.net.DatagramSocket.<init>(DatagramSocket.java:210)
at java.net.DatagramSocket.<init>(DatagramSocket.java:261)
at java.net.DatagramSocket.<init>(DatagramSocket.java:234)
at org.alfresco.filesys.netbios.server.NetBIOSNameServer.openSocket(NetBIOSNameServer.java:1080)
at org.alfresco.filesys.netbios.server.NetBIOSNameServer.run(NetBIOSNameServer.java:1489)
at java.lang.Thread.run(Thread.java:595)
22:54:45,001 ERROR [org.alfresco.smb.protocol] [SMB] Server error :
java.net.BindException: Address already in use
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)
at java.net.ServerSocket.bind(ServerSocket.java:319)
at java.net.ServerSocket.<init>(ServerSocket.java:185)
at java.net.ServerSocket.<init>(ServerSocket.java:141)
at org.alfresco.filesys.smb.server.SessionSocketHandler.initialize(SessionSocketHandler.java:249)
at org.alfresco.filesys.smb.server.NetBIOSSessionSocketHandler.createSessionHandlers(NetBIOSSessionSocketHandler.java:157)
at org.alfresco.filesys.smb.server.SMBServer.run(SMBServer.java:522)
at java.lang.Thread.run(Thread.java:595)
22:54:45,660 INFO [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Open Source) - v1.1.2; repository v1.1.2
debian:/opt/alfresco#
any idea ?
Labels:
- Labels:
-
Archive
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2006 05:03 PM
sorry for boring you, it works on http://myserver:8080/alfresco
\o/
But i've seen errors on my log, if you have ideas I take, but we'll see that tomorrow, 23h here and had a hard working day
See you
\o/
But i've seen errors on my log, if you have ideas I take, but we'll see that tomorrow, 23h here and had a hard working day
See you

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2006 05:28 AM
The frst error you are seeing is caused by the executable required to do image transformations not being in your PATH environment variable.
The second error (bind) is normally caused by something already listening on the requested port or you are running the server as a user that doesn't have root privilieges (as ports under 1024 are protected).
In your case it seems that something is already listening on the port the NetBIOSNameServer is requesting, this is normally UDP 137 & 138 and TCP port 139. Try running netstat -ln to see what is listening to any of these ports.
The second error (bind) is normally caused by something already listening on the requested port or you are running the server as a user that doesn't have root privilieges (as ports under 1024 are protected).
In your case it seems that something is already listening on the port the NetBIOSNameServer is requesting, this is normally UDP 137 & 138 and TCP port 139. Try running netstat -ln to see what is listening to any of these ports.
