pm2 startup upstart
sudo env PATH=$PATH:/usr/bin /usr/lib/node_modules/pm2/bin/pm2 startup upstart -u vagrant --hp /home/vagrant
Да и вручную добавлять в спам не вариант, я буду только по часа два или три тратить каждый день на то что бы все эти 500 писем очистить (они же идут в перемешку с нужной мне почтой от людей, а не от спамерских ботов).
use GuzzleHttp\Pool;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
$client = new Client();
$requests = function ($total) {
$uri = 'http://127.0.0.1:8126/guzzle-server/perf';
for ($i = 0; $i < $total; $i++) {
yield new Request('GET', $uri);
}
};
$pool = new Pool($client, $requests(100), [
'concurrency' => 5,
'fulfilled' => function ($response, $index) {
// this is delivered each successful response
},
'rejected' => function ($reason, $index) {
// this is delivered each failed request
},
]);
// Initiate the transfers and create a promise
$promise = $pool->promise();
// Force the pool of requests to complete.
$promise->wait();
select id
from Table1
where
"2019-02-16" between start and final or
"2019-02-18 " between start and final
select id
from Table1
where
start <= "2019-02-18 and final >= "2019-02-16"