Coder Social home page Coder Social logo

stuffo-carbon's Introduction

stuffo-carbon

Distribute files in multiple backends

Installation

Requirements

No requirements at the moment.

System

perl Build.PL
./Build installdeps
./Build
./Build test && ./Build install

Apache

<VirtualHost *:80>
	SetEnv STUFFO_CARBON_CONFIG [/path/to/configuration.json]
	SetEnv MOJO_MODE production

	<Location /carbon>
		SetHandler perl-script
		PerlResponseHandler Plack::Handler::Apache2
		PerlSetVar psgi_app [/path/to/stuffo-carbon.pl]
	</Location>
</VirtualHost>

Configuration

Local

{
	"configurations" : {
		"lorem" : {
			"plugin" : "local",
			"plugin_args" : {},
			"destination" : "/tmp/lorem.txt"
		}
	}
}

SCP

{
	"configurations" : {
		"lorem" : {
			"plugin" : "scp",
			"plugin_args" : {
				"host" : "localhost",
				"user" : "developer"
			},
			"destination" : "/tmp/lorem.txt"
		},
	}
}

Authentication is based on SSH keys, below is an example on how to configure the Apache user in Ubuntu.

sudo su -
mkdir -p /var/www/.ssh
chown -R www-data:www-data /var/www/.ssh

su - www-data
ssh-keygen -t rsa
ssh-copy-id -i /var/www/.ssh/id_rsa.pub user@host

FTP

{
	"configurations" : {
		"lorem" : {
			"plugin" : "ftp",
			"plugin_args" : {
				"host" : "localhost",
				"port" : 21,
				"user" : "user",
				"password" : "password",
			},
			"destination" : "/tmp/lorem.txt"
		}
	}
}

Hadoop

{
	"configurations" : {
		"lorem" : {
			"plugin" : "hadoop",
			"plugin_args" : {
				"host" : "nodename",
				"port" : 50070,
			},
			"destination" : "/tmp/lorem.txt"
		}
	}
}

stuffo-carbon's People

Contributors

ratcristian avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.