AIプログラムとかUnityゲーム開発について

探索や学習などを活用したAI系ゲームを作りたいと思います。

VPSレンタル #1

DTIのServerManってVPSサービスをレンタルしてみました。月々467円(税抜)で、メモリー1GB、HDD50GBのサーバーのROOTをもらえます。
これまでは、レンタルサーバーしか借りたことが無いのでrootもらえるVPSは初めて借りました。

dream.jp

住所氏名とクレジットを登録すると、IPアドレスやらSSHポート番号などがメールで送られてきます。
昔から使っているputtyって端末ソフトにipアドレスとポート番号を設定して、さっそくログインします。

yum -y intall httpd
yum -y intall perl
などでモジュールをインストールして、
httpdの設定に、perlCGIが実行できるように設定します。

[root@dti-vps-srv75 html]# perl -v

This is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi
(with 34 registered patches, see perl -V for more detail)

Copyright 1987-2012, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.


設定の値とか覚えてませんので、このへんとか参考にします。
PerlをCGIとして利用する | WEBサービス創造記

#!/usr/bin/perl

print "Content-type: text/plain\n\n";
print "Hellow World!";

最小限のコードが無事動きました。


androidMarketになにかアプリを公開してみようと思いますので、ランキングやログ保存などにこのVPSサーバーを使ってみようと思います。
このVPSは商用OK、アダルト不可。サービスをアップグレード可能。


通信はこのへんの過去ログを参考にするとして、nosqlは何をいれようかな?
yasu9780.hatenablog.com