わいえむねっと

Contents
Categories
Calendar
2026/08
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
Monthly Archives
~2000/01
Recent Entries
RSS1.0
Templates
Information
Processed: 0.064 sec
Chashed: -
2012/09/17 Mon
徹夜明けにぼけーと明後日の方向眺めながら味噌汁を飲んでいたら盛大にこぼした。
千葉 ピーナッツのゆるキャラ  Pマン(ピーマン)
http://kisarazu-shikinokur​a.jp/p-man.html

千葉 落花生のキャラクター ぴーにゃっつ
http://kisarazu-shikinokur​a.jp/p-nyattu.htm​l

千葉のゆるキャラ。
こんなのいたんだ。 Trac を使い始めてからかれこれ4年半。
たまには他のものにも触れてみるかーと、Redmine をインストールしてみたのでメモ。


注意事項

トライアンドエラーの記録なので、不要な手順も含まれています。

あと、「トライアンドエラー」って言うと、「トライアルアンドエラーが正しい!」って言ってくる人がいるけど、それはどうでもいい。


環境

  • 仮想環境にインストールすることが前提。
  • OSは軽量なもので。
  • パッケージもビルド済みのものを利用する。
  • というわけで、FreeBSD。
  • バージョンはレガシーな 7.4 を選択。

Choose Distributions で minimal を選択してインストール。


Redmine インストール

packages-7-stable で一番新しい、redmine-1.3.1_1 をインストール。

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/www/redmine-1.3.1_1.tbz


DB 設定

手軽に SQLite で。

# cd /usr/local/www/redmine/config
# cp -p database.yml.example database.yml
# vi database.yml

  • 追記
production:
  adapter: sqlite3
  database: db/redmine
  timeout: 5000


マイグレーション

# rake db:migrate RAILS_ENV="production"
rake: Command not found.

Rake がなかった。

Rake インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/devel/rubygem-rake-0.9.2.2.tbz

マイグレーション②

# rake db:migrate RAILS_ENV="production"
NOTE: Gem.source_index is deprecated, use Specification. It will be removed on or after 2011-11-01.
Gem.source_index called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/gem_dependency.rb:21.
NOTE: Gem::SourceIndex#initialize is deprecated with no replacement. It will be removed on or after 2011-11-01.
Gem::SourceIndex#initialize called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/vendor_gem_source_index.rb:100.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
Please install RDoc 2.4.2+ to generate documentation.
rake aborted!
A key is required to write a cookie containing the session data. Use config.action_controller.session = { :key => "_myapp_session", :secret => "some secret phrase" } in config/environment.rb

Tasks: TOP => db:migrate => environment
(See full trace by running task with --trace)

  • エラー
A key is required to write a cookie containing the session data. Use config.

セッションストア秘密鍵の生成

# rake config/initializers/session_store.rb

マイグレーション③

# rake db:migrate RAILS_ENV="production"
NOTE: Gem.source_index is deprecated, use Specification. It will be removed on or after 2011-11-01.
Gem.source_index called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/gem_dependency.rb:21.
NOTE: Gem::SourceIndex#initialize is deprecated with no replacement. It will be removed on or after 2011-11-01.
Gem::SourceIndex#initialize called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/vendor_gem_source_index.rb:100.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
Please install RDoc 2.4.2+ to generate documentation.
rake aborted!
no such file to load -- sqlite3

Tasks: TOP => db:migrate => environment
(See full trace by running task with --trace)

  • エラー
no such file to load -- sqlite3

sqlite3 インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/databases/sqlite3-3.7.9_1.tbz

変化なし。

ruby18-dbd_sqlite3 インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/ruby/ruby18-dbd_sqlite3-1.2.5.tbz

変化なし。

ruby18-sqlite インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/databases/ruby18-sqlite-2.2.3.tbz

変化なし。

rubygem-sqlite3 インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/rubygems/rubygem-sqlite3-1.3.6.tbz

# rake db:migrate RAILS_ENV="production"

マイグレーション成功。


デフォルトデータのロード

# rake load_default_data RAILS_ENV="production"


