| 最近の更新 | |
|---|---|
| RDSが高いのはIOPSのせいでした
| 2025/10/29 |
| キーボード
| 2025/10/23 |
| 稲盛和夫
| 2025/10/23 |
| 突然LANがつながらなくなりました
| 2025/10/23 |
| 第2種電気工事士_奮闘記
| 2025/10/23 |
| 経済予測
| 2025/10/23 |
| 藤井厳喜セミナー
| 2025/10/23 |
| 資金調達
| 2025/10/23 |
| 車と税金
| 2025/10/23 |
| 配線
| 2025/10/23 |
| 開業に向けて
| 2025/10/23 |
| 決算報告
| 2025/10/23 |
| 牧野正幸
| 2025/10/23 |
| 理想の組織が失敗する時
| 2025/10/23 |
| 監視カメラ
| 2025/10/23 |
| 知のポートフォリオ
| 2025/10/23 |
| 社内LAN敷設
| 2025/10/23 |
| 税務署から源泉徴収票が届きました
| 2025/10/23 |
| 作業場
| 2025/10/23 |
| 利益は結果
| 2025/10/23 |
$ sudo gem install geminabox
$ mkdir REPO $ cd REPO $ mkdir data
require "rubygems" require "geminabox" Geminabox.data = "./data" run Geminabox::Server
$ cat Gemfile gem 'geminabox' gem 'rack', '<2.0' gem 'sinatra' $ bundle install
$ bundle exec rackup
$ gem build APP.gemspec $ gem inabox APP-N.NN.NN.gem Host: http://localhost:9292
http://localhost:9292 で閲覧可能
サーバが吹っ飛び、ブートしなくなりましたorz
幸いディスクは生きていたので、この際クラウドに引っ越すことにしました。
$ cd /mnt/hd/var/opt
$ nohup sudo rsync -chavzP --rsync-path="sudo rsync" \
--stats -e 'ssh -i /home/[MY_ACCOUNT]/.ssh/id_rsa -l [MY_ACCOUNT]' \
./ wellstech.jp:/var/opt/ &※ 実際は、時間がかかるので /var/opt/ 下の budori, git, bkp の順に行った:
スラッシュ(/) の有無は大事。$ cd /mnt/hd/var/opt $ nohup sudo rsync -chavzP --rsync-path="sudo rsync" --stats -e 'ssh -i /home/[MY_ACCOUNT]/.ssh/id_rsa -l [MY_ACCOUNT]' budori wellstech.jp:/var/opt/ & $ nohup sudo rsync -chavzP --rsync-path="sudo rsync" --stats -e 'ssh -i /home/[MY_ACCOUNT]/.ssh/id_rsa -l [MY_ACCOUNT]' git wellstech.jp:/var/opt/ & $ nohup sudo rsync -chavzP --rsync-path="sudo rsync" --stats -e 'ssh -i /home/[MY_ACCOUNT]/.ssh/id_rsa -l [MY_ACCOUNT]' bkp wellstech.jp:/var/opt/ &
しばらく
Job for iscsid.service failed because a configured resource limit was exceeded. See "systemctl status iscsid.service" and "journalctl -xe" for details. invoke-rc.d: initscript iscsid, action "restart" failed. ● iscsid.service - iSCSI initiator daemon (iscsid)
Loaded: loaded (/lib/systemd/system/iscsid.service; enabled; vendor preset: enabled) Active: failed (Result: resources) since 金 2017-08-25 00:32:26 JST; 26ms ago Docs: man:iscsid(8)
Process: 16297 ExecStart=/sbin/iscsid (code=exited, status=0/SUCCESS)
Process: 16291 ExecStartPre=/lib/open-iscsi/startup-checks.sh (code=exited, status=0/SUCCESS)
8月 25 00:32:26 wellstech systemd[1]: Starting iSCSI initiator daemon (iscsid)...
8月 25 00:32:26 wellstech iscsid[16298]: iSCSI daemon with pid=16299 started! 8月 25 00:32:26 wellstech systemd[1]: iscsid.service: Failed to read PID from file /run/iscsid.pid: Invalid argument 8月 25 00:32:26 wellstech systemd[1]: iscsid.service: Daemon never wrote its PID file. Failing. 8月 25 00:32:26 wellstech systemd[1]: Failed to start iSCSI initiator daemon (iscsid). 8月 25 00:32:26 wellstech systemd[1]: iscsid.service: Unit entered failed state. 8月 25 00:32:26 wellstech systemd[1]: iscsid.service: Failed with result 'resources'.
dpkg: パッケージ open-iscsi の処理中にエラーが発生しました (--configure):
サブプロセス インストール済みの post-installation スクリプト はエラー終了ステータス 1 を返しました
と言うエラーが出ていた。
取り急ぎ、open-iscsi を削除することで対応:
$ sudo apt remove open-iscsi
ubuntu-server なるパッケージも同時に削除されるとのことだが、 これ自身は document 類だけのようなので、ok とした。