1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > 查看mysql apache php nginx编译参数

查看mysql apache php nginx编译参数

时间:2023-07-19 01:47:07

相关推荐

查看mysql apache php nginx编译参数

查看nginx编译参数:

#/usr/local/nginx/sbin/nginx -V 查看mysql编译参数:

cat /usr/local/mysql/bin/mysqlbug | grep CONFIGURE_LINE

查看apache编译参数:

cat $apachehome$/build/config.nice

查看php编译参数:

$PHP$/bin/php -i | grep configure

1)查看web服务的编译参数

a.查看nginx的编译参数:

/home/oldboy/run/nginx/sbin/nginx -V

范例1:

[root@VM-001~]#/home/oldboy/run/nginx/sbin/nginx-Vnginxversion:nginx/0.8.50 builtbygcc4.1.20704(RedHat4.1.2-48) configurearguments:--prefix=/app/nginx

提示:/home/oldboy/run/为普通用户起的nginx服务命令路径

b.查看apache的编译参数:

cat /home/oldboy/run/apache/build/config.nice

范例2:

[root@VM-002~]#cat/home/oldboy/run/apache/build/config.nice#!/bin/sh # #Createdbyconfigure "./configure"\ "--prefix=/app/apache2.2.9"\ "--enable-deflate"\ "--enable-headers"\ "--enable-modules=so"\ "--enable-so"\ "--with-mpm=worker"\ "--enable-rewrite"\ "--enable-cgi"\ "$@"

提示:/home/oldboy/run/为普通用户起的apache服务命令路径

2)查看MySQL数据库的编译参数:

grep CONFIGURE_LINE /app/mysql/bin/mysqlbug

提示:还发现很多人先cat,在grep,很不专业,应杜绝。

范例3:

[root@VM-001~]#grepCONFIGURE_LINE/app/mysql/bin/mysqlbugCONFIGURE_LINE="./configure'--prefix=/app/mysql/''--enable-assembler''--with-extra-charsets=complex''--enable-thread-safe-client''--with-big-tables''--with-readline''--with-ssl''--with-embedded-server''--enable-local-infile''--with-plugins=partition,innobase''--with-plugin-PLUGIN'"`test-n"$CONFIGURE_LINE"&&echo"Configurecommand:$CONFIGURE_LINE"`

提示:/app为mysql服务安装路径

3)查看php编译参数:

/app/php/bin/php -i|grep configure

范例4:

[root@VM-001~]#/app/php/bin/php-i|grepconfigureConfigureCommand=>'./configure''--prefix=/app/php''--with-apxs2=/app/apache/bin/apxs''--with-mysql=shared,/app/mysql''--with-ttf=shared''--with-freetype-dir''--with-gd''--with-zlib''--with-jpeg-dir''--with-png-dir''--with-iconv=/app/libiconv''--enable-short-tags''--enable-sockets''--enable-zend-multibyte''--enable-soap''--with-openssl''--enable-mbstring''--enable-static''--enable-gd-native-ttf''--with-curl''--with-xsl''--enable-ftp''--with-libxml-dir'

提示:/app为php服务安装路径

本文来源http://ohgenlong16300./499130/846075

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。