Linux下查看nginxmysqlphp的安装路径和编译参数

Posted 歉信君 —— 信真科技·信守真品 www.xinzhenkj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下查看nginxmysqlphp的安装路径和编译参数相关的知识,希望对你有一定的参考价值。

一:查看安装路径:

 

 1、nginx安装路径:

ps  -ef | grep nginx  

摁回车,将出现如下图片:

技术分享

master process 后面的就是 nginx的目录。

 

2、mysql安装路径: 

 

ps -ef|grep mysql 得出结果

  1. root     17659     1  0  2011 ?        00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid   

  2. mysql    17719 17659  0  2011 ?        03:14:57 /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking --socket=/var/lib/mysql/mysql.sock  

usr/bin/mysql 是指:mysql的运行路径 
var/lib/mysql 是指:mysql数据库文件的存放路径 
usr/lib/mysql 是指:mysql的安装路径

 

3、php安装路径:

 

#whereis php

#which php

#php -v   查看版本号

差异自己去体会



 

二:查看编译参数:

1、nginx编译参数: 

your_nginx_dir/sbin/nginx -v 

2、apache编译参数: 
cat your_apache_dir/build/config.nice 

3、php编译参数: 
your_php_dir/bin/php -i |grep configure 

4、mysql编译参数: 
cat your_mysql_dir/bin/mysqlbug |grep configure 














以上是关于Linux下查看nginxmysqlphp的安装路径和编译参数的主要内容,如果未能解决你的问题,请参考以下文章

nginxMySQLPHP安装总结篇

小白搭建WNMP详细教程---NGINXMYSQLPHP的整合配置

[ Linux 长征路第四篇 ] 开发工具 vim的使用 gcc/g++的使用

Linux中详细搭建Lnmp架构

安装nginx并进行配置(记录来源于马哥linux运维教程一)

LNMP安装详情