23:20:55,218 WARN [org.springframework.remoting.rmi.RmiRegistryFactoryBean] Could not detect RMI registry - creating new one
23:21:09,734 INFO [org.alfresco.repo.domain.schema.SchemaBootstrap] No changes were made to the schema.
23:21:11,796 INFO [org.alfresco.repo.admin.ConfigurationChecker] The Alfresco root data directory ('dir.root') is: C:\Alfresco\alf_data
23:21:11,921 INFO [org.alfresco.repo.admin.patch.PatchExecuter] Vérification des correctifs à appliquer …
23:21:12,203 INFO [org.alfresco.repo.module.ModuleServiceImpl] Found 0 module(s).
23:21:12,562 DEBUG [org.alfresco.smb.protocol] Added desktop action CheckInOut
23:21:12,578 DEBUG [org.alfresco.smb.protocol] Added desktop action JavaScriptURL
23:21:12,703 INFO [org.alfresco.smb.protocol] CIFS server started
23:21:12,718 INFO [org.alfresco.smb.protocol] FTP server started
23:21:12,718 INFO [org.alfresco.smb.protocol] NFS server NOT started
23:21:12,734 INFO [org.alfresco.service.descriptor.DescriptorService] Alfresco JVM - v1.5.0_08-b03; maximum heap size 506,313MB
23:21:12,734 INFO [org.alfresco.service.descriptor.DescriptorService] Alfresco started (Community Network): Current version 2.1.0 (R1 443) schema 62 - Installed version 2.1.0 (R1 443) schema 62
23:21:12,750 INFO [org.alfresco.smb.protocol] SMB Server SERVEUR01_A starting
23:21:12,750 INFO [org.alfresco.smb.protocol] GUID 2111cbfb-75d0-3642-a156-28483f6051c8
23:21:12,750 INFO [org.alfresco.smb.protocol] Using authenticator org.alfresco.filesys.server.auth.EnterpriseCifsAuthenticator
23:21:12,750 INFO [org.alfresco.smb.protocol] Server timezone GMT, offset from UTC = 0hrs
23:21:12,750 INFO [org.alfresco.smb.protocol] Shares:
23:21:12,750 INFO [org.alfresco.smb.protocol] [Alfresco,DISK,,[Alfresco,workspace://SpacesStore/8c2696f5-f93e-11dc-9ed2-b9d2c881fd8c]] [Alfresco,workspace://SpacesStore/8c2696f5-f93e-11dc-9ed2-b9d2c881fd8c]
23:21:12,750 INFO [org.alfresco.smb.protocol] [AVM,DISK,,[AVM,VirtualView]] [AVM,VirtualView]
23:21:12,750 INFO [org.alfresco.smb.protocol] Add Share [IPC$,IPC$,,Admin,Hidden] : true
23:21:12,796 DEBUG [org.alfresco.smb.protocol] Win32 NetBIOS Available LANAs: 7
23:21:12,812 DEBUG [org.alfresco.smb.protocol] Win32 NetBIOS server SERVEUR01_A (using Winsock)
23:21:19,000 DEBUG [org.alfresco.smb.protocol] Win32 NetBIOS created session handler on LANA 7
23:21:19,000 DEBUG [org.alfresco.smb.protocol] Waiting for Win32 NetBIOS session request (Winsock) …
23:21:19,000 DEBUG [org.alfresco.smb.protocol] Win32 NetBIOS host announcer enabled on LANA 7
23:21:19,015 DEBUG [org.alfresco.smb.protocol] Win32 NetBIOS register listener for LANA 7
23:21:19,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:21:24,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:21:34,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:21:54,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:22:34,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:23:54,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
23:26:34,015 DEBUG [org.alfresco.smb.protocol.mailslot] HostAnnouncer: Announced host SERVEUR01_A
echo 1 > /proc/sys/net/ipv4/ip_forward
modprobe iptable_nat
iptables -F
iptables -t nat -F
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
iptables -t nat -A PREROUTING -p tcp -d 192.168.20.2 –dport 445 \
-j REDIRECT –to-ports 1445
iptables -t nat -A PREROUTING -p tcp -d 192.168.20.2 –dport 139 \
-j REDIRECT –to-ports 1139
iptables -t nat -A PREROUTING -p udp -d 192.168.20.2 –dport 137 \
-j REDIRECT –to-ports 1137
iptables -t nat -A PREROUTING -p udp -d 192.168.20.2 –dport 138 \
-j REDIRECT –to-ports 1138
iptables -t nat -A OUTPUT -p tcp -d 192.168.20.2 –dport 445 \
-j REDIRECT –to-ports 1445
iptables -t nat -A OUTPUT -p tcp -d 192.168.20.2 –dport 139 \
-j REDIRECT –to-ports 1139
iptables -t nat -A OUTPUT -p udp -d 192.168.20.2 –dport 138 \
-j REDIRECT –to-ports 1138
iptables -t nat -A OUTPUT -p udp -d 192.168.20.2 –dport 137 -\
j REDIRECT –to-ports 1137
iptables-save > /etc/iptables.up.rules
netstat -lnp | egrep 'java|mb' | tr -s ' '
root@serverTIC:~# netstat -lnp | egrep 'java|mb' | tr -s ' '
tcp 0 0 0.0.0.0:139 0.0.0.0:* LISTEN 4732/smbd
tcp 0 0 0.0.0.0:445 0.0.0.0:* LISTEN 4732/smbd
tcp6 0 0 :::50500 :::* LISTEN 5077/java
tcp6 0 0 ::ffff:127.0.0.1:8005 :::* LISTEN 5077/java
tcp6 0 0 :::1445 :::* LISTEN 5077/java
tcp6 0 0 :::2021 :::* LISTEN 5077/java
tcp6 0 0 :::8009 :::* LISTEN 5077/java
tcp6 0 0 :::8080 :::* LISTEN 5077/java
tcp6 0 0 :::1139 :::* LISTEN 5077/java
tcp6 0 0 :::40021 :::* LISTEN 5077/java
udp 0 0 192.168.20.2:137 0.0.0.0:* 4730/nmbd
udp 0 0 0.0.0.0:137 0.0.0.0:* 4730/nmbd
udp 0 0 192.168.20.2:138 0.0.0.0:* 4730/nmbd
udp 0 0 0.0.0.0:138 0.0.0.0:* 4730/nmbd
udp6 0 0 :::1137 :::* 5077/java
unix 2 [ ACC ] STREAM LISTENING 15671 4764/winbindd /var/run/samba/winbindd_privileged/pipe
C'est avec une grande joie que je reviens sur mon post d'il y a qques mois
(je leur en ai voulu un moment)
Content from pre 2016 and from language groups that have been closed.
Content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.