Linux
文章平均质量分 62
wayne_ren
这个作者很懒,什么都没留下…
展开
-
搭建 CentOS 6 服务器(5) - Ruby/Rails环境
[size=medium][b](1)安装Rails[/b][/size][b]1)安装需要的Package[/b][color=blue]# yum -y install gcc# yum -y install gcc-c++# yum -y install zlib zlib-devel# yum -y install readline readline-devel...原创 2013-08-21 09:25:31 · 149 阅读 · 0 评论 -
搭建 CentOS 6 服务器 - 目录
[color=red]****** CentOS 7上各软件的安装步骤可以参考DigitalOcean官网:[url=https://www.digitalocean.com/community/search?q=CentOS+7&primary_filter=newest]https://www.digitalocean.com/community/search?q=CentOS+7&pri...原创 2014-09-29 11:28:30 · 280 阅读 · 0 评论 -
搭建 CentOS 6 服务器(15) - Cacti、Nagios
[b](一)Cacti[/b]*** 需要先安装Apache + MySQL + PHP(php-snmp)(1)安装Net-SNMP# yum -y install net-snmp# cp -p /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.org# vi /etc/snmp/snmpd.conf[quote] # ...原创 2015-07-20 13:17:47 · 182 阅读 · 0 评论 -
CentOS 7 vs CentOS 6的不同
[b]升级 CentOS 6 到 CentOS 7[/b]1)备份你的系统2)安装升级工具[code="shell"]# vi /etc/yum.repos.d/upgrade.repo[upgrade]name=upgradebaseurl=http://dev.centos.org/centos/6/upg/x86_64/enabled=1gpgcheck=...原创 2015-07-20 14:36:58 · 174 阅读 · 0 评论 -
CentOS 安装 ELK
ELK(Elasticsearch, Logstash, Kibana),三个开源软件搭建的实时日志分析平台。官网:[url=https://www.elastic.co/products]https://www.elastic.co/products[/url]版本:[list][*]Elasticsearch 2.3.4 : 日志索引、存储、查询[*]Logstas...原创 2016-07-19 10:02:19 · 94 阅读 · 0 评论 -
CentOS 安装 Jenkins
[b](1)安装Jenkins[/b][code="shell"]# java -version# wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo# rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci....原创 2016-09-01 09:03:14 · 151 阅读 · 0 评论 -
CentOS 安装 Android
前提[code="shell"]# java -version# gradle -version# ant -version# yum install -y glibc.i686 libstdc++.i686 zlib.i686[/code]下载安装(android-sdk_r24.4.1-linux.tgz: 311 MB)[code="shell"]# cd /us...原创 2016-09-02 09:58:34 · 410 阅读 · 0 评论 -
CentOS 安装 KVM
KVM:Kernel-based Virtual Machine(基于内核的虚拟机)。(1)确认是否能够安装KVM[code="shell"]# grep -E 'svm|vmx' /proc/cpuinfo > /dev/null && echo OK# grep flags /proc/cpuinfo|grep lm > /dev/null && echo OK[/code]...原创 2016-09-07 15:55:11 · 98 阅读 · 0 评论 -
CentOS 安装 Nexus
前提:Java1)下载[code="shell"]# cd /usr/local/src/# wget http://www.sonatype.org/downloads/nexus-latest-bundle.tar.gz# tar -zxvf nexus-latest-bundle.tar.gz# mv /usr/local/src/nexus-2.14.1-01 /u...原创 2016-12-08 15:21:48 · 108 阅读 · 0 评论 -
搭建独立图像处理服务(Thumbor)
Thumbor是基于Python的开源的On-Demand图片处理服务,可以实现图片裁剪crop、缩放resize、翻转flip、滤镜filter,甚至是人脸识别。官网:[url=https://github.com/thumbor/thumbor]https://github.com/thumbor/thumbor[/url]目前版本: 6.3.2图像处理是系统开发中的必...2017-08-16 10:26:03 · 2104 阅读 · 0 评论 -
CentOS 安装 OpenAM
官网:[url=https://forgerock.org/openam/]https://forgerock.org/openam/[/url]注意事项:[list][*]关闭SELinux、IPv6、防火墙。[*]OpenAM需要很大的内存建议最低2 GB。[*]OpenAM内置的OpenDJ需要64K的File Descriptor。[*]OpenAM的所有处理是...原创 2017-01-23 15:59:44 · 427 阅读 · 0 评论 -
Bash简要入门
[b](一)Shell 和 Bash[/b]Bash(Bourne-Again SHell)Linux系统默认的命令解释器。[code="shell"][root@localhost ~]# file -h /bin/sh/bin/sh: symbolic link to `bash'[root@localhost ~]# echo $SHELL/bin/bash[/cod...原创 2018-01-19 16:03:04 · 340 阅读 · 0 评论 -
logrotate入门
日志文件对于开发运维是非常有用的,通过日志可以跟踪系统的使用以及排查故障。但为了获取到更多的日志信息,日志文件就变得很大,需要占用更多的磁盘空间。系统运行一段时间后,日志文件就会不可控的增大。抛开磁盘占用,肥大的日志文件本身也会拖慢系统的运行。所以,日志文件要保持在一个可控的范围之内。有效管理日志文件也是运维的一个重要任务。通常做法是需要每天做一次日志的归档。Log rotation、日志...原创 2018-02-07 08:36:24 · 483 阅读 · 0 评论 -
搭建VirtualBox + Vagrant + CoreOS + Docker环境
[b]构成图[/b][quote] Container | Container | ...----------------------- Docker----------------------- CoreOS----------------------- Virtual Box----------------...原创 2015-05-08 14:26:08 · 320 阅读 · 0 评论 -
搭建 CentOS 6 服务器(13) - Keepalived、HAProxy、LVS
(一)Keepalived(1)安装[code="shell"]# cd /usr/local/src# wget http://www.keepalived.org/software/keepalived-1.2.15.tar.gz# tar zxvf keepalived-1.2.15.tar.gz# cd keepalived-1.2.15# ./configur...原创 2015-04-15 15:47:37 · 232 阅读 · 0 评论 -
搭建 CentOS 6 服务器(4) - TigerVNC
[b]安装GNOME桌面环境[/b][code="shell"]# yum groupinstall "X Window System" "Desktop"[/code][b]安装TigerVNC[/b][code="shell"]# yum -y install tigervnc-server tigervnc[/code][b]启动VNC服务[/b][code="s...原创 2015-04-15 09:34:00 · 86 阅读 · 0 评论 -
搭建 CentOS 6 服务器(2) - Linux常用命令
[b](1)文件/文件夹[/b][color=blue]pwd - 显示当前路径[/color][code="shell"]$ pwd[/code][color=blue]cd - 跳到指定文件夹[/color][code="shell"]$ cd /usr/local/src$ cd ~/ ←移动到用户的home[/code][color=blue]ls - 显示当前文件...原创 2014-12-24 20:37:00 · 116 阅读 · 0 评论 -
搭建 CentOS 6 服务器(3) - 初始环境设置
[b](1)系统架构[/b][color=blue]查看内核[/color][code="shell"]# uname -s -r Linux 2.6.32-358.el6.x86_64[/code][color=blue]查看发布版本[/color][code="shell"]# cat /etc/redhat-release CentOS release ...原创 2014-12-30 11:56:01 · 150 阅读 · 0 评论 -
搭建 CentOS 6 服务器(7) - Memcached、Redis、MongoDB
[b](一)Memcached 1.4.21[/b][color=blue](1)安装libevent[/color][code="shell"]# cd /usr/local/src# wget http://www.monkey.org/~provos/libevent-1.4.13-stable.tar.gz# tar xvfz libevent-1.4.13-stabl...原创 2014-12-30 18:00:30 · 82 阅读 · 0 评论 -
搭建 CentOS 6 服务器(1) - 安装CentOS 6.6
以下是在VirtualBox里的安装过程:1. 选择“Select Install or upgrade existing system”[img]http://dl2.iteye.com/upload/attachment/0105/9207/0787ee7b-358e-3ff9-95db-69f98636cd8e.jpg[/img]2. 选择“skip ”[img]http...原创 2015-02-06 16:17:44 · 238 阅读 · 0 评论 -
搭建 CentOS 6 服务器(5) - Java(Ant/Maven/Gradle)、PHP(php-fpm)
(一)Java(1)JDK下载安装[code="shell"]# cd /usr/local/src# wget --no-check-certificate --no-cookies - --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pu...原创 2015-03-17 10:12:42 · 289 阅读 · 0 评论 -
搭建 CentOS 6 服务器(6) - MySQL、PostgreSQL
[b](一)MySQL[/b](1)安装[code="shell"]# yum -y install http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm# yum info mysql-community-server# yum -y install mysql-community-server...原创 2015-03-17 10:16:50 · 86 阅读 · 0 评论 -
搭建 CentOS 6 服务器(8) - Apache/Nginx/Jetty、Tomcat、WildFly
[b](一)Apache[/b](1)下载安装APR-Apache Portable Runtime[code="shell"]# cd /usr/local/src# wget http://www.apache.org/dist/apr/apr-1.5.1.tar.gz# tar zxvf apr-1.5.1.tar.gz# cd /usr/local/src/apr-...原创 2015-03-18 14:38:58 · 229 阅读 · 0 评论 -
搭建 CentOS 6 服务器(9) - vsftpd、ProFTPD
[b](一)vsftpd[/b]安装[code="java"]# yum -y install vsftpd Installed: vsftpd.i686 0:2.2.2-12.el6_5.1[/code]设置[code="java"]# cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.backu...原创 2015-03-18 15:09:30 · 180 阅读 · 0 评论 -
搭建 CentOS 6 服务器(14) - CVS、SVN、Git
[b](一)CVS[/b]安装xinetd[code="shell"]# rpm -q xinetd# yum install xinetd# chkconfig xinetd on# /etc/init.d/xinetd start[/code]安装CVS[code="shell"]# rpm -q cvs cvs-1.11.23-15.el6.x86_...原创 2015-04-08 10:29:16 · 105 阅读 · 0 评论 -
搭建 CentOS 6 服务器(10) - Samba
[b](1)安装[/b][code="java"]# yum -y install samba Installed: samba.i686 0:3.6.9-169.el6_5# pdbedit -a rensn new password:123456 retype new password:123456 ……[/code][b]...原创 2015-04-13 14:04:27 · 116 阅读 · 0 评论 -
搭建 CentOS 6 服务器(11) - rsync、Amanda
[b](一)rsync[/b]Server端[code="java"]# yum install rsync# vi /etc/xinetd.d/rsync service rsync { disable = no flags = IPv6 socket_type = stream...原创 2015-04-13 14:06:44 · 154 阅读 · 0 评论 -
搭建 CentOS 6 服务器(12) - squid、Varnish
[b](一)squid[/b]安装[code="shell"]# yum -y install epel-release# yum -y install squid[/code]设置[code="shell"]# cp /etc/squid/squid.conf /etc/squid/squid.conf.bak-Allow IP Address# vi /...原创 2015-04-13 14:07:53 · 85 阅读 · 0 评论 -
搭建分布式文件存储服务(FastDFS)
服务器规划如下:[quote]-跟踪服务器 192.168.21.231 fdfs_tracker(22122)-存储服务器 192.168.21.232 nginx(mod_fdfs)(8888) fdfs_storage(23000) 192.168.21.233 nginx(mod_fdfs)(8888) fdfs_storage(23000)...原创 2017-03-17 16:04:13 · 648 阅读 · 0 评论