mongodbにphpから接続できるか確認する簡易スクリプト mongodb
<pre class= brush:php >// DB接続
$manager = new MongoDB¥Driver¥Manager( mongodb://localhost:27017 );
// Insert
$bulk = new MongoDB¥Driver¥BulkWrite;

phpをバージョン7にあげて、mongodb動かそうとしたらエラーになった対処法 mongoDBのPHPドライバうまくはいらんかった mongodb
phpをバージョン7にあげて、mongodb動かそうとしたらエラーになった対処法
MongoDBのPHPドライバうまくはいらんかった
リポジトリの追加
# yum install epel-release
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm<
curl: (35) TCP connection reset by peerのエラーでたので対応したよ! centos
はてなのマカレル(mackerel.io)をインストールしようとしたら以下のエラーが発生
curl をいれなおしたら、次は無事に実行できたよ!
# curl -fsSL https://mackerel.io/file/script/setup-all-yum-v2.sh | MACKEREL_APIKEY= ほげほげ sh
curl: (35) TCP
mongodbで group by で指定グループごとの件数を取得する mongodb
mongodbで group by で指定グループごとの件数を取得する
■sqlでかくとこれ
SELECT province COUNT(*) FROM contest GROUP BY province
■mongodbでかくとこれ
db.contest.aggregate([
{ $group
centos7 に pip3をインストールしたよ Python
■centos7 に pip3をインストール
# yum install -y epel-release
# yum install -y python36-setuptools
# easy_install-3.6 pip
■確認
# pip3 -v
■スクリプト実行しようとしたら req
nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する nginx
nginxでサブディレクトリ配下のphpソースを対象にアクセスできるよう設定する <br>
以下、xxxxx.comのドメインを取得してそのphpソースを/var/www/html/yyyyy/zzzzz配下に格納した場合の設定
<pre class= brush:php >
# more /etc/nginx/conf.d/xxxxx.conf <br
laravelでコマンドラインバッチ作成 Laravel
そのために勉強
http://www.sigesaba.com/2015/03/laravel-5-cli-app.php
https://laravel10.wordpress.com/2015/05/13/%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%83%A9%E3%82%A4%E3%83%B3%E3%82%A2%E3%83%
centos7以降でのサービス自動起動設定 centos
centos7以降でのサービス自動起動設定
・自動起動のサービス一覧表示
systemctl list-unit-files -t service
・自動起動設定
systemctl stop nginx.service
systemctl start nginx.service
systemctl enable
nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成 nginx
nginxで、1サーバに複数のサイトを設置する場合の設定ファイルを作成
各サーバごとに設定ファイルを作成して以下のようにセット。
# more /etc/nginx/conf.d/xxxxx.conf
<pre class= brush:php >
server {
listen 80;
server_