Probleme configuration CIFS

cancel
Showing results for 
Search instead for 
Did you mean: 
unknown-user
Active Member

Probleme configuration CIFS

C'est encore moi!

J'ai un probleme lors de la création du CIFS.

Alfresco est installé sur un serveur Linux, serveur sur le domaine DOMAIN1 avec l'ip IP1
Mon ordinateur Windows est quand a lui sur le DOMAIN2.

J'ai créé deux subsystems: authentication, qui contient le LDAP et passthru (les deux fonctionnent sur alfresco) et fileServers pour le CIFS.

Voici mon fichier de configuration file-servers.properties

# Alfresco filesystem context
filesystem.name=Alfresco
filesystem.acl.global.defaultAccessLevel=

# AVM filesystem context
filesystem.avm.name=AVM
filesystem.avm.enabled=true
# virtual view stores filter can be any of the following: normal, site, staging, author, preview
filesystem.avm.stores=site,staging,author


### Root directory to open onto ###
filesystem.storeName=${spaces.store}
filesystem.rootPath=${protocols.rootPath}

# ALF-3856
# File name patterns that trigger rename shuffle detection
filesystem.renameShufflePattern=(.*\\.tmp)|(.*\\.wbk)|(.*\\.bak)|(.*\\~)

# Should we ever set the read only flag on folders? This may cause problematic
# behaviour in Windows clients. See ALF-6727.
filesystem.setReadOnlyFlagOnFolders=false


### CIFS Server Configuration ###
cifs.enabled=true
cifs.serverName=ged1
cifs.domain=DOMAIN1 #(celui du serveur)
cifs.broadcast=255.255.255.255
# An empty value indicates bind to all available network adapters
cifs.bindto=
cifs.ipv6.enabled=false
cifs.hostannounce=true
# Enable the use of asynchronous sockets/NIO code
cifs.disableNIO=false
# Disable the use of JNI code. Only currently affects Windows
cifs.disableNativeCode=false
# Session timeout, in seconds. Defaults to 15 minutes, to match the default Windows client setting.
# If no I/O is received within that time the session is closed by the server
cifs.sessionTimeout=900

# Can be mapped to non-privileged ports, then use firewall rules to forward requests from the standard ports
cifs.tcpipSMB.port=1445
cifs.netBIOSSMB.sessionPort=1139
cifs.netBIOSSMB.namePort=1137
cifs.netBIOSSMB.datagramPort=1138

# Optional WINS server primary and secondary IP addresses. Ignored if autoDetectEnabled=true
cifs.WINS.autoDetectEnabled=true
cifs.WINS.primary=1.2.3.4
cifs.WINS.secondary=5.6.7.8

# CIFS session debug flags (also enable org.alfresco.fileserver=debug logging level)
# Comma delimeted list of levels :-
#    NETBIOS, STATE, RXDATA, TXDATA, DUMPDATA, NEGOTIATE, TREE, SEARCH, INFO, FILE, FILEIO, TRANSACT
#    ECHO, ERROR, IPC, LOCK, PKTTYPE, DCERPC, STATECACHE, TIMING, NOTIFY, STREAMS, SOCKET, PKTPOOL
#    PKTSTATS, THREADPOOL, BENCHMARK
cifs.sessionDebug=INFO

# Big Switch, are the Desktop Actions and URL shortcuts shown for CIFS ?
cifs.pseudoFiles.enabled=true

# CIFS URL for alfresco explorer
cifs.pseudoFiles.explorerURL.enabled=true
cifs.pseudoFiles.explorerURL.fileName=__Alfresco.url

# Cifs URL for alfresco share
cifs.pseudoFiles.shareURL.enabled=false
cifs.pseudoFiles.shareURL.fileName=__Share.url

### FTP Server Configuration ###
ftp.enabled=false
ftp.port=21
# An empty value indicates bind to all available network adapters
ftp.bindto=

# FTP data port range, a value of 0:0 disables the data port range and will use the next available port
# Valid range is 1024-65535
ftp.dataPortFrom=0
ftp.dataPortTo=0

# FTPS support (enabled when the keystore, truststore and passphrase are set)
ftp.keyStore=
ftp.trustStore=
ftp.passphrase=
ftp.requireSecureSession=true
ftp.sslEngineDebug=false

