Showing posts with label alfresco. Show all posts
Showing posts with label alfresco. Show all posts

Thursday, March 29, 2012

Configure and test CIFS with Alfresco


1. alfresco-global.properties

## CIFS
cifs.enabled=true
cifs.serverName=server_name
cifs.domain=WORKGROUP
cifs.hostannounce=true
cifs.sessionTimeout=500
cifs.ipv6.enabled=false
#cifs.tcpipSMB.port=1445
#cifs.netBIOSSMB.namePort=1137
#cifs.netBIOSSMB.datagramPort=1138
#cifs.netBIOSSMB.sessionPort=1139
cifs.WINS.autoDetectEnabled=true


2. Run "sudo alfresco " as root so that it can use the default ports. 

3. Test From Windows Explorer to map network drive with user credential. 
    net use X: \\192.168.1.35\Alfresco /usr:admin admin

4. Test from Ubuntu side
https://help.ubuntu.com/community/Samba/SambaClientGuide
 smbclient -U qa1 //108.171.177.147/Alfresco -p 139

Alfresco running as linux service

under id "alfresco" (group alfresco)
ln -s $ALF_HOME/alfresco.sh /etc/init.d/alfresco
update-rc.d alfresco defaults

Reference
http://wiki.alfresco.com/wiki/Installing_Alfresco_on_Ubuntu_7.10

Customize Alfresco email invite for external user

tomcat/shared/classes/alfresco/extension$ cat invite-context.xml 



<beans>
        <bean class="org.alfresco.repo.security.authentication.NameBasedUserNameGenerator" id="nameBasedUserNameGenerator">
                
                <property name="namePattern">
                        <value>%emailAddress%</value>
                </property>

                <property name="userNameLength">
                        <value>10</value>
                </property>
        </bean>
</beans> tomcat/shared/classes/alfresco/extension$ cat invite-context.xml

Thursday, March 15, 2012

Alfresco LDAP


alfresco-global.properties
(LDAP)authentication.chain=alfinst:alfrescoNtlm,ldap:ldap1
(AD)authentication.chain=alfinst:alfrescoNtlm,ldap-ad1:ldap-ad

Extension Root
(LDAP)tomcat/shared/classes/alfresco/extension/subsystems/Authentication/ldap-ad/ldap1
(AD)tomcat/shared/classes/alfresco/extension/subsystems/Authentication/ldap-ad/ldap-ad1/ldap-ad-authentication.properties

Alfresco LDAP integration
Alfresco LDAP configuration