0

単純なデータを使用して 1000 台のサーバーを構成するタスクが与えられました。サーバー (Linux または Windows) にログインし、ntp サーバーをセットアップする必要があるとします。perl を使用してある種の自動化フレームワークを考え出す必要があります。私にはいくつかのアイデアがあり、さらに多くを得たいと思っています。

これが私の思考プロセスです:

a) Since there are 1000s of servers, definitely the framework should be able to read in a csv file so all inputs can be provided as apposed to single input.

b) Since there are so many servers, I have to find a way to do things in parallel. I cant go server by server in a sequential way

c) I should have some output file that shows the results of all the servers that I successfully configured, servers that failed. That way I can compare input file and output file and generate a report

フレームワークで他に何かを考慮する必要がありますか? perl を使用して並列処理を行うにはどうすればよいですか?

4

1 に答える 1

0

Perl に固執したい場合でも、別のフレームワークをゼロから実装することを妨げるいくつかの代替手段が既に利用可能になっているようです。

いくつかのオプションについては、 http://my.opera.com/cstrep/blog/2010/05/14/puppet-fabric-and-a-perl-alternativeのコメントを確認してください。

于 2012-06-26T16:13:03.623 に答える