テスト起動

# ruby script/server -e production
NOTE: Gem.source_index is deprecated, use Specification. It will be removed on or after 2011-11-01.
Gem.source_index called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/gem_dependency.rb:21.
NOTE: Gem::SourceIndex#initialize is deprecated with no replacement. It will be removed on or after 2011-11-01.
Gem::SourceIndex#initialize called from /usr/local/www/redmine/config/../vendor/rails/railties/lib/rails/vendor_gem_source_index.rb:100.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
NOTE: Gem::SourceIndex#add_spec is deprecated, use Specification.add_spec. It will be removed on or after 2011-11-01.
Gem::SourceIndex#add_spec called from /usr/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91.
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require': no such file to load -- rack/handler/-e (MissingSourceFile)
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
        from /usr/local/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/handler.rb:63:in `try_require'
        from /usr/local/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/handler.rb:16:in `get'
        from /usr/local/www/redmine/vendor/rails/railties/lib/commands/server.rb:45
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
        from script/server:3

  • エラー
no such file to load -- rack/handler/-e (MissingSourceFile)

Gem ダウングレード

NOTE が鬱陶しいので消す。

# gem update --system 1.6.2

# ruby script/server -e production
/usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require': no such file to load -- rack/handler/-e (MissingSourceFile)
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:547:in `new_constants_in'
        from /usr/local/www/redmine/vendor/rails/activesupport/lib/active_support/dependencies.rb:182:in `require'
        from /usr/local/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/handler.rb:63:in `try_require'
        from /usr/local/lib/ruby/gems/1.8/gems/rack-1.4.1/lib/rack/handler.rb:16:in `get'
        from /usr/local/www/redmine/vendor/rails/railties/lib/commands/server.rb:45
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
        from /usr/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
        from script/server:3

テスト起動②

webrick を明示的に指定したら動いた。

# ruby script/server webrick -e production
=> Booting WEBrick
=> Rails 2.3.14 application starting on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server


Apache 設定

Passenger インストール

# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/rubygem-passenger-3.0.9_1.tbz
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/rubygem-passenger-3.0.9_1.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/ca_root_nss-3.12.11_1.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/perl-5.12.4_3.tbz... Done.
pkg_add: package 'perl-5.12.4_3' conflicts with perl-5.14.2_2
pkg_add: please use pkg_delete first to remove conflicting package(s) or -f to force installation
pkg_add: pkg_add of dependency 'perl-5.12.4_3' failed!
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/curl-7.21.3_2.tbz... Done.
pkg_add: warning: package 'curl-7.21.3_2' requires 'ca_root_nss-3.12.11_2', but 'ca_root_nss-3.12.11_1' is installed
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/libev-4.04_1,1.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/gdbm-1.9.1.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/db42-4.2.52_5.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/apr-ipv6-devrandom-gdbm-db42-1.4.5.1.3.12_1.tbz... Done.
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/apache-2.2.21.tbz... Done.
pkg_add: could not find package perl-5.12.4_3 !
pkg_add: pkg_add of dependency 'apache-2.2.21' failed!

  • エラー
package 'perl-5.12.4_3' conflicts with perl-5.14.2_2

Perl ダウングレード、Passenger インストール

# pkg_delete -f perl-5.14.2_2
# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/rubygem-passenger-3.0.9_1.tbz


apachectl 動作確認

# apachectl -v
/libexec/ld-elf.so.1: Shared object "libpcre.so.0" not found, required by "httpd"

  • エラー
Shared object "libpcre.so.0" not found, required by "httpd"

# ldd /usr/local/sbin/httpd
/usr/local/sbin/httpd:
        libm.so.5 => /lib/libm.so.5 (0x280ce000)
        libpcre.so.0 => not found (0x0)
        libaprutil-1.so.3 => /usr/local/lib/libaprutil-1.so.3 (0x280e4000)
        libdb-4.2.so.2 => /usr/local/lib/libdb-4.2.so.2 (0x28100000)
        libgdbm.so.4 => /usr/local/lib/libgdbm.so.4 (0x281d4000)
        libexpat.so.6 => /usr/local/lib/libexpat.so.6 (0x281dc000)
        libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x281fc000)
        libapr-1.so.4 => /usr/local/lib/libapr-1.so.4 (0x282f4000)
        libcrypt.so.4 => /lib/libcrypt.so.4 (0x2831b000)
        libthr.so.3 => /lib/libthr.so.3 (0x28334000)
        libc.so.7 => /lib/libc.so.7 (0x28349000)

