1. John Coolidge05/07/2008 04:36:27 PM
I have a 7.02 domino server running on a 4gb thumb drive. It is not a slow as I would have expected. I installed the server on my local machine and just copied the entire domino directory to the thumb drive
Works like a charm
2. Chris Miller05/07/2008 05:13:38 PM
Homepage: http://www.IdoNotes.com
You can run it on a portable or thumb. I have done so for demos. However, remember the solid state drives like that don't do well after lots of read/writes. So the lifespan is not as long
3. Turtle05/07/2008 05:18:04 PM
Homepage: http://www.weightlessdog.com/shell.nsf
But a nice tasty little 100Gb USB bus-powered drive could be very workable and in fact faster than the older, larger drives in the physical server... hmmm... this is most cool, thanks guys!
Now if only Windows could boot off a thumb, I'd be delighted.
4. Keith Brooks05/07/2008 07:41:48 PM
Homepage: http://www.vanessabrooks.com
Now I have ideas, thanks guys
I was just contemplating this idea recently but hadn't gotten to try it yet.
5. Bill Brown05/08/2008 08:28:04 AM
I know I ran R5 domino on a new box simply by copying the entire directory over and launching nserver.exe. Seems like the samething you want to accomplish.
Haven't tried it on anything newer.
Of course, you could ditch windows and use a real OS for your server platform. Kinda sucks that until 8.5 you have to use one of the expensive "enterprise" distros for Linux though. I'm looking forward to seeing Ubuntu as a supported option.
Laptops at work have booted to Linux for nearly 5 years. Home computer is needing a rebuild and it's tempting to make the switch there too.
6. Turtle05/08/2008 10:23:15 AM
Homepage: http://www.weightlessdog.com/shell.nsf
Yeah, I've held off converting the home server to Linux until I can run a distro I like, and I already have a fairly hot (and cheap) machine that has 7.10 on it. The wireless even works when I swear at it a lot. If I ever get the cash to get a newer MacBook Pro, I suspect I'll probably use the existing MBP as a Domino server, just to be annoying.
7. Dominux05/09/2008 09:51:10 AM
Homepage: http://www.dominux.net
Hi, I did it with 8.0.1.
I used this tools : { Link }
and this script :
; Script d'auto-configuration pour l'exécution d'un serveur Lotus Domino en mode nomade (clé USB).
; général
$DOMINO_PATH = @WorkingDir
; modification des chemins dans le Notes.ini
IniWrite($DOMINO_PATH & "\Notes.ini","Notes","NotesProgram",$DOMINO_PATH)
IniWrite($DOMINO_PATH & "\Notes.ini","Notes","Directory",$DOMINO_PATH & "\Data")
IniWrite($DOMINO_PATH & "\Notes.ini","Notes","KeyFilename",$DOMINO_PATH & "\Data\server.id")
IniWrite($DOMINO_PATH & "\Notes.ini","Notes","CertifierIDFile",$DOMINO_PATH & "\Data\cert.id")
IniDelete($DOMINO_PATH & "\Notes.ini","Notes","ServiceName")
; référencement dans la base de registre
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino\1","DataPath","REG_SZ",$DOMINO_PATH & "\Data")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino\1","Path","REG_SZ",$DOMINO_PATH)
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino","DataPath","REG_SZ",$DOMINO_PATH & "\Data")
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Lotus\Domino","Path","REG_SZ",$DOMINO_PATH)
; exécution de Domino
Run($DOMINO_PATH & "\nserver.exe")
Enjoy!