senooken JP Social
  • FAQ
  • Login
senooken JP Socialはsenookenの専用分散SNSです。
  • Public

    • Public
    • Network
    • Groups
    • Popular
    • People

Notices by Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe), page 39

  1. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Tuesday, 09-Oct-2018 00:58:34 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    Windows Updateで不安定になる(かもしれない)パッチが配布されているんですか・・・
    いちおうメインマシンはCBBかつ延期設定は施してあるので、多少の時間稼ぎは出来ますが・・・(この機能のためだけにPro版を買っている)
    明日情報収集して、場合によっては一時停止も検討しよう。

    In conversation Tuesday, 09-Oct-2018 00:58:34 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/669/original/2f8eccab1eff5155.png
  2. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 21:36:50 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    本運用には至りませんでしたが、後で見直したいこともあるかな?と思ったので、ブログ記事に残しておきました。
    https://mojizuri.jp/2018/10/08/pleroma%e3%82%a4%e3%83%b3%e3%82%b9%e3%82%bf%e3%83%b3%e3%82%b9%e3%82%92%e7%ab%8b%e3%81%a6%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%82%ef%bc%88%e5%82%99%e5%bf%98%e9%8c%b2%ef%bc%89/

    In conversation Monday, 08-Oct-2018 21:36:50 JST from yukari.cafe permalink

    Attachments

    1. No result found on File_thumbnail lookup.
      Pleromaインスタンスを立ててみた。(備忘録)
      By Y.Yamashiro from もじずり技術会

      少し気になっていたので実際にPleromaインスタンスを設置してみることにしました。
      (現状は実験的取り組みのため、URLは非公開とさせていただきます。)
      次に構築する時に備えて、以下に備忘録を残しておきます。

      ・サーバ
      サーバは、IDCFクラウドさんのLight.S1プラン(0.4円/h, 200円/月)に、ディスク容量はとりあえず20GB(1GBあたり 0.04円/h, 20円/月)で、合計600円/月という構成です。

      ・OS
      とりあえずUbuntu 18.04.1を使用しました。
      ISOイメージ( http://cdimage.ubuntu.com/releases/18.04/release/ubuntu-18.04.1-server-amd64.iso )からインストールを実行。

      ・パーティション構成

      マウントポイント サイズ オプション
      Reserved BIOS boot area 1.0 MB
      /boot 0.5 GB
      / 10.0 GB
      /var/lib/postgresql 10.0 GB noatime nodiratime
      swap max

      ・OSインストール後に実施したこと
      注)実験環境の為、rootユーザで実行していますがsudoを利用することをお勧めします。

      IDCFクラウドさんの環境に最適化するために「open-vm-tools」をインストールします。
      # apt install open-vm-tools

      OSをアップデートします。
      # apt update
      # apt upgrade

      ファイアウォールの設定やSSHサーバの設定、カーネルパラメータの設定を行います。
      <セキュリティ上の理由により非公開>

      PostgreSQLをインストールして、データページチェックサムを有効にします。
      # apt install postgresql postgresql-contrib
      # systemctl stop postgresql
      # su postgres
      $ cd
      $ rm -rf /var/lib/postgresql/10/main
      $ /usr/lib/postgresql/10/bin/initdb –no-locale -E UTF-8 -D /var/lib/postgresql/10/main -k
      $ exit

      パフォーマンスチューニングを実施。
      # vi /etc/postgresql/10/main/postgresql.conf

      権限を設定。
      # vi /etc/postgresq/10/main/pg_hba.conf

      PostgreSQLを起動して、ユーザとデータベースを作成します。
      # systemctl start postgresql.service
      # su postgres
      $ cd
      $ psql
      CREATE USER pleroma_testuser PASSWORD ‘passw0rd’;
      create database pleroma_testdb owner pleroma_testuser;
      \q
      # apt install apache2 git build-essential openssl imagemagick
      # wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
      # dpkg -i erlang-solutions_1.0_all.deb
      # apt update
      # apt install elixir erlang-dev erlang-parsetools erlang-xmerl erlang-tools

      ユーザを追加してPleromaをインストールします。
      (Wikiを参考に作業を進めました。 https://git.pleroma.social/pleroma/pleroma/wikis/home )
      # adduser pleroma_testuser
      # su pleroma_testuser
      $ cd
      $ git config –global user.email “メールアドレス”
      $ git clone https://git.pleroma.social/pleroma/pleroma.git pleroma
      <使用したバージョンは https://git.pleroma.social/pleroma/pleroma/commit/4f03bb22998b9713d84dc8e81a3d63bb60c5b648 です。>
      $ cd ~/pleroma
      $ mix deps.get
      Shall I install Hex ? Y
      $ mix generate_config
      Shall I install rebar3 ? Y
      $ cd config
      $ mv generated_config.exs prod.secret.exs

      設定を調整します。
      (/config/config.exsがサンプルファイルなのでこれを見ながら設定しました。)
      $ vi prod_secret.exs
      <ここでオブジェクトストレージを使用する設定を行いますが上手くいきませんでした。>
      IDCFクラウドさんのオブジェクトストレージ(S3互換)とは上手くつながりませんでした。
      おそらく現バージョンのPleromaはv4にしか対応しておらず、現在のIDCFクラウドさんのオブジェクトストレージはv2のため互換性が無い。
      次にConoHaのオブジェクトストレージ(Openstack Swift)への接続を試しましたが、こちらも上手くつながりませんでした。

      $ exit
      # su postgres -c ‘psql -f config/setup_db.psql’
      # su pleroma_testuser
      $ MIX_ENV=prod mix ecto.migrate

      systemdの設定を行います。
      (/installation/pleroma.serviceがサンプルファイルなのでこれを見ながら設定しました。)
      # vi /etc/systemd/system/pleroma-test.service
      [Unit]
      Description=Pleroma social network
      After=network.target postgresql.service
      [Service]
      User=pleroma_testuser
      WorkingDirectory=/home/pleroma_testuser/pleroma
      Environment="HOME=/home/pleroma_testuser"
      Environment="MIX_ENV=prod"
      ExecStart=/usr/local/bin/mix phx.server
      ExecReload=/bin/kill $MAINPID
      KillMode=process
      TimeoutSec=15
      Restart=on-failure
      [Install]
      WantedBy=multi-user.target

      # systemctl daemon-reload
      # systemctl enable /etc/systemd/system/pleroma-test.service
      # systemctl start pleroma-test.service

      稼働状況をチェックします。
      # journalctl -fu pleroma-test.service

      ・感想
      インストール作業は手順通りに進めていけば特に難しい点もなくあっさり動いてくれました。
      メモリ消費量も少なくて済むので安価なVPSでもサクサク動作してくれますし、configファイルで設定が行える点や、シンプルなWebUIなどとても気に入っているのですが、管理用のWebUIが欲しいなぁ・・・と思いました。

  3. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 18:54:42 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    紲星あかりちゃんのexVOICE発売まだかな?
    と思って検索してみたら「紲星あかり exVOICE vol.1」が既に発売されていたので、かなり遅ればせながら購入。
    (AHSさんのページからは情報を見つけられなかった・・・)

    In conversation Monday, 08-Oct-2018 18:54:42 JST from yukari.cafe permalink
  4. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 17:30:57 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    メンテナンス作業の前にMastodon(v2.5.0)のメモリ消費量を実測してみました。

    In conversation Monday, 08-Oct-2018 17:30:57 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/660/original/8ab7fcf529ef4fd8.png
  5. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 17:30:13 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    メンテナンス作業の前にメモリ消費量を確認しました。

    In conversation Monday, 08-Oct-2018 17:30:13 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/660/original/8ab7fcf529ef4fd8.png
  6. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 16:51:35 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    ゆかりフェス で購入してきた「工場できたて便 ゆかり」を食べながらメンテナンス作業していました。
    通常品と食べ比べてみましたが、僅かに風味が良いように感じました。(プラシーボ効果かもしれませんが。)

    In conversation Monday, 08-Oct-2018 16:51:35 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/659/original/c8ea7ac8789e22f9.jpeg
  7. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 16:48:05 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    ゆかりフェス で購入してきた「工場できたて便 ゆかり」を食べながらメンテナンス作業していました。
    製造日が古い物と食べ比べてみましたが、僅かに風味が良いように感じました。(プラシーボ効果かもしれませんが。)

    In conversation Monday, 08-Oct-2018 16:48:05 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/659/original/c8ea7ac8789e22f9.jpeg
  8. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 16:44:40 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済
    in reply to

    Mastodon v2.5.1へのアップデート作業が完了しました。

    #ゆかりカフェからのお知らせ

    In conversation Monday, 08-Oct-2018 16:44:40 JST from yukari.cafe permalink
  9. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 16:03:10 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    なにより料理クラスタに人脈がなかった。

    In conversation Monday, 08-Oct-2018 16:03:10 JST from yukari.cafe permalink
  10. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 15:59:53 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    まぁ、ノウハウもリソーセスも全く足りないので、私が実施することは無いですね・・・

    In conversation Monday, 08-Oct-2018 15:59:53 JST from yukari.cafe permalink
  11. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 15:44:52 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    Mastodon v2.5.1へのアップデート作業の為、本日 16時30分頃~数十分程度インスタンスを停止します。
    メンテナンス作業中は当インスタンスに御アクセスいただけませんのでご了承ください。

    #ゆかりカフェからのお知らせ

    In conversation Monday, 08-Oct-2018 15:44:52 JST from yukari.cafe permalink
  12. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 15:42:07 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    リアルカフェ企画・・・面白そうですね。

    In conversation Monday, 08-Oct-2018 15:42:07 JST from yukari.cafe permalink
  13. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 15:37:57 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    5月4日に向けては・・・食器類であればお箸が欲しいですね。
    (コースター、グラス、マグカップ、絵皿などが王道なのでしょうが。)
    後は、スペースの装飾用として3段式のケーキスタンドが欲しいなぁ、と。(アフタヌーンティースタイル)

    In conversation Monday, 08-Oct-2018 15:37:57 JST from yukari.cafe permalink
  14. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 14:54:26 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    食べ物&お酒へのこだわりが強いので“池袋(鉄板焼きダイニング)”か“新宿(会員制バー)”での開催になるかなぁと思います。
    蒲田から電車で30~40分もかかるので極少人数催行になるでしょう。
    (ちょくちょく東京には行くので、蒲田付近で激ウマなお店が見つかれば別ですが。)

    In conversation Monday, 08-Oct-2018 14:54:26 JST from yukari.cafe permalink
  15. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 14:41:33 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    公式情報(タイムテーブル等)が出ていないので悩ましいですが、5月3日の夜に飲み会企画くらいは出来そうですね。

    In conversation Monday, 08-Oct-2018 14:41:33 JST from yukari.cafe permalink
  16. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 14:18:44 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    来年の同人活動計画を立てていて、声月よりも前(3/14)にうちのインスタンスが開設一周年を迎えることに気がついた。
    声月は2days参加、即売会は2spで申し込み予定なので何か一周年企画とかやろうかな?

    In conversation Monday, 08-Oct-2018 14:18:44 JST from yukari.cafe permalink
  17. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 13:48:49 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    ゆかりフェス 3日目なう。

    In conversation Monday, 08-Oct-2018 13:48:49 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/645/original/30063cc57ee16c86.jpeg

    2. https://yukari.mojizuri.com/media_attachments/files/000/003/646/original/69c52bf3c87f6784.jpeg

    3. https://yukari.mojizuri.com/media_attachments/files/000/003/647/original/e6d5b62f8e55dd68.jpeg

    4. https://yukari.mojizuri.com/media_attachments/files/000/003/648/original/35b078a5726b8a6e.jpeg
  18. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 13:05:42 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    MastodonとMisskeyの更新履歴を読んでいたら愛知県に入っていた。

    In conversation Monday, 08-Oct-2018 13:05:42 JST from yukari.cafe permalink
  19. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Monday, 08-Oct-2018 11:40:11 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済

    さらば東京。

    In conversation Monday, 08-Oct-2018 11:40:11 JST from yukari.cafe permalink

    Attachments


    1. https://yukari.mojizuri.com/media_attachments/files/000/003/644/original/790115e28cbaa9e4.jpeg
  20. Y.Yamashiro@IA Revo申込済 (shukukei@yukari.cafe)'s status on Sunday, 07-Oct-2018 21:52:25 JST Y.Yamashiro@IA Revo申込済 Y.Yamashiro@IA Revo申込済
    in reply to
    • とねぢ @Minoh-don(Late Bloomer)

    @toneji 最近ビールの魅力に目覚めました!(日本酒一辺倒でした)

    In conversation Sunday, 07-Oct-2018 21:52:25 JST from yukari.cafe permalink
  • After
  • Before

User actions

    Y.Yamashiro@IA Revo申込済

    Y.Yamashiro@IA Revo申込済

    ものづくりが好きなのでアルミ塊から「メタルマカロン」を削り出したりしています。最近は動画投稿もはじめました。たまにMastodonインスタンスの管理人をやっています。

    Tags
    • (None)
    WebSub

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          2101
          Member since
          22 Jul 2018
          Notices
          963
          Daily average
          0

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          senooken JP Social is a social network, courtesy of senooken. It runs on GNU social, version 2.0.2-beta0, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All senooken JP Social content and data are available under the Creative Commons Attribution 3.0 license.