PCRE ダウングレード

libpcre.so.0 のバージョンまで戻す。

# pkg_delete -f pcre-8.31
# pkg_add http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/pcre-8.20.tbz
Fetching http://ftp.riken.jp/FreeBSD/ports/i386/packages-7-stable/All/pcre-8.20.tbz... Done.

# apachectl -v
Server version: Apache/2.2.21 (FreeBSD)
Server built:   Jan 12 2012 16:35:57


rc.conf 登録

# vi /etc/rc.conf

  • 追記
apache22_enable="YES"


Accept Filter の警告を消す

# apachectl start
[Mon Sep 17 05:11:47 2012] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter
# kldload accf_http.ko
# apachectl start


Apache 動作確認

# apachectl start
# apachectl status
lynx: not found

動いてない。

# tail /var/log/httpd-error.log
[Mon Sep 17 04:20:20 2012] [warn] Init: Session Cache is not configured [hint: SSLSessionCache]
[Mon Sep 17 04:20:20 2012] [alert] (EAI 8)hostname nor servname provided, or not known: mod_unique_id: unable to find IPv4 address of "foo.bar"
Configuration Failed

  • エラー
hostname nor servname provided, or not known: mod_unique_id: unable to find IPv4 address of "foo.bar"

hosts 登録

# vi /etc/hosts


Redmine パス追加

# ln -s /usr/local/www/redmine/public/ /usr/local/www/apache22/data/redmine


Passenger 設定

rubygem-passenger インストールの最後に表示される情報を設定。

# vi /usr/local/etc/apache22/httpd.conf

  • 追記
LoadModule passenger_module /usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.9/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.8/gems/passenger-3.0.9
PassengerRuby /usr/local/bin/ruby18

# apachectl restart


ファイル一覧が表示されてしまう。

RailsBaseURI 指定

# vi /usr/local/etc/apache22/httpd.conf

  • 追記
RailsBaseURI /redmine

# apachectl restart


ようやく起動。


Redmine 動作確認


ログインしようとしたら Internal error に。

  • エラー
ActiveRecord::StatementInvalid (SQLite3::ReadOnlyException: attempt to write a readonly database: UPDATE "users" SET "last_login_on" = '2012-09-17 05:44:43', "updated_on" = '2012-09-17 05:44:43' WHERE "id" = 1):

DB ファイルを chmod

# cd /usr/local/www/redmine/db/
# ll
total 278
drwxr-xr-x  2 root  wheel    9728 Sep 16 01:40 migrate
-rw-r--r--  1 root  wheel  216064 Sep 17 03:21 redmine
-rw-r--r--  1 root  wheel   28241 Sep 17 01:10 schema.rb
# chmod 666 redmine

ディレクトリも chmod。

# cd /usr/local/www/redmine/
# chmod 777 db

今回はあくまで試用が目的なので、暫定処置ってことで。


これでようやく動作するように。

力尽きたので、SCM の設定についてはまた後日。


参考

Redmineのインストール Redmine.JP
http://redmine.jp​/guide/RedmineIns​tall/

アップグレード Redmine.JP
http://redmine.jp​/guide/RedmineUpg​rade/
2012/09/16 Sun
キーボード叩いたり、ディスプレイを虚ろな目で眺めたり、うとうとしたりで一日が終わる。

そして休日も おろしうどん。
2012/09/15 Sat
イーモバイルから早速、返信きました。

ご依頼いただきました料金プラン変更/『にねん得割』追加の
お手続きを承りました。
お申し出の翌月(2012年10月)からの適用となります。

■変更前) スーパーライトデータプラン(ベーシック+年とく割)

