DevStack(Folsom)上でUbuntu12.04LTSを動かしてみた
■ DevStackのインストール 参考:http://blog.akagi.jp/archives/2780.html $ sudo apt-get update $ sudo apt-get upgrade $ sudo apt-get install -y git $ cd ~ $ git clone https://github.com/openstack-dev/devstack.git...
View ArticleDevStack(Folosom)上で動いているインスタンスからイメージファイルを作ってみた
■ インスタンスからイメージを作る http://docs.openstack.org/trunk/openstack-compute/admin/content/creating-images-from-running-instances.html 仮想マシン上でsyncをして抜ける。 $ sync $ exit ホスト上で下記を実施 $ source devstack/openrc $ nova...
View ArticleRedmineのAPIでチケットを操作してみた。
RedmineのREST APIをつかってRedmineに対してチケットを登録してみました。 RESTClientとしては、お手軽に使える rest-client のUI版( http://code.google.com/p/rest-client/ ) を使用します。 あらかじめ、認証に必要なAPIキー(apikey)を個人設定画面から取得しておきます。 チケットの登録...
View ArticleAWS互換API(euca2ools)でOpenStack(Nova)を操作してみた。
OpenStack環境 OpenStackはUbuntu12.04LTS上にGrizzly版DevStackをインストールしたものを利用した。 DevStackのインストールはSingleMachine構成での構築を行った。 参考: http://devstack.org/guides/single-machine.html EC2互換APIでOpenStackを操作するための設定...
View ArticleUbuntu12.04LTS上でRedmine2.3を動かす。
Ubuntu 12.04LTS 上に Redmine2.3をインストールしました。 Webrickでなく、Passengerで動作させます。 RubyのバージョンはUbuntu12.04LTS標準の1.8系でなく1.9系を使用します。 RubyおよびGemsをインストールする。 $ sudo apt-get install git-core $ sudo apt-get install curl $...
View ArticleUbuntu12.04LTSにWordPressをインストールしてみた
チョー簡単。おそるべしWordpressって感じですね。 * LAMPをインストール $sudo apt-get install -y apache2 mysql-server php5 php5-mysql $sudo service apache2 start * WordPress本体をダウンロードしてきてWebサーバのルートに展開 $ wget...
View ArticleUbuntu 12.04LTS上で Ruby1.9.3+ Rails3.2.8 + Rspec をインストール
Rubyをインストールする $ apt-get install git-core $ apt-get install curl $ curl -L get.rvm.io | bash -s stable $ source /etc/profile.d/rvm.sh $ rvm install 1.9.3 $ rvm use --default 1.9.3 Railsをインストールする $...
View Articlenode.js を複数バージョン入れる方法
naveというスクリプトがある。 インストールはgitから。 git clone http://github.com/isaacs/nave.git 最新版を使用する場合は ./nave.sh install latest ./nave.sh use latest 特定バージョンを使用する場合は ./nave.sh install 0.10.1 ./nave.sh use latest 0.10.1
View Articlenpmで TypeError: Request path contains unescaped characters が出たときの対処
root@pleiades:~# npm install coffee-script npm http GET https://registry.npmjs.org/coffee-script npm ERR! TypeError: Request path contains unescaped characters. というエラーがでたら、下記をすると直るらしい。 npm config set...
View ArticleGitLabをCentOS7にインストールしてみた
下記の記載に従ってインストール https://about.gitlab.com/downloads/#centos7 $ sudo yum update $ sudo yum -y install curl policycoreutils openssh-server openssh-clients $ sudo systemctl enable sshd $ sudo systemctl...
View ArticleAWS互換API(euca2ools)でOpenStack(Nova)を操作してみた。
OpenStack環境 OpenStackはUbuntu12.04LTS上にGrizzly版DevStackをインストールしたものを利用した。 DevStackのインストールはSingleMachine構成での構築を行った。 参考: http://devstack.org/guides/single-machine.html EC2互換APIでOpenStackを操作するための設定...
View ArticleUbuntu12.04LTS上でRedmine2.3を動かす。
Ubuntu 12.04LTS 上に Redmine2.3をインストールしました。 Webrickでなく、Passengerで動作させます。 RubyのバージョンはUbuntu12.04LTS標準の1.8系でなく1.9系を使用します。 RubyおよびGemsをインストールする。 $ sudo apt-get install git-core $ sudo apt-get install curl $...
View ArticleUbuntu12.04LTSにWordPressをインストールしてみた
チョー簡単。おそるべしWordpressって感じですね。 * LAMPをインストール $sudo apt-get install -y apache2 mysql-server php5 php5-mysql $sudo service apache2 start * WordPress本体をダウンロードしてきてWebサーバのルートに展開 $ wget...
View ArticleUbuntu 12.04LTS上で Ruby1.9.3+ Rails3.2.8 + Rspec をインストール
Rubyをインストールする $ apt-get install git-core $ apt-get install curl $ curl -L get.rvm.io | bash -s stable $ source /etc/profile.d/rvm.sh $ rvm install 1.9.3 $ rvm use --default 1.9.3 Railsをインストールする $...
View Articlenode.js を複数バージョン入れる方法
naveというスクリプトがある。 インストールはgitから。 git clone http://github.com/isaacs/nave.git 最新版を使用する場合は ./nave.sh install latest ./nave.sh use latest 特定バージョンを使用する場合は ./nave.sh install 0.10.1 ./nave.sh use latest 0.10.1
View Article