From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 855B87F8BE for ; Tue, 29 Apr 2014 23:27:05 +0200 (CEST) Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of anil@recoil.org) identity=pra; client-ip=89.16.177.154; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="anil@recoil.org"; x-sender="anil@recoil.org"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of anil@recoil.org) identity=mailfrom; client-ip=89.16.177.154; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="anil@recoil.org"; x-sender="anil@recoil.org"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@dark.recoil.org) identity=helo; client-ip=89.16.177.154; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="anil@recoil.org"; x-sender="postmaster@dark.recoil.org"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvQGADgYYFNZELGanGdsb2JhbABZg1WsbZkHgToOAQEBAQEIFAk8giUBAQQBDG0FCwtGVwYTiDkMCclFF44GFjMHgySBFQSZEJYUPIEt X-IPAS-Result: AvQGADgYYFNZELGanGdsb2JhbABZg1WsbZkHgToOAQEBAQEIFAk8giUBAQQBDG0FCwtGVwYTiDkMCclFF44GFjMHgySBFQSZEJYUPIEt X-IronPort-AV: E=Sophos;i="4.97,953,1389740400"; d="scan'208";a="59693803" Received: from recoil.dh.bytemark.co.uk (HELO dark.recoil.org) ([89.16.177.154]) by mail3-smtp-sop.national.inria.fr with SMTP; 29 Apr 2014 23:27:05 +0200 Received: (qmail 14711 invoked by uid 634); 29 Apr 2014 21:27:04 -0000 Received: from no-dns-yet.demon.co.uk (HELO [192.168.15.7]) (62.49.66.12) (smtp-auth username remote@recoil.org, mechanism cram-md5) by dark.recoil.org (qpsmtpd/0.84) with ESMTPA; Tue, 29 Apr 2014 22:27:04 +0100 Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\)) From: Anil Madhavapeddy In-Reply-To: <5360183F.7080706@etorok.net> Date: Tue, 29 Apr 2014 22:27:03 +0100 Cc: caml-list@inria.fr Content-Transfer-Encoding: quoted-printable Message-Id: <7F4E1167-659A-449C-8F93-A84D3A11D411@recoil.org> References: <5360183F.7080706@etorok.net> To: =?iso-8859-1?Q?T=F6r=F6k_Edwin?= X-Mailer: Apple Mail (2.1874) X-Virus-Checked: Checked by ClamAV on dark.recoil.org Subject: Re: [Caml-list] [ANN] LibreS3 v0.1: Amazon S3 compatible server On 29 Apr 2014, at 22:23, T=F6r=F6k Edwin wrote: > Hi, >=20 > LibreS3 is a robust Open Source replacement for the Amazon S3 service, > implementing (a subset of) the S3 REST API. > It is written in a monadic style, currently using Lwt and Ocsigenserver[*= ] as implementations. >=20 > Standard S3 client libraries and tools (for example s3cmd, python-boto, e= tc.) > can be used to access it. Very nice project! > It uses Skylable SX as the storage backend, which automatically provides = data deduplication and replication. >=20 > Source Download: http://cdn.skylable.com/source/libres3-0.1.tar.gz > Binary packages(RedHat/CentOS6/Debian Wheezy): http://www.skylable.com/do= wnload/#LibreS3 >=20 > The package is also available on opam: > $ opam install libres3 > To configure: > $ `opam config var sbin`/libres3_setup > To start the daemon: > $ `opam config var sbin`/libres3 start Minor OPAM tip: you can run a command with the env variables of a particula= r switch via "opam config exec". So the above could also be: $ opam install libres3 $ opam config exec libres3_setup $ opam config exec libres3 start best, Anil=