DaisukeDaisuke / pmmpDiscordBot

DiscordからPocketMine-MPのコンソールを操作します。(β)
Do What The F*ck You Want To Public License
8 stars 5 forks source link

Log #1

Closed NekoFuwa1739 closed 3 years ago

NekoFuwa1739 commented 3 years ago

Screenshot_20210113-222620_Termius Discordの反応もなくこんな感じで大量のログが何個も出てきます…何が原因分かりますかね…

DaisukeDaisuke commented 3 years ago

ご不便とご迷惑をお掛けしまして、誠に申し訳ございません。 また、反応遅れました事をお詫び申し上げます。

原因

discord起動時のオプションにて、コンソールへのdiscordPHPに関するログ出力を有効化をしている為にてございます。

対策

コンソールへのログ出力をオプション化致します。 (discord接続トラブル時に備え、デフォルトにて有効とします... 申し訳ございません...)

実装期限

2021年1月24日終日まで実装します。

ご不便とご迷惑をお掛けしました事をお詫び申し上げます。

今回のエラーについて

(類似したエラー再現コードにてございます。)

file_get_contents("https://www.example.com");
Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in Command line code on line 1

Warning: file_get_contents(): Failed to enable crypto in Command line code on line 1

Warning: file_get_contents(https://www.example.com): failed to open stream: operation failed in Command line code on line 1

重要なエラー文

operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in Command line code on line 1

エラー解決方法

サーバーにSSL証明書(ssl root証明書)存在しない事は原因です。 phpバイナリに付属せず(場合に依ります。)、コンビューター付属のssl証明書を利用する為です(Android付属のssl証明書に関しましては、Linuxと異なり、特殊なアクセス方法を用いる為)

curl公式サイトよりSSL証明書をダウンロードします。

↓「cacert.pem」ダウンロードリンクにてございます... https://curl.haxx.se/ca/cacert.pem

Androidの場合...

前提環境

以下のリポジトリよりダウンロード致しました、phpバイナリにてPocketMine-MPを動作致しましております、前提にて説明を実施します。

○ AndroidPHP`
× vps
△ pj***** (読み飛ばしをお願いします...(本当に申し訳ないです))

https://github.com/DaisukeDaisuke/AndroidPHP


解決方法

ダウンロード致しました、"cacert.pem"ファイルを以下のディレクトリにコピーします。

/sdcard/Download/cacert.pem
↓
/sdcard/PocketMine/config/cacert.pem
/[本体ストレージ]/Download/cacert.pem
↓
/[本体ストレージ]/PocketMine/config/cacert.pem

以下のディレクトリに「php.ini」を作成します。

/sdcard/PocketMine/config/php.ini
/[本体ストレージ]/PocketMine/config/php.ini

作成した"php.ini"ファイルに以下の内容を追加します。

openssl.cafile='/sdcard/www/config/cacert.pem'
curl.cainfo='/sdcard/www/config/cacert.pem'

php 起動オプションを変更します。

before

php 

pj*****の場合...(念の為隠避)

ダウンロード致しました、「cacert.pem」ファイルをpj*****へアップロード致します。

php.iniの場所を調査を実施致します。

pj*****を所有していない為、不明にてございますものの、php.iniファイルに関しましては、以下のディレクトリに存在致しますと私は思います...

/bin/php7/bin/php.ini

存在致しましております、"php.ini"ファイルに以下の内容を追加(追記)します。

openssl.cafile='/[アップロード先のディレクトリ]/cacert.pem'
curl.cainfo='/[アップロード先のディレクトリ]/cacert.pem'

動作確認

サーバー起動、エラー内容の変換/正常に接続した事を確認します。

NekoFuwa1739 commented 3 years ago

丁寧なお返事ありがとうございます!自分はvpsなので実装 されるまでお待ちしてますm(* )m carert.pemはvpsには必要なかったんですね(--;)

DaisukeDaisuke commented 3 years ago

分かりにくく、申し訳ないです。 carert.pemに関しましては、「vpsにも必要」にてございます。

了解です。 忙しく、重要な説明を省略していました為、追記します...

vpsの場合...

curl公式サイトよりSSL証明書をダウンロードします。

↓ダウンロードリンク... https://curl.haxx.se/ca/cacert.pem

ダウンロード致しました、「cacert.pem」ファイルをvpsサーバーへアップロード致します。

"php.ini"の場所を調査します。

「php.ini」ファイルに関しましては、恐らく「bin」フォルダ内に存在致しますと私は思います...

発見致しました、"php.ini"ファイルに以下の内容を追記します。

openssl.cafile='/[アップロード先のディレクトリ]/cacert.pem'
curl.cainfo='/[アップロード先のディレクトリ]/cacert.pem'

php 起動オプションを変更します...

※「bin」フォルダに内に存在致します、「php.ini」ファイルを編集へ証明書の設定を追記、再起動を実施致しましても、動作しない場合

before

php /[PocketMine-MP]/PocketMine-MP.phar

after

php -c  /[PocketMine-MP]/config/php.ini /[PocketMine-MP]/PocketMine-MP.phar
php -c (php.iniファイルの場所) /[PocketMine-MP]/PocketMine-MP.phar
DaisukeDaisuke commented 3 years ago

discordPHPの更新、デフォルトログレベルを「warning」に変更しました... 時間を要しました事をお詫び申し上げます。

↓ダウンロードリンクにてございます... https://github.com/DaisukeDaisuke/pmmpDiscordBot/releases/tag/3.0.3

NekoFuwa1739 commented 3 years ago

ありがとうございますm(* )m logは出力されなくなったのですが、まだBotの方が起動されませんでした… 何故か自分のサーバーはbinフォルダがなくても起動できています… 終了時に画像のようなものが出ます… Screenshot_20210124-113813_Termius

DaisukeDaisuke commented 3 years ago

非常に申し訳ないですのですが、サーバー起動時にエラー発生している場合、エラーのスクリーンショットをこのissuesへ投稿していただけませんでしょうか....? 再読み込み対応していない可能性も存在致します... 申し訳ないです...

NekoFuwa1739 commented 3 years ago

すみません!もしかしてDiscordPHPってゆうやつですかね…? Screenshot_20210124-152341_Termius

DaisukeDaisuke commented 3 years ago

このissueの先頭にて報告していただきました、エラーと同じと推測されます... cacert.pemに関しましては、正しく設定しておりますでしょうか...?

また、phpの場所は分かります場合、以下のコマンドの事項結果にて表示致しました場所にphp.ini存在致します...

bin\[.....]\php --ini

私の環境の場合(windows)

I:\Owner\Desktop\php_vscode\bin\php\php --ini
Loaded Configuration File:         I:\Owner\Desktop\php_vscode\bin\php\php.ini
Scan for additional .ini files in: (none)
Additional .ini files parsed:      (none)

以下のファイルにcacert.pemのに関する設定を追記します。

I:\Owner\Desktop\php_vscode\bin\php\php.ini

追記致します、文章

非常に申し訳ないですのですが、[アップロード先のディレクトリ]に関しましては、柔軟に変更をお願いします。

openssl.cafile='/[アップロード先のディレクトリ]/cacert.pem'
curl.cainfo='/[アップロード先のディレクトリ]/cacert.pem'

linuxの場合

cacert.pemをダウンロードします

wget https://curl.haxx.se/ca/cacert.pem

以下のコマンドの出力をメモします 今回に関しましては、例として/???/を出力したとして説明を行います...

pwd

コマンド実行結果(例にてございます。)

/???/

つまり...? /???/cacert.pem へssl証明書ファイルをダウンロードし、 ダウンロード先のディレクトリをpwdコマンドにて取得しました

以下のコマンドを実行可能な場合のみ実行します

(コマンドは存在しない場合、教えていただきたいです...)

php --ini
Loaded Configuration File:         /???/???/php.ini (例にてございます。)
Scan for additional .ini files in: (none)
Additional .ini files parsed:      (none)

表示致しました、ディレクトリ(php.ini)をコピー後、以下のコマンドを実行します

nano /???/???/php.ini

仮想キーボードの「↓」キーにて文末(一番最後)までスクロールを実施し、以下の文章を追加(へースト)します

非常に申し訳ないですのですが、/???/に関しましては、柔軟に変更をお願いします。

openssl.cafile='/???/cacert.pem' # 例にてございます。
curl.cainfo='/???/cacert.pem'# 例にてございます。

仮想キーボードの「Ctrl」→ 「o」(マルではない)→「改行(エンター)」の操作を実施し、保存します

仮想キーボードの「Ctrl」→ 「x」(バツではない)→「改行(エンター)」の操作を実施し、nano editorを終了します

NekoFuwa1739 commented 3 years ago

度々すみません… おかげでphp.iniが見つかったんですけど通常のやつと違って、ほとんどの行初めに" ; "が付いてるんですけど openssl.cafile='/pmmp/cacert.pem' curl.cainfo='/pmmp/cacert.pem' の時も同じように" ; "をつけた方がいいのですかね?

DaisukeDaisuke commented 3 years ago

「;」や「#」に関しましてはコマンドの為、今回新規に追加する設定では、不要にてございます。

;コメントです
;ssl証明書を指定します。
openssl.cafile='/pmmp/cacert.pem';opensslにて使用する証明書ファイルを指定します
curl.cainfo='/pmmp/cacert.pem';curlにて使用する証明書ファイルを指定します
NekoFuwa1739 commented 3 years ago

了解です! 保存しようとしたら権限がありませんと言われてしまいました… Screenshot_20210124-165223_CapCut

DaisukeDaisuke commented 3 years ago

非常に申し訳ないですのですが、一度 「Ctrl」→ 「x」(バツではない)→「改行(エンター)」→「n」...?の操作を実施し、nano editorをファイルを保存せずに終了(権限のない状態でのnanoエディタ内でのファイル保存は複雑な為、一度保存せずに終了します。)、

(rootパスワード入力) = vpsサーバーのサーバー内rootパスワード/vpsサーバーsshログイン時(...?)に使用するパスワードの入力をお願いします。

sudoコマンドをご存じの場合以下のコマンドを実行をお願いします。

sudo nano /etc/php/7.4/cli/php.ini
(パスワード入力)

ご存じではない場合、以下のコマンドを実行して頂きたいです...

su
(rootパスワード入力)
nano /etc/php/7.4/cli/php.ini
exit
NekoFuwa1739 commented 3 years ago

Screenshot_20210124-173216_File Manager + cacert.pemも置きおかげで保存もできたのですが、変わらずDiscordPHPのエラーが出てしまいます… もうだめなんですかね…

DaisukeDaisuke commented 3 years ago

エラー文に関しましては、以下のコメントのエラー文と同じにてございますでしょうか...? https://github.com/DaisukeDaisuke/pmmpDiscordBot/issues/1#issuecomment-766299644

同じ場合、以下のコマンドの実行結果を教えていただけませんでしょうか...?

php -i | grep cainfo
NekoFuwa1739 commented 3 years ago

はい、同じエラー文です。 下記が実行結果です

phpinfo() ``` ubuntu@nekocafe:~$ php -i grep cainfo phpinfo() PHP Version => 7.4.3 System => Linux nekocafe 5.4.0-1035-oracle #38-Ubuntu SMP Wed Jan 6 21:46:41 UTC 2021 x86_64 Build Date => Oct 6 2020 15:47:56 Server API => Command Line Interface Virtual Directory Support => disabled Configuration File (php.ini) Path => /etc/php/7.4/cli Loaded Configuration File => /etc/php/7.4/cli/php.ini Scan this dir for additional .ini files => /etc/php/7.4/cli/conf.d Additional .ini files parsed => /etc/php/7.4/cli/conf.d/10-opcache.ini, /etc/php/7.4/cli/conf.d/10-pdo.ini, /etc/php/7.4/cli/conf.d/20-calendar.ini, /etc/php/7.4/cli/conf.d/20-ctype.ini, /etc/php/7.4/cli/conf.d/20-exif.ini, /etc/php/7.4/cli/conf.d/20-ffi.ini, /etc/php/7.4/cli/conf.d/20-fileinfo.ini, /etc/php/7.4/cli/conf.d/20-ftp.ini, /etc/php/7.4/cli/conf.d/20-gettext.ini, /etc/php/7.4/cli/conf.d/20-iconv.ini, /etc/php/7.4/cli/conf.d/20-json.ini, /etc/php/7.4/cli/conf.d/20-phar.ini, /etc/php/7.4/cli/conf.d/20-posix.ini, /etc/php/7.4/cli/conf.d/20-readline.ini, /etc/php/7.4/cli/conf.d/20-shmop.ini, /etc/php/7.4/cli/conf.d/20-sockets.ini, /etc/php/7.4/cli/conf.d/20-sysvmsg.ini, /etc/php/7.4/cli/conf.d/20-sysvsem.ini, /etc/php/7.4/cli/conf.d/20-sysvshm.ini, /etc/php/7.4/cli/conf.d/20-tokenizer.ini PHP API => 20190902 PHP Extension => 20190902 Zend Extension => 320190902 Zend Extension Build => API320190902,NTS PHP Extension Build => API20190902,NTS Debug Build => no Thread Safety => disabled Zend Signal Handling => enabled Zend Memory Manager => enabled Zend Multibyte Support => disabled IPv6 Support => enabled DTrace Support => available, disabled Registered PHP Streams => https, ftps, compress.zlib, php, file, glob, data, http, ftp, phar Registered Stream Socket Transports => tcp, udp, unix, udg, ssl, tls, tlsv1.0, tlsv1.1, tlsv1.2, tlsv1.3 Registered Stream Filters => zlib.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, convert.iconv.* This program makes use of the Zend Scripting Language Engine: Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies _______________________________________________________________________ Configuration calendar Calendar support => enabled Core PHP Version => 7.4.3 Directive => Local Value => Master Value allow_url_fopen => On => On allow_url_include => Off => Off arg_separator.input => & => & arg_separator.output => & => & auto_append_file => no value => no value auto_globals_jit => On => On auto_prepend_file => no value => no value browscap => no value => no value default_charset => UTF-8 => UTF-8 default_mimetype => text/html => text/html disable_classes => no value => no value disable_functions => no value => no value display_errors => Off => Off display_startup_errors => Off => Off doc_root => no value => no value docref_ext => no value => no value docref_root => no value => no value enable_dl => Off => Off enable_post_data_reading => On => On error_append_string => no value => no value error_log => no value => no value error_prepend_string => no value => no value error_reporting => 22527 => 22527 expose_php => On => On extension_dir => /usr/lib/php/20190902 => /usr/lib/php/20190902 file_uploads => On => On hard_timeout => 2 => 2 highlight.comment => #FF8000 => #FF8000 highlight.default => #0000BB => #0000BB highlight.html => #000000 => #000000 highlight.keyword => #007700 => #007700 highlight.string => #DD0000 => #DD0000 html_errors => Off => Off ignore_repeated_errors => Off => Off ignore_repeated_source => Off => Off ignore_user_abort => Off => Off implicit_flush => On => On include_path => .:/usr/share/php => .:/usr/share/php input_encoding => no value => no value internal_encoding => no value => no value log_errors => On => On log_errors_max_len => 1024 => 1024 mail.add_x_header => Off => Off mail.force_extra_parameters => no value => no value mail.log => no value => no value max_execution_time => 0 => 0 max_file_uploads => 20 => 20 max_input_nesting_level => 64 => 64 max_input_time => -1 => -1 max_input_vars => 1000 => 1000 memory_limit => -1 => -1 open_basedir => no value => no value output_buffering => 0 => 0 output_encoding => no value => no value output_handler => no value => no value post_max_size => 8M => 8M precision => 14 => 14 realpath_cache_size => 4096K => 4096K realpath_cache_ttl => 120 => 120 register_argc_argv => On => On report_memleaks => On => On report_zend_debug => Off => Off request_order => GP => GP sendmail_from => no value => no value sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i serialize_precision => -1 => -1 short_open_tag => Off => Off SMTP => localhost => localhost smtp_port => 25 => 25 sys_temp_dir => no value => no value syslog.facility => LOG_USER => LOG_USER syslog.filter => no-ctrl => no-ctrl syslog.ident => php => php track_errors => Off => Off unserialize_callback_func => no value => no value upload_max_filesize => 2M => 2M upload_tmp_dir => no value => no value user_dir => no value => no value user_ini.cache_ttl => 300 => 300 user_ini.filename => .user.ini => .user.ini variables_order => GPCS => GPCS xmlrpc_error_number => 0 => 0 xmlrpc_errors => Off => Off zend.assertions => -1 => -1 zend.detect_unicode => On => On zend.enable_gc => On => On zend.exception_ignore_args => On => On zend.multibyte => Off => Off zend.script_encoding => no value => no value zend.signal_check => Off => Off ctype ctype functions => enabled date date/time support => enabled timelib version => 2018.03 "Olson" Timezone Database Version => 0.system Timezone Database => internal Default timezone => UTC Directive => Local Value => Master Value date.default_latitude => 31.7667 => 31.7667 date.default_longitude => 35.2333 => 35.2333 date.sunrise_zenith => 90.583333 => 90.583333 date.sunset_zenith => 90.583333 => 90.583333 date.timezone => no value => no value exif EXIF Support => enabled Supported EXIF Version => 0220 Supported filetypes => JPEG, TIFF Multibyte decoding support using mbstring => disabled Extended EXIF tag formats => Canon, Casio, Fujifilm, Nikon, Olympus, Samsung, Panasonic, DJI, Sony, Pentax, Minolta, Sigma, Foveon, Kyocera, Ricoh, AGFA, Epson Directive => Local Value => Master Value exif.decode_jis_intel => JIS => JIS exif.decode_jis_motorola => JIS => JIS exif.decode_unicode_intel => UCS-2LE => UCS-2LE exif.decode_unicode_motorola => UCS-2BE => UCS-2BE exif.encode_jis => no value => no value exif.encode_unicode => ISO-8859-15 => ISO-8859-15 FFI FFI support => enabled Directive => Local Value => Master Value ffi.enable => preload => preload ffi.preload => no value => no value fileinfo fileinfo support => enabled libmagic => 537 filter Input Validation and Filtering => enabled Directive => Local Value => Master Value filter.default => unsafe_raw => unsafe_raw filter.default_flags => no value => no value ftp FTP support => enabled FTPS support => enabled gettext GetText Support => enabled hash hash support => enabled Hashing Engines => md2 md4 md5 sha1 sha224 sha256 sha384 sha512/224 sha512/256 sha512 sha3-224 sha3-256 sha3-384 sha3-512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b crc32c fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 MHASH support => Enabled MHASH API Version => Emulated Support iconv iconv support => enabled iconv implementation => glibc iconv library version => 2.31 Directive => Local Value => Master Value iconv.input_encoding => no value => no value iconv.internal_encoding => no value => no value iconv.output_encoding => no value => no value json json support => enabled libxml libXML support => active libXML Compiled Version => 2.9.10 libXML Loaded Version => 20910 libXML streams => enabled openssl OpenSSL support => enabled OpenSSL Library Version => OpenSSL 1.1.1f 31 Mar 2020 OpenSSL Header Version => OpenSSL 1.1.1f 31 Mar 2020 Openssl default config => /usr/lib/ssl/openssl.cnf Directive => Local Value => Master Value openssl.cafile => /home/ubuntu/pmmp/cacert.pem => /home/ubuntu/pmmp/cacert.pem openssl.capath => no value => no value pcntl pcntl support => enabled pcre PCRE (Perl Compatible Regular Expressions) Support => enabled PCRE Library Version => 10.34 2019-11-21 PCRE Unicode Version => 12.1.0 PCRE JIT Support => enabled PCRE JIT Target => x86 64bit (little endian + unaligned) Directive => Local Value => Master Value pcre.backtrack_limit => 1000000 => 1000000 pcre.jit => 1 => 1 pcre.recursion_limit => 100000 => 100000 PDO PDO support => enabled PDO drivers => Phar Phar: PHP Archive support => enabled Phar API version => 1.1.1 Phar-based phar archives => enabled Tar-based phar archives => enabled ZIP-based phar archives => enabled gzip compression => enabled bzip2 compression => disabled (install ext/bz2) Native OpenSSL support => enabled Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. Directive => Local Value => Master Value phar.cache_list => no value => no value phar.readonly => On => On phar.require_hash => On => On posix POSIX support => enabled readline Readline Support => enabled Readline library => EditLine wrapper Directive => Local Value => Master Value cli.pager => no value => no value cli.prompt => \b \> => \b \> Reflection Reflection => enabled session Session Support => enabled Registered save handlers => files user Registered serializer handlers => php_serialize php php_binary Directive => Local Value => Master Value session.auto_start => Off => Off session.cache_expire => 180 => 180 session.cache_limiter => nocache => nocache session.cookie_domain => no value => no value session.cookie_httponly => no value => no value session.cookie_lifetime => 0 => 0 session.cookie_path => / => / session.cookie_samesite => no value => no value session.cookie_secure => 0 => 0 session.gc_divisor => 1000 => 1000 session.gc_maxlifetime => 1440 => 1440 session.gc_probability => 0 => 0 session.lazy_write => On => On session.name => PHPSESSID => PHPSESSID session.referer_check => no value => no value session.save_handler => files => files session.save_path => /var/lib/php/sessions => /var/lib/php/sessions session.serialize_handler => php => php session.sid_bits_per_character => 5 => 5 session.sid_length => 26 => 26 session.upload_progress.cleanup => On => On session.upload_progress.enabled => On => On session.upload_progress.freq => 1% => 1% session.upload_progress.min_freq => 1 => 1 session.upload_progress.name => PHP_SESSION_UPLOAD_PROGRESS => PHP_SESSION_UPLOAD_PROGRESS session.upload_progress.prefix => upload_progress_ => upload_progress_ session.use_cookies => 1 => 1 session.use_only_cookies => 1 => 1 session.use_strict_mode => 0 => 0 session.use_trans_sid => 0 => 0 shmop shmop support => enabled sockets Sockets Support => enabled sodium sodium support => enabled libsodium headers version => 1.0.18 libsodium library version => 1.0.18 SPL SPL support => enabled Interfaces => OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject Classes => AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException standard Dynamic Library Support => enabled Path to sendmail => /usr/sbin/sendmail -t -i Directive => Local Value => Master Value assert.active => 1 => 1 assert.bail => 0 => 0 assert.callback => no value => no value assert.exception => 0 => 0 assert.quiet_eval => 0 => 0 assert.warning => 1 => 1 auto_detect_line_endings => 0 => 0 default_socket_timeout => 60 => 60 from => no value => no value session.trans_sid_hosts => no value => no value session.trans_sid_tags => a=href,area=href,frame=src,form= => a=href,area=href,frame=src,form= unserialize_max_depth => 4096 => 4096 url_rewriter.hosts => no value => no value url_rewriter.tags => form= => form= user_agent => no value => no value sysvmsg sysvmsg support => enabled sysvsem sysvsem support => enabled sysvshm sysvshm support => enabled tokenizer Tokenizer Support => enabled Zend OPcache Opcode Caching => Disabled Optimization => Disabled SHM Cache => Enabled File Cache => Disabled Startup Failed => Opcode Caching is disabled for CLI Directive => Local Value => Master Value opcache.blacklist_filename => no value => no value opcache.consistency_checks => 0 => 0 opcache.dups_fix => Off => Off opcache.enable => On => On opcache.enable_cli => Off => Off opcache.enable_file_override => Off => Off opcache.error_log => no value => no value opcache.file_cache => no value => no value opcache.file_cache_consistency_checks => 1 => 1 opcache.file_cache_only => 0 => 0 opcache.file_update_protection => 2 => 2 opcache.force_restart_timeout => 180 => 180 opcache.huge_code_pages => Off => Off opcache.interned_strings_buffer => 8 => 8 opcache.lockfile_path => /tmp => /tmp opcache.log_verbosity_level => 1 => 1 opcache.max_accelerated_files => 10000 => 10000 opcache.max_file_size => 0 => 0 opcache.max_wasted_percentage => 5 => 5 opcache.memory_consumption => 128 => 128 opcache.opt_debug_level => 0 => 0 opcache.optimization_level => 0x7FFEBFFF => 0x7FFEBFFF opcache.preferred_memory_model => no value => no value opcache.preload => no value => no value opcache.preload_user => no value => no value opcache.protect_memory => 0 => 0 opcache.restrict_api => no value => no value opcache.revalidate_freq => 2 => 2 opcache.revalidate_path => Off => Off opcache.save_comments => 1 => 1 opcache.use_cwd => On => On opcache.validate_permission => Off => Off opcache.validate_root => Off => Off opcache.validate_timestamps => On => On zlib ZLib Support => enabled Stream Wrapper => compress.zlib:// Stream Filter => zlib.inflate, zlib.deflate Compiled Version => 1.2.11 Linked Version => 1.2.11 Directive => Local Value => Master Value zlib.output_compression => Off => Off zlib.output_compression_level => -1 => -1 zlib.output_handler => no value => no value Additional Modules Module Name Environment Variable => Value SHELL => /bin/bash PWD => /home/ubuntu LOGNAME => ubuntu XDG_SESSION_TYPE => tty MOTD_SHOWN => pam HOME => /home/ubuntu LANG => C.UTF-8 LS_COLORS => rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36: SSH_CONNECTION => 218.223.94.246 40126 10.0.0.3 22 LESSCLOSE => /usr/bin/lesspipe %s %s XDG_SESSION_CLASS => user TERM => xterm-256color LESSOPEN => | /usr/bin/lesspipe %s USER => ubuntu SHLVL => 1 XDG_SESSION_ID => 2 XDG_RUNTIME_DIR => /run/user/1001 SSH_CLIENT => 218.223.94.246 40126 22 XDG_DATA_DIRS => /usr/local/share:/usr/share:/var/lib/snapd/desktop PATH => /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin DBUS_SESSION_BUS_ADDRESS => unix:path=/run/user/1001/bus SSH_TTY => /dev/pts/0 _ => /usr/bin/php PHP Variables Variable => Value $_SERVER['SHELL'] => /bin/bash $_SERVER['PWD'] => /home/ubuntu $_SERVER['LOGNAME'] => ubuntu $_SERVER['XDG_SESSION_TYPE'] => tty $_SERVER['MOTD_SHOWN'] => pam $_SERVER['HOME'] => /home/ubuntu $_SERVER['LANG'] => C.UTF-8 $_SERVER['LS_COLORS'] => rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:$_SERVER['SSH_CONNECTION'] => 218.223.94.246 40126 10.0.0.3 22 $_SERVER['LESSCLOSE'] => /usr/bin/lesspipe %s %s $_SERVER['XDG_SESSION_CLASS'] => user $_SERVER['TERM'] => xterm-256color $_SERVER['LESSOPEN'] => | /usr/bin/lesspipe %s $_SERVER['USER'] => ubuntu $_SERVER['SHLVL'] => 1 $_SERVER['XDG_SESSION_ID'] => 2 $_SERVER['XDG_RUNTIME_DIR'] => /run/user/1001 $_SERVER['SSH_CLIENT'] => 218.223.94.246 40126 22 $_SERVER['XDG_DATA_DIRS'] => /usr/local/share:/usr/share:/var/lib/snapd/desktop $_SERVER['PATH'] => /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin $_SERVER['DBUS_SESSION_BUS_ADDRESS'] => unix:path=/run/user/1001/bus $_SERVER['SSH_TTY'] => /dev/pts/0 $_SERVER['_'] => /usr/bin/php $_SERVER['PHP_SELF'] => $_SERVER['SCRIPT_NAME'] => $_SERVER['SCRIPT_FILENAME'] => $_SERVER['PATH_TRANSLATED'] => $_SERVER['DOCUMENT_ROOT'] => $_SERVER['REQUEST_TIME_FLOAT'] => 1611479564.0286 $_SERVER['REQUEST_TIME'] => 1611479564 $_SERVER['argv'] => Array ( ) $_SERVER['argc'] => 0 PHP License This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net. ```
DaisukeDaisuke commented 3 years ago

遅れて申し訳ないです...

特定関数不足している事に関しましては、原因の可能性に関しましては、存在致します... pmmp公式サイトより、pmmp向けphpバイナリをダウンロード、解凍、設定します。

# cd [start.sh存在致します、フォルダ]
cd /home/ubuntu/pmmp/
wget https://jenkins.pmmp.io/job/PHP-7.4-Aggregate/lastSuccessfulBuild/artifact/PHP-7.4-Linux-x86_64.tar.gz
(wget https://bit.ly/2MkioFO)
tar -zxvf PHP-7.4-Linux-x86_64.tar.gz
nano  /home/ubuntu/pmmp/bin/php7/bin/php.ini
openssl.cafile='/home/ubuntu/pmmp/cacert.pem'
curl.cainfo='/home/ubuntu/pmmp/cacert.pem'
「Ctrl」→ 「o」(マルではない)→「改行(エンター)」
「Ctrl」→ 「x」(バツではない)→「改行(エンター)」
./start.sh
(sh ./start.sh)
NekoFuwa1739 commented 3 years ago

./start.shが実行できませんでした… Screenshot_20210124-195915_Termius

DaisukeDaisuke commented 3 years ago

php.ini ファイル「1行目」付近の=付近の構文は誤りは存在致します、模様にてございます。

原因不明な場合、以下のコマンドを実行、スクリーンショットをこのissueへ投稿してただけませんでしょうか...? (いずれかのコマンド結果のスクリーンショットをお願いします...(本当に申し訳ないです...))

cat /home/ubuntu/pmmp/bin/php7/bin/php.ini
cd /home/ubuntu/pmmp/
cat ./bin/php7/bin/php.ini
nano  /home/ubuntu/pmmp/bin/php7/bin/php.ini
NekoFuwa1739 commented 3 years ago

Screenshot_20210124-202623_Termius これです…すみません…

DaisukeDaisuke commented 3 years ago

php,iniに関しましては、改行必須にてございます... 本当に申し訳ないです...

memory_limit=1024M dete.timezone=UTC short_open_tag=0
memory_limit=1024M
dete.timezone=UTC
short_open_tag=0
NekoFuwa1739 commented 3 years ago

ありがとうございますm(* )m 起動出来ました…残念ながらエラー文は変わらず出てます…

DaisukeDaisuke commented 3 years ago

以下のコマンド実行致しました結果のスクリーンショットを教えていただけませんでしょうか...?

/home/ubuntu/pmmp/bin/php7/bin/php -c /home/ubuntu/pmmp/bin/php7/bin/php.ini  -r "var_dump(file_get_contents('https://www.example.com'));"

cacert.pem認識していない場合...

Warning: file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages:
error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in Command line code on line 1

Warning: file_get_contents(): Failed to enable crypto in Command line code on line 1

Warning: file_get_contents(https://www.example.com): failed to open stream: operation failed in Command line code on line 1
bool(false)

/etc/resolv.conf 不正...(正常な状態にて、「resolv.conf」ファイルを操作致しました場合、「インターネット接続出来なくなる」為、注意)

Warning: file_get_contents(): php_network_getaddresses: gethostbyname failed. errno=2 in Command line code on line 1

Warning: file_get_contents(https://www.example.com): failed to open stream: php_network_getaddresses: gethostbyname failed. errno=2 in Command line code on line 1
bool(false)
正常な場合の出力 ``` var_dump(file_get_contents('https://www.example.com'));" ``` ``` string(1256) " Example Domain

Example Domain

This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.

More information...

" ```

システム時間の相違によるエラー(可能性...)

https://www.yokoweb.net/2018/05/14/ubuntu-18_04-timesyncd/

https://www.google.com/search?q=ubuntu+時間+同期

NekoFuwa1739 commented 3 years ago

遅れてすみません…スクリーンショットでございます… 役に立つかわかりませんが、りーさんが紹介されていた 物を使っています… https://qiita.com/ree-jp/items/4f3e906a09d7576fb786 Screenshot_20210125-155156_Termius

DaisukeDaisuke commented 3 years ago

Websocket接続に関しましては、少しややこしいとの事です.... websocket+docker https://www.google.com/search?q=websocket+docker

DockerでnginxでwebSocket https://qiita.com/tomipetit/items/718e12443fd3715519cf

//=========== Docker compose ことはじめハンズオン https://qiita.com/TsutomuNakamura/items/7e90e5efb36601c5bc8a

Docker compose インストール => 設定ファイル構築(記述) => 実行 流れの模様にてございます。

検証中...


証明書を使ったリポジトリクライアントの確認 https://matsuand.github.io/docs.docker.jp.onthefly/engine/security/certificates/

Docker デーモンソケットの保護 https://matsuand.github.io/docs.docker.jp.onthefly/engine/security/https/

(...?)

/etc/docker/certs.d/***.crt

https://www.ogis-ri.co.jp/otc/hiroba/technical/docker/part6.html 参考サイト曰、以下のオプションにて、証明書ファイルを指定致しますと、良いとの事です...

--tlsverify
--tlscacert="C:\\Users\\Taro\\.docker\\machine\\machines\\myhost\\ca.pem"
--tlscert="C:\\Users\\Taro\\.docker\\machine\\machines\\myhost\\cert.pem"
--tlskey="C:\\Users\\Taro\\.docker\\machine\\machines\\myhost\\key.pem"
-H=tcp://192.168.99.100:2376 ## tcp/udp使用ボート不明...
NekoFuwa1739 commented 3 years ago

自分では理解が追いつかないですね()…

NekoFuwa1739 commented 3 years ago

本当にご丁寧にありがとうございます…感謝します!