在linux环境下通过源代码编译安装应用程序,一般安装程序在安装时都应该有安装日志,因此安装参数一般在安装日志中可以查到,
以mysql编译安装为例:
mysql 在configure ,make ,make install 以后,会生成一个文件config.log
mysql在编译时的./configure --prefix=… --with-…
参数在config.log文件中就可以查到。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| $ ./configure —prefix=/usr/local/mysql \ --localstatedir=/usr/local/mysql/data \ --with-mysqld-user=mysql \ --with-unix-socket-path=/var/lib/mysql/mysql.sock \ --enable-assembler \ --with-client-ldflags=-all-static \ --with-mysqld-ldflags=-all-static \ --with-readline \ --without-debug \ --without-docs \ --without-bench \ --enable-thread-safe-client \ --with-extra-charsets=complex \ --with-innodb —with-charset=utf8
|
其他程序情况应该是相同的~
全文完。