■変更後) データプラン(ベーシック+にねん得割)

また、イー?モバイルの契約期間が2年0ヶ月以上のお客さまにつきましては、
「データプラン(ベーシック+にねん得割)」にプラン変更を
していただくと、通信をご利用された月のみ基本料金が4,280円、
通信が発生しなかった月の基本使用料およびユニバーサルサービス料は
0円になります。

なお、お客さまはお支払い方法が請求書払いとなっております。
通信が発生しなかった場合は、請求書は発行されませんが、
通信をご利用された場合は、請求書が発行され
別途、請求書発行手数料157円(税込)がかかります。

文中の「イー・モバイル」が一箇所だけ「イー?モバイル」になっていたのは気になるけど、無事に受け付けられた模様。 冷蔵庫に放置していたタマネギの一つがぐずぐずになってた。 しょうゆとみりんとさけとだしでめんつゆをつくる。 VirtualPCにインストールしたFreeBSDがネットワークに繋がらない。

  • FreeBSD-7.4-RELEASE-i386
  • そもそも、DHCPでIPが取得できていない。
  • インストール途中のネットワーク設定では、問題なく取得できている。
  • 再起動すると取得できていない。
  • dhclient を叩いてみると、確かに取得できない。
  • DHCPを使用しなければ繋がる。
  • この状態からDHCPに設定を変更すると、IPが取得できる。
  • この状態でOSを再起動すると、やっぱり取得できない。

なんの気なしに、

# /etc/rc.d/netif restart

してみたら、普通にIPが取得できました。なんでだ。
初期化の順番に問題でもあるのか。
2012/09/14 Fri
おろしうどんと見せかけて豆腐ハンバーグ弁当。
データ通信料金 割引サービス - 料金プラン イー・モバイル
http://emobile.jp​/charge/waribiki.h​tml#ninentoku
料金プランがデータプランで、新規契約からのご利用期間が新規契約月の翌月から起算して2年以上の場合、課金対象となる通信(国際ローミングにおける通信を除く)のご利用がない月は基本使用料およびユニバーサルサービス料がかかりません。

イーモバイルの未使用月維持費を0円にするため、料金プランを変更。

以前からプランの存在は知っていたのですが、窓口にいくのが面倒だったというか、窓口の前は何度となく通過はしていたので店員と話すのが面倒だったというか。
そんなわけで、オンライン手続きです。(どんだけ人と話したくないんだ)



My EMOBILE に登録


My EMOBILE
https://webmy.emob​ile.jp/portal/
ご利用には新規登録が必要です。

「ご契約電話番号」とご契約時に指定した4桁の「ネットワーク暗証番号」をご用意下さい。

使用端末が PocketWifi なので、電話番号は請求書で確認。

My EMOBILE にアクセス

  1. オンラインサポート(契約内容照会/変更、請求情報の確認など)
  2. オンラインサポート
  3. 契約内容照会/変更
  4. 料金プラン変更

※年とく割2(データサービスのみ)、にねん得割のお申し込み、解除をご希望の場合は、上部メニューの「お問い合わせ」よりお申し込みいただくか、イー・モバイル カスタマーセンターへお問い合わせください。

オンラインサポート対象外なの!?

「お問い合わせ」フォームから申し込み

  • お問い合わせ内容選択
  • 「割引サービスの追加・解除」を選択すると、「お問い合わせ内容」のテンプレートが切り替わる。

追加/解除を希望する割引サービスを以下フォームへ入力して送信してください。
---
( )追加/( )解除
---
( )年とく割
( )にねん得割
( )年とく割2
---
複数回線ご契約いただいており、一括請求設定がされている場合、同時にお手続きをすることが可能です。
ご希望される回線情報についてご記入をお願いいたします。
【お手続き希望の回線情報】
■契約者コード:(10から始まる10桁の番号)
■ご契約電話番号:(0807から始まるご契約電話番号)
■端末製造番号(IMEI):
■EM chip番号(ICCID):

  • 「お問い合わせ内容」に必要事項を入力。
  • 「追加」と「にねん得割」にチェック。
  • 「契約者コード」と「ご契約電話番号」は請求書を参照。
  • 「端末製造番号」と「EM chip番号」は本体の電池を外して参照。

  • これだけだと、割引サービスが「にねん得割」になるだけなので、料金プランを「データプラン」に変更したい旨を追記。

