linux下查看nginx.apache.mysql.php的编译参数

下文我们一起来看一个linux下查看nginx、apache、mysql、php的编译参数例子,希望此例子对各位有帮助。

查看nginx、apache、mysql、php参数我们可以用到

/App/nginx/sbin/nginx -V 查看nginx参数

# cat config.nice 查看apache参数

#cat “/usr/local/mysql/bin/mysqlbug”|grep configure 查看mysql参数

/usr/local/php/bin/php -i |grep configure 查看php参数

1、查看nginx参数

[root@361way ~]# /App/nginx/sbin/nginx -V

nginx: nginx version: nginx/1.2.6

nginx: TLS SNI support disabled

nginx: configure arguments: --prefix=/App/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module

2、查看apache参数

[root@361way build]# cat config.nice

#! /bin/sh

#

# Created by configure

"./configure"

"--prefix=/usr/local/httpd"

"--with-apr=/usr/local/apr"

"--with-apr-util=/usr/local/apr-util"

"--with-pcre"

"--with-mpm=event"

"--enable-rewrite"

"--enable-proxy"

"--with-z"

"--enable-so"

"$@"

3、 查看mysql参数

[root@361way build]#cat “/usr/local/mysql/bin/mysqlbug”|grep configure

# This is set by configure

CONFIGURE_LINE=”./configure ‘--prefix=/usr/local/mysql’ ‘--localstatedir=/var/lib/mysql’ ‘--with-comment=Source’ ‘--with-server-suffix=-H863′ ‘--with-mysqld-user=mysql’ ‘--without-debug’ ‘--with-big-tables’ ‘--with-charset=gbk’ ‘--with-collation=gbk_chinese_ci’ ‘--with-extra-charsets=all’ ‘--with-pthread’ ‘--enable-static’ ‘--enable-thread-safe-client’ ‘--with-client-ldflags=-all-static’ ‘--with-mysqld-ldflags=-all-static’ ‘--enable-assembler’ ‘--without-isam’ ‘--without-innodb’ ‘--without-ndb-debug’”

4、查看php参数

/usr/local/php/bin/php -i |grep configure

Configure Command => ‘./configure’ ‘--prefix=/usr/local/php’ ‘--with-apxs2=/usr/local/apache2/bin/apxs’ ‘--with-config-file-path=/usr/local/php/etc’ ‘--with-mysql=/usr/local/mysql’ ‘--with-libxml-dir=/usr/local/libxml2/bin’ ‘--with-gd=/usr/local/gd2′ ‘--with-jpeg-dir’ ‘--with-png-dir’ ‘--with-bz2′ ‘--with-xmlrpc’ ‘--with-freetype-dir’ ‘--with-zlib-dir’

(0)

相关推荐

  • linux下查看文件编码格式以及转换格式教程

    我们大家都知道文件有不同的编码格式,本篇我们就详细介绍下如何在linux下查看文件编码格式,以及如何转换文件的编码格式,转换编码格式使用iconv命令.具体教程如下图所示. 操作方法 01 首先我们打 ...

  • linux如何查看nginx是否启动

    Nginx是一个高性能的反向代理服务器,现在一般作为我们网站或其他Web服务的第一层代理,用户在浏览器请求首先经过的就是Nginx服务. 如果Nginx服务没有启动或异常结束,将会影响Web服务的正常 ...

  • windows和linux下查看80端口号占用(被哪个进程占用?如何终止)

    windows和linux下查看80端口号占用(被哪个进程占用?如何终止)

  • ubuntu linux 下使用Qt连接MySQL数据库

    环境说明: ubuntu 10.04.2 QtSDK (1.5G安装包的那个) mysql5.1 1.安装MySQL Linux下完整的MySQL开发需要安装服务器端,如果安装客户端也没什么不好。直接 ...

  • linux下远程重启apache的方法

    打开后输入服务器用户名密码登陆。 接着输入命令:/etc/rc.d/init.d/httpd restart OK,就这么简单~~ LINUX下重启httpd服务,以及APACHE服务的方法 复制代码 ...

  • Linux下查看系统防火墙

    简单说下Linux下,查看防火墙状态,以及如何关闭开启防火墙 操作方法 01 使用工具,链接Linux系统,截图以putty连接工具为例 02 输入用户名,和密码,连接到服务器 03 连接服务器后,输 ...

  • Red Hat Enterprise Linux AS release 4 apache+MYsql+PHP的安装和优化

    软件版本:httpd-2.2.3.tar.gz mysql-5.0.18.tar.gz php-5.0.4.tar.gz 1安装mysql shell#tar xzvf mysql-5.0.15.ta ...

  • linux下查看端口命令 端口

    LINUX网络性能之管理工具三剑客 本文是介绍管理Linux系统网络性能技巧的文章,主要介绍了route、netstat、tcpdump三种网络管理测试工具的使用方法及其可实现的功能。 route 在 ...

  • Linux下查看指定文件夹和文件的大小

    df命令:查看目前所有文件系统的可用空间及使用情况 df可以查看一级文件夹大小、使用比例、档案系统及其挂入点,但对文件却无能为力 复制代码 代码如下: df -lh 参数 -h 表示使用「Human- ...