In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/03 Report--
回顾下安装软件的三种方式:
1、编译安装软件,优点是可以定制化安装目录、按需开启功能等,缺点是需要查找并实验出适合的编译参数,诸如MySQL之类的软件编译耗时过长。
2、yum安装软件,优点是全自动化安装,不需要为依赖问题发愁了,缺点是自主性太差,软件的功能、存放位置都已经固定好了,不易变更。
===>如果你现在还为是使用编译安装软件还是使用yum安装软件发愁,那你就out了。 3、编译源码,根据自己的需求做成定制RPM包->搭建内网yum仓库-yum安装。结合前两者的优点,暂未发现什么缺点。可能的缺点就是RPM包的通用性差,只能适用于本公司的环境。另外一般人不会定制RPM包。这是中大型互联网企业运维自动化的必要技能。
这里也不介绍rpm的概念,想了解的朋友可以查看http://www.ibm.com/developerworks/cn/linux/l-rpm/。
这里也不介绍rpmbuild这个打包工具了,想了解的朋友自行谷歌百度。但我不建议大家花太多的时间去学习这个命令,比较晦涩,而且我会在下面介绍更简单的命令。
FPM打包工具
FPM的作者是jordansissel
FPM的github:https://github.com/jordansissel/fpm
FPM功能简单说就是将一种类型的包转换成另一种类型。
1. 支持的源类型包dir 将目录打包成所需要的类型,可以用于源码编译安装的软件包rpm 对rpm进行转换gem 对rubygem包进行转换python 将python模块打包成相应的类型2. 支持的目标类型包rpm 转换为rpm包deb 转换为deb包solaris 转换为solaris包puppet 转换为puppet模块3. FPM安装fpm是ruby写的,因此系统环境需要ruby,且ruby版本号大于1.8.5。# 安装ruby模块 yum -y install ruby rubygems ruby-devel rpm-build# 查看当前使用的rubygems仓库 gem sources list# 添加淘宝的Rubygems仓库,外国的源慢,移除原生的Ruby仓库gem sources --add https://ruby.taobao.org/ --remove http://rubygems.org/# 安装fpm,gem从rubygem仓库安装软件类似yum从yum仓库安装软件。首先安装低版本的json,高版本的json需要ruby2.0以上,然后安装低版本的fpm,够用。gem install json -v 1.8.3gem install fpm -v 1.3.3# 上面的2步安装仅适合CentOS6系统,CentOS7系统一步搞定,即gem install fpm4. FPM参数
详细使用见fpm -help
常用参数
-s 指定源类型-t 指定目标类型,即想要制作为什么包-n 指定包的名字-v 指定包的版本号-C 指定打包的相对路径 Change directory to here before searching forfiles-d 指定依赖于哪些包-f 第二次打包时目录下如果有同名安装包存在,则覆盖它-p 输出的安装包的目录,不想放在当前目录下就需要指定--post-install 软件包安装完成之后所要运行的脚本;同--after-install--pre-install 软件包安装完成之前所要运行的脚本;同--before-install--post-uninstall 软件包卸载完成之后所要运行的脚本;同--after-remove--pre-uninstall 软件包卸载完成之前所要运行的脚本;同--before-remove使用实例-实战定制nginx的RPM包1. 安装nginxyum -y install pcre-devel openssl-develuseradd nginx -M -s /sbin/nologintar xf nginx-1.6.2.tar.gzcd nginx-1.6.2./configure --prefix=/application/nginx-1.6.2 --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_modulemake && make installln -s /application/nginx-1.6.2/ /application/nginx2. 编写脚本[root@web ~]# cd /server/scripts/[root@web scripts]# vim nginx_rpm.sh # 这是安装完rpm包要执行的脚本 #!/bin/bash useradd nginx -M -s /sbin/nologin ln -s /application/nginx-1.6.2/ /application/nginx3. 打包[root@web ~]# fpm -s dir -t rpm -n nginx -v 1.6.2 -d 'pcre-devel,openssl-devel' --post-install /server/scripts/nginx_rpm.sh -f /application/nginx-1.6.2/ no value for epoch is set, defaulting to nil {:level=>:warn} no value for epoch is set, defaulting to nil {:level=>:warn} Created package {:path=>"nginx-1.6.2-1.x86_64.rpm"} [root@web ~]# ll -h nginx-1.6.2-1.x86_64.rpm -rw-r--r-- 1 root root 6.7M Nov 1 10:02 nginx-1.6.2-1.x86_64.rpm4. 安装rpm包
安装rpm包的三种方法:
rpm命令安装
[root@LB-nginx-01 ~]# rpm -ivh nginx-1.6.2-1.x86_64.rpm error: Failed dependencies: pcre-devel is needed by nginx-1.6.2-1.x86_64 openssl-devel is needed by nginx-1.6.2-1.x86_64 但会报如上依赖错误,需要先yum安装依赖才能安装rpm包。
yum命令安装rpm包
yum -y localinstall nginx-1.6.2-1.x86_64.rpm这个命令会自动先安装rpm包的依赖,然后再安装rpm包。
注意事项1. 相对路径问题# 相对路径[root@web nginx]# fpm -s dir -t rpm -n nginx -v 1.6.2 .no value for epoch is set, defaulting to nil {:level=>:warn}no value for epoch is set, defaulting to nil {:level=>:warn}Created package {:path=>"nginx-1.6.2-1.x86_64.rpm"}[root@web nginx]# rpm -qpl nginx-1.6.2-1.x86_64.rpm /client_body_temp/conf/extra/dynamic_pools/conf/extra/static_pools …………# 绝对路径[root@web ~]# fpm -s dir -t rpm -n nginx -v 1.6.2 /application/nginx-1.6.2/no value for epoch is set, defaulting to nil {:level=>:warn}no value for epoch is set, defaulting to nil {:level=>:warn}Created package {:path=>"nginx-1.6.2-1.x86_64.rpm"}[root@web ~]# rpm -qpl nginx-1.6.2-1.x86_64.rpm /application/nginx-1.6.2/client_web_temp/application/nginx-1.6.2/conf/extra/dynamic_pools/application/nginx-1.6.2/conf/extra/static_pools/application/nginx-1.6.2/conf/fastcgi.conf/application/nginx-1.6.2/conf/fastcgi.conf.default…………使用rpm -qpl 命令可以查看rpm包的内容。注:fpm类似tar打包一样,只是fpm打的包能够被yum命令识别而已。2. 软链接问题[root@web ~]# fpm -s dir -t rpm -n nginx -v 1.6.2 /application/nginxno value for epoch is set, defaulting to nil {:level=>:warn}File already exists, refusing to continue: nginx-1.6.2-1.x86_64.rpm {:level=>:fatal}# 报错是因为当前目录存在同名的rpm包,可以使用-f参数强制覆盖。[root@web ~]# fpm -s dir -t rpm -n nginx -v 1.6.2 -f /application/nginxno value for epoch is set, defaulting to nil {:level=>:warn}Force flag given. Overwriting package at nginx-1.6.2-1.x86_64.rpm {:level=>:warn}no value for epoch is set, defaulting to nil {:level=>:warn}Created package {:path=>"nginx-1.6.2-1.x86_64.rpm"}打包看似成功,但查看包的内容,只是这一个软链接文件。[root@web ~]# rpm -qpl nginx-1.6.2-1.x86_64.rpm /application/nginx原因:目录结尾的/问题,类似rm删除软链接目录定制LNMP的RPM包思路
编译安装好nginx,mysql,php,此处有个问题,就是php的大部分依赖环境是通过yum安装的,但有一个libiconv-1.14.tar.gz包需要编译安装,安装时已经指定了安装目录,只需一同打包即可。
还有一个问题,就是mysql这个目录比较大,用fpm打包耗时长。平时我们有可能需要对nginx或php做优化,这样又得重新打包。因此我们可以将mysql分离出来,分别打包。只需在制作nginx+php的rpm包时添加mysql的依赖即可。
# 参考命令 [root@web2 ~]# fpm -s dir -t rpm -n web2 -v 1.1 \--description 'lnmp.cms,bbs.blog' \-d 'libxslt-devel,nfs-utils,rpcbind,mysql,libmcrypt-devel,mhash,mhash-devel,mcrypt' \--post-install /server/scripts/lnmp-init.sh \/application /usr/local/libiconv/ /app/logs/ /data0/ /server/
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.