windowsサービスの SSH Server Broker を停止する。
スタートアップも無効にする。
Windows 10でSSH(Secure Shell)サーバーを使う
2017年10月18日水曜日
windowsアップデート後WSLのsshにログインできなくなった
2017年9月19日火曜日
python3.6.2にmysql-connectorのインストール
centos7にソースからビルドしたpython3.6.2を使用。
pip3 install mysql-connector エラーでインストールできない。
protobufが必要らしい。
それっぽいのを探してインストール。
$ yum search protobuf $ sudo yum install protobuf protobuf-c protobuf-c-devel protobuc-c-compiler $ pip3 install mysql-connector
まだ駄目。
Requirements
mysql-connector (version >= 2.2.3) requires Protobuf C++ (version >= 2.6.0)
らしい。README.md
centos7のprotobufは2.5.0
ソースからビルドする。
$ wget https://github.com/google/protobuf/releases/download/v3.4.1/protobuf-cpp-3.4.1.tar.gz $ tar xvzf protobuf-cpp-3.4.1.tar.gz $ cd protobuf-3.4.1 $ ./autogen.sh $ ./configure $ make $ make check $ sudo make install $ sudo ldconfig $ export MYSQLXPB_PROTOBUF_LIB_DIR=/usr/local/lib $ export MYSQLXPB_PROTOC=/usr/local/bin/protoc $ export MYSQLXPB_PROTOBUF_INCLUDE_DIR=/usr/local/include/google/protobuf $ pip3 install mysql-connectorでインストールできた。
2017年8月21日月曜日
2017年8月7日月曜日
iptables -L
Chain INPUT (policy DROP) target prot opt source destination DROP all -- 43.224.249.212 anywhere DROP all -- 182.48.0.0/18 anywhere DROP all -- 49.212.0.0/16 anywhere DROP all -- 59.106.0.0/16 anywhere DROP all -- 219.94.128.0/17 anywhere DROP all -- 24.4.0.0/15 anywhere ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED LOG all -f anywhere anywhere LOG level warning prefix `'[FRAGMENT]'' DROP all -f anywhere anywhere ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:http ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:https ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:55525 ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:smtp ACCEPT icmp -- anywhere anywhere ACCEPT udp -- anywhere anywhere state NEW udp dpts:60000:61000 Chain FORWARD (policy DROP) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
2017年5月14日日曜日
IO::Socket::SSL エラー "Bad address"
フレッツ光プレミアムからフレッツ光ネクストに変更してからか、windows updateしてからか、 Mail::IMAPClient でgmailに接続できなくなった。
my $socket = IO::Socket::SSL->new(
PeerHost => 'imap.gmail.com',
PeerPort => 993,
) or die "socket(): $@";
で "socket(): Bad address at ... line 31." のエラー。
use IO::Socket::SSL 'inet4';
で解決。
参考ページ
How to connect to a Gmail inbox
Perl IO::Socket::SSL: connect: Network is unreachable
2017年3月15日水曜日
pip install error: Unable to find vcvarsall.bat
pip で "pip install error: Unable to find vcvarsall.bat" エラーが出てインストール出来ない
How to deal with the pain of “unable to find vcvarsall.bat” より
You will need | |
---|---|
3.5 and later | Visual C++ Build Tools 2015 or Visual Studio 2015 |
3.3 and 3.4 | Windows SDK for Windows 7 and .NET 4.0 (Alternatively, Visual Studio 2010 if you have access to it) |
2.6 to 3.2 | Microsoft Visual C++ Compiler for Python 2.7 |
How to deal with the pain of “unable to find vcvarsall.bat” より
登録:
投稿 (Atom)