Displaying 20 results from an estimated 234 matches for "fpm".
Did you mean:
apm
2020 Apr 30
2
systemctl restart changes permission.
Hi,
I am running CentOS Linux release 7.8.2003 (Core)
with php72u-fpm-7.2.30-1.el7.ius.x86_64 version. I am facing the below
permission denied issue. I also did the below steps
#cd /run
#chown -Rc nginx.nginx php-fpm
changed ownership of ?php-fpm/php-fpm.pid? from root:root to nginx:nginx
changed ownership of ?php-fpm? from root:root to nginx:nginx
#systemctl restart...
2020 Apr 04
2
Running opt O1 outside of llvm
...y method
is also vectorising the code, which doesn't happen when running the same
sequence(-S -O1 -reg2mem) through opt. Can someone please help me find what
I am missing?
Thanks,
Akash.
* PassManagerBuilder PM; PM.OptLevel = 1; PM.SizeLevel = 0;
legacy::FunctionPassManager FPM(&llvm_module); legacy::PassManager MPM;
PM.Inliner = createAlwaysInlinerLegacyPass(); PM.DisableUnrollLoops = true;
PM.populateFunctionPassManager(FPM); PM.populateModulePassManager(MPM);
FPM.doInitialization(); for (auto &F : llvm_module) FPM.run(F);
FPM.doFinalization(); MPM.run(llvm_m...
2008 Dec 19
2
[LLVMdev] strange behaviour after extracting optimization pass code
...ion for
better readability. The original code looks like follows (and works as
expected):
-----------------------------
std::string functionName = "main";
llvm::Module* mod = some arbitrary valid modulepointer;
llvm::ExistingModuleProvider mp(mod);
llvm::FunctionPassManager fpm(&mp);
fpm.add(new llvm::TargetData(mod));
fpm.add(llvm::createInstructionCombiningPass());
fpm.add(llvm::createReassociatePass());
fpm.add(llvm::createGVNPass());
fpm.add(llvm::createCFGSimplificationPass());
fpm.run(*f);
//...get execution engine
//... call execEngine-...
2019 Apr 24
4
Systemd, PHP-FPM, and /cgi-bin scripts
CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache 2.4,
php-fpm, all updated.
I have a web-based app I've been developing for some time, and recently the
need to upload files of large size EG 1 GB or larger, has come up.
So I wrote a /cgi-bin script that works, takes the input, and even runs the
same application framework as the main application which...
2018 Jul 26
2
Is decoupling Apache + PHP into separate nodes possible?
...) + MySQL (node2) with Security
Groups (AWS) or iptables controlling who can connect to the MySQL
server. In topology terms -- a 2 Tier architecture. In AWS - one
can deploy several such instances behind a ELB. Each LAP instance
talks to a MySQL RDS. The LAP instances are either mod_php or
PHP-FPM. OS -- CentOS, Ubuntu. Debian
</preamble>
For one of my client's end user customer, their InfoSec team is asking
if Apache and the PHP application can run in separate nodes (3 Tier
arch).
To the best of my knowledge Apache + PHP (mod_php) have to be in the same node.
With PHP-FPM it i...
2017 Aug 08
1
Troubleshooting php-fpm with apache on Centos 7
...webs/wwwgreekgeo/log/php*
-rw-rw---- 1 root apache 0 Aug 7 22:58
/var/webs/wwwgreekgeo/log/php_error_log
# ls -l /var/webs/wwwgreekgeo/
total 8
drwxrwx--- 2 wftpuser apache 4096 Aug 8 03:46 log
drwxrwx--- 10 wftpuser apache 4096 Dec 5 2014 www
For your reference, I am also including the php-fpm configuration:
# cat /etc/php-fpm.d/www.conf
include=/etc/php-fpm.d/*.conf
[global]
pid = /run/php-fpm/php-fpm.pid
error_log = /var/log/php-fpm/error.log
log_level = debug
daemonize = yes
[www]
user = apache
group = apache
listen = 127.0.0.1:9000...
2013 Jan 29
0
[LLVMdev] Running a Local Buildbot
Hello
We are migrating from 2.9 to 3.2
Here is some code that does not compile any more
llvm::PassManager *pm;
llvm::FunctionPassManager *fpm;
module = llvm::ParseBitcodeFile(mb,context,&err_str);
if (!module) {
error() <<"Failed to load module from bitcode file: " <<err_str
<<endl;
exit(1);
}
pm = new PassManager();
pm->add(createAlwaysInlinerPass());
fpm...
2017 Aug 08
2
Troubleshooting php-fpm with apache on Centos 7
Hello,
I am running httpd-2.4.6-45.el7.centos.x86_64 with
php-fpm-7.0.22-1.el7.remi.x86_64 (on CentOS 7).
My main problem: On this httpd server I have several vhosts running, but
apparently I am facing intermittent problems with php-fpm communication
on only one of them.
Most of the sites are WordPress or Joomla Applications (running with
mysql). Everything...
2008 Dec 19
1
[LLVMdev] strange behaviour after extracting optimization pass code
...for
better readability. The original code looks like follows (and works as
expected):
-----------------------------
std::string functionName = "main";
llvm::Module* mod = some arbitrary valid modulepointer;
llvm::ExistingModuleProvider mp(mod);
llvm::FunctionPassManager fpm(&mp);
fpm.add(new llvm::TargetData(mod));
fpm.add(llvm::createInstructionCombiningPass());
fpm.add(llvm::createReassociatePass());
fpm.add(llvm::createGVNPass());
fpm.add(llvm::createCFGSimplificationPass());
fpm.run(*f);
//...get execution engine
//... call exe...
2015 Mar 24
2
error building php spec file
Hey all,
I'm attempting to build a spec file of php 5.6.7 - the latest stable -
into an rpm. And it's failing with this set of errors:
Processing files: php-5.6.7-1.el7.x86_64
warning: File listed twice: /etc/rc.d/init.d/php-fpm
error: Symlink points to BuildRoot: /usr/bin/phar ->
/home/bluethundr/rpmbuild/BUILDROOT/php-5.6.7-1.el7.x86_64/usr/bin/phar.phar
warning: File listed twice: /usr/share/man/man1/php-cgi.1.gz
warning: File listed twice: /usr/share/man/man1/php-config.1.gz
warning: File listed twice: /usr/share/ma...
2008 Dec 19
0
[LLVMdev] strange behaviour after extracting optimization pass code
...out of scope before you're done with the Module.
— Gordon
> -----------------------------
> std::string functionName = "main";
> llvm::Module* mod = some arbitrary valid modulepointer;
{
>
> llvm::ExistingModuleProvider mp(mod);
> llvm::FunctionPassManager fpm(&mp);
> fpm.add(new llvm::TargetData(mod));
> fpm.add(llvm::createInstructionCombiningPass());
> fpm.add(llvm::createReassociatePass());
> fpm.add(llvm::createGVNPass());
> fpm.add(llvm::createCFGSimplificationPass());
> fpm.run(*f);
}
> //...get execution eng...
2015 Dec 20
3
How to run InternalizePass
...ss to do the job.
It seems that InternalizePass is, again understandably, not enabled by
default even when you select optimization level 3. How do you turn it on? I
tried setting PrepareForLTO but that doesn't seem to do anything. Here's
what I have so far:
legacy::FunctionPassManager FPM(&M);
legacy::PassManager MPM;
PassManagerBuilder Builder;
Builder.OptLevel = 3;
Builder.PrepareForLTO = true;
Builder.VerifyInput = true;
Builder.VerifyOutput = true;
Builder.populateFunctionPassManager(FPM);
Builder.populateModulePassManager(MPM);
FPM.doIn...
2012 Feb 14
7
inherits from parametrized class
Hello
In is possible inherits from parametrized class??
For example i have base php52 class like this:
class linux::php52($pools, $extensions='''') inherits linux
{
......
}
and whants to inherit it like this:
class linux::php52::cluster inherits linux::php52
for cluster configuration (cluster stuff -f for example prevent php from
automatic startup), and
class
2018 Mar 09
0
Memory Leak with PHP
...stem, selection is made via .htaccess).
CenOS 6.9 on a Xeon 8 cores with now 64 GB RAM.
This is a snip of a top this morning, just 2 days after the latest reboot:
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
31163 apache 20 0 939m 690m 8876 S 51.5 1.1 102:16.90 php-fpm
29603 apache 20 0 1208m 961m 10m S 33.7 1.5 136:54.95 php-fpm
11858 apache 20 0 1660m 1.4g 9564 R 31.3 2.2 190:41.25 php-fpm
31207 apache 20 0 916m 668m 9636 R 18.1 1.0 101:38.72 php-fpm
31218 apache 20 0 930m 682m 9264 S 16.8 1.1 101:55.51 php-fpm
2873 apache 20...
2019 Apr 24
0
Systemd, PHP-FPM, and /cgi-bin scripts
On Tue, Apr 23, 2019 at 11:37:51PM -0700, Benjamin Smith wrote:
> But... php-fpm has its own "tmp" directory, something like /tmp/systemd-
> private-RANDOM-php-fpm.service-RANDOM/tmp that the cgi-bin has no access to.
> To be able to populate $_FILES in a way compatible with the rest of the
> framework, it appears that I need to be able to run the /cgi-bin...
2019 Apr 24
0
Systemd, PHP-FPM, and /cgi-bin scripts
> Am 24.04.2019 um 08:37 schrieb Benjamin Smith <lists at benjamindsmith.com>:
>
> CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache 2.4,
> php-fpm, all updated.
>
> I have a web-based app I've been developing for some time, and recently the
> need to upload files of large size EG 1 GB or larger, has come up.
>
> So I wrote a /cgi-bin script that works, takes the input, and even runs the
> same application framework...
2019 Apr 24
2
Systemd, PHP-FPM, and /cgi-bin scripts
On Wednesday, April 24, 2019 3:44:04 AM PDT Leon Fauster via CentOS wrote:
> > Am 24.04.2019 um 08:37 schrieb Benjamin Smith <lists at benjamindsmith.com>:
> >
> > CentOS 7 server and Fedora 29 dev workstation, both with PHP 7.2, Apache
> > 2.4, php-fpm, all updated.
> >
> > I have a web-based app I've been developing for some time, and recently
> > the
> > need to upload files of large size EG 1 GB or larger, has come up.
> >
> > So I wrote a /cgi-bin script that works, takes the input, and even runs
>...
2010 Oct 22
3
Licensing of Default MOH
Hi,
I wonder if I may freely use the default soundfiles that came with asterisk
(fpm-world-mix, fpm-calm-river and fpm-sunshine) on production server?
Are there any official sources of royalty free music?
--
Mvh,
Aurimas Skirgaila
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20101022/...
2006 Mar 21
6
Native MOH - Convert mp3 to ulaw
I'd like to use native moh instead of with mpg123... for some reason the processes never bloody die.
For native moh to not spawn an external player, I'd need to convert the default supplied moh sound files in /var/lib/asterisk/mohmp3 to ulaw and g729 format. Anyone know of a free, easy way to convert them?
Thanks,
Doug.
2015 Sep 09
0
Nginx with php-fpm is not work
Hi, everybody,
This is a new system environment.
I was using YUM to install Nginx and php-fpm, every time I try to access the
page, php-fpm will be crash. Php-fpm error log as below, please help me fix
it. Thanks.
PHP-fpm log:
[09-Sep-2015 12:25:25] NOTICE: Terminating ...
[09-Sep-2015 12:25:25] NOTICE: exiting, bye-bye!
[09-Sep-2015 12:25:26] NOTICE: fpm is running, pid 20339
[09-S...