gpt4 book ai didi

java - 如何将 alfresco jlan 文件服务器设置为独立的 java 包?

转载 作者:行者123 更新时间:2023-11-30 06:16:49 27 4
gpt4 key购买 nike

我是文件服务器实现的新手。 Alfresco jlan 似乎是一个好的开始,因为它是大多数服务器协议(protocol)(CIFS、NFS 和 FTP)的纯 Java 实现。有很多线程专门用于 alfresco,但不特定于 jlan。如何在 NetBeans 中将 jlan 设置为独立的 java 包?

提前致谢。

最佳答案

看看https://web.archive.org/web/20110925093759/https://svn.alfresco.com/repos/alfresco-open-mirror/alfresco/HEAD/root/projects/alfresco-jlan/

在这里您会找到一个 runsrv.bat(和 runsrv.sh)脚本来使用提供的 XML 配置引导 JLANServer:jlanConfig.xml

由于提供的文件(jlanConfig.xml 和 JLANServer)不是提供的二进制文件的一部分(例如,不是 alfresco-jlan-embed v5.0.b 的一部分),您需要自己提供类似的设置。

例如:

    ServerConfiguration cfg = new JLANFileServerConfiguration();

NetBIOSNameServer netBIOSNameServer = new NetBIOSNameServer(cfg);
cfg.addServer(netBIOSNameServer);
SMBServer smbServer = new SMBServer(cfg);
cfg.addServer(smbServer);

// start servers
for (int i = 0; i < cfg.numberOfServers(); i++) {
NetworkServer server = cfg.getServer(i);
server.startServer();
}

ServerConfiguration 可以从 XML 文件中读取,也可以使用 Java 代码构造:

private static final String HOSTNAME = "JLANHOST";

private static final int DefaultThreadPoolInit = 25;
private static final int DefaultThreadPoolMax = 50;

private static final int[] DefaultMemoryPoolBufSizes = { 256, 4096, 16384, 66000 };
private static final int[] DefaultMemoryPoolInitAlloc = { 20, 20, 5, 5 };
private static final int[] DefaultMemoryPoolMaxAlloc = { 100, 50, 50, 50 };

public JLANFileServerConfiguration() throws InvalidConfigurationException, DeviceContextException {
super(HOSTNAME);
setServerName(HOSTNAME);

// DEBUG
DebugConfigSection debugConfig = new DebugConfigSection(this);
final GenericConfigElement debugConfigElement = new GenericConfigElement("output");
final GenericConfigElement logLevelConfigElement = new GenericConfigElement("logLevel");
logLevelConfigElement.setValue("Debug");
debugConfig.setDebug("org.alfresco.jlan.debug.ConsoleDebug", debugConfigElement);

// CORE
CoreServerConfigSection coreConfig = new CoreServerConfigSection(this);
coreConfig.setMemoryPool( DefaultMemoryPoolBufSizes, DefaultMemoryPoolInitAlloc, DefaultMemoryPoolMaxAlloc);
coreConfig.setThreadPool(DefaultThreadPoolInit, DefaultThreadPoolMax);
coreConfig.getThreadPool().setDebug(true);

// GLOBAL
GlobalConfigSection globalConfig = new GlobalConfigSection(this);

// SECURITY
SecurityConfigSection secConfig = new SecurityConfigSection(this);
DefaultAccessControlManager accessControlManager = new DefaultAccessControlManager();
accessControlManager.setDebug(true);
accessControlManager.initialize(this, new GenericConfigElement("aclManager"));
secConfig.setAccessControlManager(accessControlManager);
secConfig.setJCEProvider("cryptix.jce.provider.CryptixCrypto");
final UserAccountList userAccounts = new UserAccountList();
secConfig.setUserAccounts(userAccounts);

// SHARES
FilesystemsConfigSection filesysConfig = new FilesystemsConfigSection(this);
DiskInterface diskInterface = new org.alfresco.jlan.smb.server.disk.JavaFileDiskDriver();
final GenericConfigElement driverConfig = new GenericConfigElement("driver");
final GenericConfigElement localPathConfig = new GenericConfigElement("LocalPath");
localPathConfig.setValue(".");
driverConfig.addChild(localPathConfig);
DiskDeviceContext diskDeviceContext = (DiskDeviceContext) diskInterface.createContext("JLANSHARE", driverConfig);
diskDeviceContext.setShareName("JLANSHARE");
diskDeviceContext.setConfigurationParameters(driverConfig);
diskDeviceContext.enableChangeHandler(false);
diskDeviceContext.setDiskInformation(new SrvDiskInfo(2560000, 64, 512, 2304000));// Default to a 80Gb sized disk with 90% free space
DiskSharedDevice diskDev = new DiskSharedDevice("JLANSHARE", diskInterface, diskDeviceContext);
diskDev.setConfiguration(this);
diskDev.setAccessControlList(secConfig.getGlobalAccessControls());
diskDeviceContext.startFilesystem(diskDev);
filesysConfig.addShare(diskDev);

// SMB
CIFSConfigSection cifsConfig = new CIFSConfigSection(this);
cifsConfig.setServerName(HOSTNAME);
cifsConfig.setDomainName("MYDOMAIN");
cifsConfig.setHostAnnounceInterval(5);
cifsConfig.setHostAnnouncer(true);
final CifsAuthenticator authenticator = new LocalAuthenticator() {
@Override
public int authenticateUser(ClientInfo client, SrvSession sess, int alg) {
return AUTH_ALLOW;
}
};
authenticator.setDebug(true);
authenticator.setAllowGuest(true);
authenticator.setAccessMode(CifsAuthenticator.USER_MODE);
final GenericConfigElement authenticatorConfigElement = new GenericConfigElement("authenticator");
authenticator.initialize(this, authenticatorConfigElement);
cifsConfig.setAuthenticator(authenticator);
cifsConfig.setHostAnnounceDebug(true);
cifsConfig.setNetBIOSDebug(true);
cifsConfig.setSessionDebugFlags(-1);
cifsConfig.setTcpipSMB(true);
}

请注意,为了在 Windows 机器上使用 JLAN,您需要禁用端口 445 上的内置文件共享。

关于java - 如何将 alfresco jlan 文件服务器设置为独立的 java 包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26631989/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com