# FTP session debug flags (also enable org.alfresco.fileserver=debug logging level)
# Comma delimeted list of levels :-
#        STATE, RXDATA, TXDATA, DUMPDATA, SEARCH, INFO, FILE, FILEIO, ERROR, PKTTYPE, TIMING, DATAPORT, DIRECTORY, SSL
ftp.sessionDebug=

### NFS Server Configuration ###
nfs.enabled=false
# NodeMonitor to update cache of NFS server on nodes renaming and deleting not through NFS protocol
nfs.nodeMonitor.enabled=${nfs.enabled}
# Mount/NFS server ports, 0 will allocate next available port
nfs.mountServerPort=0
nfs.nfsServerPort=2049

# RPC registration port, 0 will allocate next available port
#  Some portmapper/rpcbind services require a privileged port to be used
nfs.rpcRegisterPort=0

# To disable NFS and mount server registering with a portmapper set nfs.portMapperPort to -1
nfs.portMapperPort=111
# Enable the builtin portmapper service
nfs.portMapperEnabled=false

# NFS session debug flags (also enable org.alfresco.fileserver=debug logging level)
# Comma delimeted list of levels :-
#        RXDATA, TXDATA, DUMPDATA, SEARCH, INFO, FILE, FILEIO, ERROR, TIMING, DIRECTORY, SESSION
nfs.sessionDebug=

nfs.mountServerDebug=false

#
# Filesystem cluster configuration
#
filesystem.cluster.enabled=false
filesystem.cluster.name=AlfrescoFilesysCache
# Where to find the hazelcast config file
filesystem.cluster.configFile=not specified
# Hazelcast cluster debug flags
# Comma delimeted list of levels
#    "StateCache", "Expire", "NearCache", "Oplock", "ByteLock", "FileAccess", "Membership",
#    "Cleanup", "PerNode", "ClusterEntry", "ClusterMessage", "RemoteTask", "RemoteTiming",
#        "Rename", "FileDataUpdate", "FileStatus"
filesystem.cluster.debugFlags=

Au lancement d'alfresco, la seule erreur qui est afficher dans les logs est la suivante:
CIFS: Unable to get local domain/workgroup name, using default of WORKGROUP

Ensuite, depuis mon explorateur windows, lorsque je tape:

\\IP1\ged1  il ne trouve absolument rien. j'ai essayé toutes les variantes possibles de ce chemin d'acces, sans succes.
3 Replies
sibe
Active Member

Re: Probleme configuration CIFS

Avant tout je te conseil vivement de mettre toute ta configuration via le fichier alfresco-global.properties.

Assurez-vous d'avoir fait toutes les config en amont : http://wiki.alfresco.com/wiki/Configuring_the_CIFS_and_web_servers_for_Kerberos/AD_integration

Ajoute les variables ci dessous en plus de celles que tu as déjà mis :
cifs.WINS.autoDetectEnabled=true
cifs.sessionDebug=NETBIOS, STATE, TREE, TRAN, ECHO, ERRORS, IPC, SOCKET, NEGOTIATE

N'hésites pas aussi à poster tes fichiers de config je pense par exemple à krb5.ini …

A plus !!!
unknown-user
Active Member

Re: Probleme configuration CIFS

Merci pour ta reponse,

mais j'ai oublié de préciser que j'utilise Alfresco 4, et si je ne m'abuse, ton lien wiki est pour les version antérieures a 3.2

J'ai utilisé cette page  pour configurer Alfresco: http://wiki.alfresco.com/wiki/Alfresco_Authentication_Subsystems et j'ai pas Kerberos d'installé sur le serveur
unknown-user
Active Member

Re: Probleme configuration CIFS

Ah, ça marche!

J'ai utilisé ce tuto: http://wiki.alfresco.com/wiki/CIFS_linux

Bizarrement le nom que j'ai donné a mon serveur CIFS est ignoré. Je me connecte au CIFS en faisant: \\IP\alfresco.

Par contre je n'ai acces qu'au dossier site et pas aux fichiers de l'entrepot depuis mon pc… Je suis pourtant admin sur alfresco. Quand je regarde ce qui se trouve dans simbra depuis mon serveur, les dossiers de l'entrepot ne sont pas présent… Comment les rajouter?