raspbianからraspbianへの接続とかとか




SSHでラズベリーパイからラズベリーパイに接続するには、ログイン先ホストに接続する名前の「アカウント」が『用意されている』ことが前提になるので、piユーザーを名前変更しておいた私は偉かった。

ターミナル開いてこう:
$sudo su (変更したいユーザー名)
$ssh -p (ターゲットのポート番号) (接続先のIPアドレス)

一応rootユーザーは使わない事にしている。
用もないし、見づらいし? デバッガ入れればもっと違うのかも……今度探してみよっと。

んで。
センサー値取得用機にlighttpdをセットしまして。
ついでにPHPもセットしまして。
1-wireもセットしまして。
これで水槽の温度は取得できる体制が完成した
はずなんだけどなぁ。なんでかLighttpdが旨く起動しないでやんの……Orz

まず、nanoの使い方を見直しました:http://www.tapun.net/raspi/raspberry-pi-nano-guide
つぎに、Lighttpdのインストール:http://blogs.yahoo.co.jp/beachinside/11989184.html
ここのfastCGI関連がずっと悪さをしてくれたので、最新(ディストリは最新ではない)のリポジトリとは相性が悪かったらしくてずっとActive;faildだった。

$sudo nano /etc/lighttpd/lighttpd.conf

server.modules = (
“mod_access”,
“mod_accesslog”,
“mod_alias”,
“mod_compress”,
# “mod_fastcgi”,
“mod_redirect”,
“mod_rewrite”,
)

server.document-root = “/var/www/html”
server.upload-dirs = ( “/var/cache/lighttpd/uploads” )
server.errorlog = “/var/log/lighttpd/error.log”
accesslog.filename = “/var/log/lighttpd/access.log”
server.pid-file = “/var/run/lighttpd.pid”
server.username = “www-data”
server.groupname = “www-data”
server.port = 80

index-file.names = ( “index.php”, “index.html”, “index.lighttpd.html” )
url.access-deny = ( “~”, “.inc” )
static-file.exclude-extensions = ( “.php”, “.pl”, “.fcgi” )

compress.cache-dir = “/var/cache/lighttpd/compress/”
compress.filetype = ( “application/javascript”, “text/css”, “text/html”, “text/plain” )

# default listening port for IPv6 falls back to the IPv4 port
#include_shell “/usr/share/lighttpd/use-ipv6.pl ” + server.port
include_shell “/usr/share/lighttpd/create-mime.assign.pl”
include_shell “/usr/share/lighttpd/include-conf-enabled.pl”

んで記述を変更したら、シンタックスチェック
$lighttpd -tt -f /etc/lighttpd/lighttpd.conf

設定完了して反映できるまでにまた3日かかったんだけど……Orz
一応動く状態には出来たから、まあいいか。

参考 WikiStart – Lighttpd – lighty labs:http://redmine.lighttpd.net/projects/lighttpd/wiki/




Tags:, , ,

This entry was posted on 日曜日, 3月 19th, 2017 at 15:26 and is filed under Raspi.

You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.

Comments are closed.