よし。



そしておもむろに、ServersMan SIM 3G 100 を契約。
はい。我慢できませんでした。

ServersMan SIM 3G 100:ユビキタスプロバイダ DTI
http://dream.jp/mb/sim/
ServersMan SIM 月額490円人口カバー率100%のモバイル通信を安定した100kbpsで
2012/09/13 Thu
引き継いだコードがあまりに冗長だったので、処理を切り出したり不要なコードを除去したりなんだりリファクタリング。
最終的に半分以下になりました。約60%減。
ほとんどコメントがなかったので、コメントの追記もしたのに。

意味が分からないよ。 おろしうどんとつまようじ。 ユーザーから「明日連絡します!」って言われてた連絡が来る気配がないので帰る。
2012/09/12 Wed
指紋認証しようと手を上げたけど、そういえば絆創膏をしているので認証できないじゃないか。右手だと。
両手登録の有用性を実感。 そうです。今日もおろしうどんです。
今日はネギが大変に自己主張していて後味が大変ネギでした。 ユーザーに投げていたツールで収集した情報の分析をぬるぬると。
かなりの速度向上が見込めそう。
というか、5倍くらい速くなりそう。

速くなるのはいいとして現状をどう説明したものか。
自分がつくったものでもないし。
ドコモ、「Optimus chat L-04C」でソフト更新 - ケータイ Watch
http://k-tai.impres​s.co.jp/docs/news/20120911_5​58734.html​
NTTドコモは、LG製のAndroidスマートフォン「Optimus chat L-04C」向けにソフトウェア更新サービスの提供を開始した。

L-04Cのアップデートが今更きたので「おっ」と思ったけど、

今回のアップデートでは、海外の一部地域でまれに正常に通信できない場合があるという不具合が修正される。また、microSDXCカードを装着した場合に、カード内のデータが破損するという不具合も解消される。ただし、アップデート後もmicroSDXCカードは利用できない。

まったく嬉しくない。
そろそろカスタムROMでもぶちこむか。
2012/09/11 Tue
下期計画をたてたりなんだりで一日が終わる。
あとは会議に参加して会議に参加して会議に参加して。
昼はおろしうどん。
上機嫌で帰ってきたのに帰宅するなり右手人差し指をざっくり切って泣きそうになったり。
2012/09/10 Mon
ストアドのチューニングしたり。
突発案件の要件定義をまとめたり。
豆腐ハンバーグ弁当を買いに行って「いつもありがとうございます!」って言われたり。
ユーザーからの照会事項に「仕様です」と返信して「そうでした」と返ってきたり。
ユーザーからの照会事項に「仕様です」と返信して「了解です」と返ってきたり。
ユーザーから電話がかかってきて「出力が足りないです」と言われたので「右の方にありませんか?」と確認したらあったり。
スケジュールをこねくりまわしたり。
ユーザーから電話がかかってきて待機することになったり。
ユーザーからまた電話がかかってきたり。
ユーザーにこちらから電話をかけたら待機が解除されたり。

解除されたので帰ります!
今日はメールと電話にほとんど時間を持っていかれた気がした。
2012/09/09 Sun
目が覚めて、のびをして、洗濯機に洗い物を突っ込んで、レンジの扉を開けて、
なんか鼻に違和感があると思ったら鼻血が。 今日は珍しく集中できた。時間的にはわずかなものでしたが。 6枚切りの食パンをさらに2枚におろしてツナサンド。
穴を開けずにおろせたものの、強度的にかなり問題のある出来に。
うん。まぁ、そりゃそうだ。と思いながらかじる。 たぬきうどーん。
2012/09/08 Sat
寝付けずに寝返りを売っていたら急にコードが浮かんできてデッドロック原因のアタリがついたので寝る。 ペアリング済みです。 たぬきうどん。