yum 升级CentOS 6.5内核到 3.10
CentOS , Linux / 2016年7月15日

使用yum快速升级CentOS 6.5内核到 3.10.28 在yum的ELRepo源中,有mainline(3.13.1)、long-term(3.10.28)这2个内核版本,考虑到long-term更稳定,会长期更新,所以选择这个版本。 1、导入public key rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org 2、安装E...

phpMyAdmin 非yum安装配置以及多端口
CentOS , Linux , PHP / 2016年7月12日

配置phpMyAdmin的站点 多端口牵扯到 mysql 多实例 进入该站点的根目录 下载 phpMyAdmin 的包 接下来就是修改 配置文件 vim config.inc.php 未修改时 $i++; /* Authentication type */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; /* Server parameters */ $c...

LDAP 安裝介紹 - CentOS 6.4 - openldap
CentOS , Linux / 2016年7月8日

安装LDAP 的步骤: 执行安装命令 产生 ldap 管理者的密码 複製样本档 设定主要设定档 slapd.conf 修改 rsyslog 增加 LDAP 记录 建立 LDAP 根路径档 启动 slapd 设定开机自动执行 slapd   ★Step 1☆ 执行安装命令 sudo yum install -y openldap-devel openldap-servers openlda...

Zabbix 监控apache server-status CentOS 6
CentOS , Zabbix / 2016年6月27日

首先打开apache的server-status (一般此功能是关闭的): 这里是yum 安装的,编译安装的在自定义目录中找到 httpd.conf vim /etc/httpd/conf/httpd.conf #<location /server-status> #   SetHandler server-status #    Order Allow,Deny #   Allow ...

用exclude参数(禁止)排除指定软件包被yum升级
CentOS , Linux / 2016年6月16日

如何排除(防止)yum在升级过程中,将一些本不应该升级的旧版本的软件包升级到最新版本呢?用exclude参数(禁止)排除指定软件包被yum升级的 方法如下,适用于CentOs / RHEL /Fedora /Red Hat Enterprise 等linux版本。 打开/etc/yum.conf ,输入: # vi /etc/yum.conf 在[main]段中,下添加一行,如下: exclude...

centos6.x硬件信息统计脚本
CentOS , Linux / 2016年6月1日

因为要统计一批机器的硬件信息,网上临时搜索了一个脚本,记录下来,以后备用。 #!/bin/bash   Line='==========='   #linux发行版名称 if [[ -f /usr/bin/lsb_release ]]; then OS=$(/usr/bin/lsb_release -a |grep Description |awk -F : '{print $...

CentOS Gerrit 安装
CentOS , Linux / 2016年5月26日

Gerrit安装: 下载安装包,访问http://code.google.com/p/gerrit,本文下载的是gerrit-2.4.war 创建数据库 (本文以MySQL为例) # mysql -u root -p mysql> CREATE USER 'gerrit2'@'localhost' IDENTIFIED BY 'gerrit2'; mysql> CREATE DATAB...