cancel
Showing results for 
Search instead for 
Did you mean: 

bonjouraprès installation de alfresco 2.1 sur un...

laurentalfresco
Champ in-the-making
Champ in-the-making
bonjour

après installation de alfresco 2.1 sur un serveur redhat4 et une base postgres8, alfresco demarre mais j'ai la log suivante

10:46:57,690 WARN  [org.springframework.remoting.rmi.RmiRegistryFactoryBean] Could not detect RMI registry - creating new one
10:47:00,523 WARN  [org.alfresco.util.OpenOfficeConnectionTester] A connection to OpenOffice could not be established.
10:47:03,275 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] Schema managed by database dialect org.hibernate.dialect.PostgreSQLDialect.
10:47:08,239 INFO  [org.alfresco.repo.domain.schema.SchemaBootstrap] Aucune modification na été apportée au schéma.
ive path './alf_data'.  'dir.root' should be overridden to point to a specific folder.ot' property is set to a relat10:47:10,660 INFO  [org.alfresco.repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: ./alf_data
10:47:10,780 INFO  [org.alfresco.repo.admin.patch.PatchExecuter] Vérification des correctifs à appliquer …
10:47:10,916 INFO  [org.alfresco.repo.module.ModuleServiceImpl] 0 module(s) trouvé(s).
10:47:11,128 ERROR [org.alfresco.smb.protocol] Failed to get local domain/workgroup name, using default of WORKGROUP
10:47:11,129 ERROR [org.alfresco.smb.protocol] (This may be due to firewall settings or incorrect <broadcast> setting)
10:47:11,210 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:1085)
        at org.alfresco.filesys.netbios.server.NetBIOSNameServer.run(NetBIOSNameServer.java:1611)
        at java.lang.Thread.run(Thread.java:595)
10:47:11,214 ERROR [org.alfresco.ftp.protocol] FTP Socket 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.ftp.FTPNetworkServer.run(FTPNetworkServer.java:407)
        at java.lang.Thread.run(Thread.java:595)
10:47:11,223 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - v1.5.0_12-b04; maximum heap size 986,125MB
10:47:11,224 INFO  [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Community Network): Current version 2.1.0 (484) schema 64 - Installed version 2.1.0 (484) schema 64
10:47:11,250 ERROR [org.alfresco.smb.protocol] 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:257)
        at org.alfresco.filesys.smb.server.NetBIOSSessionSocketHandler.createSessionHandlers(NetBIOSSessionSocketHandler.java:165)
        at org.alfresco.filesys.smb.server.SMBServer.run(SMBServer.java:495)
        at java.lang.Thread.run(Thread.java:595)
Merci
3 REPLIES 3

dbaran
Champ in-the-making
Champ in-the-making
Apparemment, tu as déjà un serveur FTP et un serveur Samba qui tourne sur ta RedHat.
Suivant comment tu souhaite accéder à ton repository Alfresco (via FTP, via CIFS), il faut que tu arrêtes ton service FTP et/ou Samba de ton serveur RedHat, ou alors, si tu ne souhaite pas ces modes d'accès à ton repository Alfresco, désactive les services lancés par Alfresco, en créant un fichier file-servers-custom.xml dans le répertoire shared/classes/alfresco/extension de ton Tomcat, avec le contenu suivant:
<alfresco-config area="file-servers">

   <config evaluator="string-compare" condition="CIFS Server">
      <serverEnable enabled="false" />
   </config>

   <config evaluator="string-compare" condition="FTP Server">
      <serverEnable enabled="false" />
   </config>

   <config evaluator="string-compare" condition="NFS Server">
      <serverEnable enabled="false" />
   </config>

</alfresco-config>

laurentalfresco
Champ in-the-making
Champ in-the-making
n'est-il pas possible de modifier le port ftp pour alfresco et donc de ne pas le désactiver ? Si oui dans quel fichier dois-je faire la modif ?

Merci

dbaran
Champ in-the-making
Champ in-the-making
cf. le wiki anglophone File server configuration et plus particulièrement FTP server configuration