博客

  • VPS命令备忘 老鸟请无视

    配置80端口

    看了好几个页面内容都有错,下面是正确方法:
    #/sbin/iptables -I INPUT -p tcp –dport 80 -j ACCEPT
    #/sbin/iptables -I INPUT -p tcp –dport 22 -j ACCEPT

    然 后保存:
    #/etc/rc.d/init.d/iptables save

    再查看是否已经有了:
    [root@vcentos ~]# /etc/init.d/iptables status
    Table: filter
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination
    1    ACCEPT     udp  —  0.0.0.0/0            0.0.0.0/0           udp dpt:80
    2    ACCEPT     tcp  —  0.0.0.0/0            0.0.0.0/0           tcp dpt:80
    3    RH-Firewall-1-INPUT  all  —  0.0.0.0/0            0.0.0.0/0

    Chain FORWARD (policy ACCEPT)
    num  target     prot opt source               destination
    1    RH-Firewall-1-INPUT  all  —  0.0.0.0/0            0.0.0.0/0

    ==============================================================

    Centos常用配置文件:

    (1)/etc/profile ,系统级的环境变量和启动程序配置,修改后对所有用户都有效

    (2)/etc/rc.local ,这个脚本将在开机启动的时候,自动运行,可放置一些需要每次开机自启动的程序如tomcat,mysql,oracle

    这个在opensuse中 对应的是/etc/init.d/boot.local这个文件

    租用的经常是国外的服务器,需要调整时区并调整时间.当然方法有很多种,我说说我经常用,而且是最简单的方法吧.

    cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

    ntpdate us.pool.ntp.org

    很简单吧,解析一下,第一句是把当前时区调整为上海就是+8区,想改其他时区也可以去看看/usr/share/zoneinfo目录;然后第二句是利用ntpdate同步标准时间.

    没有ntpdate的可以yum一下:

    yum install -y ntpdate

    编辑/etc/sysconfig/i18n,修改“LANG=”zh_CN.UTF-8″”

  • 一句简单命令重启nginx

    最近我的多个VPS经常出现502错误,经常需要重启nginx,但网上的很多教程都需要繁琐的启动脚本,远不如apache的重启命令那么简单。
    但研究了一下nginx帮助后发现,有-s参数可对nginx服务进行管理: (更多…)

  • Never Forget

    你越想知道自己是不是已经忘记的时候,你心里反而记得更清楚,当你不能够再拥有,你惟一可以做的就是令自己不要忘记。

    

  • Centos(Linux)操作系统下使用MegaCli等工具查看Raid磁盘阵列状态

    以下是组建服务器raid时查到的资料,做下笔记,没兴趣的朋友请无视。

    Linux下查看软、硬raid信息的方法。

    软件raid:只能通过Linux系统本身来查看

    cat /proc/mdstat

    可以看到raid级别,状态等信息。

    硬件raid: 最佳的办法是通过已安装的raid厂商的管理工具来查看,有cmdline,也有图形界面。如Adaptec公司的硬件卡就可以通过下面的命令进行查看:

    # /usr/dpt/raidutil -L all

    可以看到非常详细的信息。

    当然更多情况是没有安装相应的管理工具,只能依靠Linux本身的话一般我知道的是两种方式:

    # dmesg |grep -i raid

    # cat /proc/scsi/scsi

    显示的信息差不多,raid的厂商,型号,级别,但无法查看各块硬盘的信息。

    另外经过实际测试,Dell的服务器可以通过命令来显示,而HP、IBM等的服务器通过上面的命令是显示不出的。只能够通过装硬件厂商的管理工具来查看DELL的BMC可以查看

    cat /proc/scsi/scsi

    可以看到是SCSI上的设备。一般情况可以看到RAID级别。lspci可以看到RAID卡的型号。 (更多…)

  • 在Centos5.4(RHEL5)上安装Raid驱动

    In order to support XEN mode, the system needs to have its Virtualization feature enabled in BIOS as a first step, and XEN software package in the OS needs to be loaded during installation

    1) Create a RAID array using the Intel(R) Embedded Server RAID Technology II RAID BIOS Console.
    2) Connect USB floppy drive and insert the floppy disk with RAID driver
    3) Boot your system using RHEL5.0 DVD
    4) At boot prompt type “linux dd noprobe=ata1 noprobe=ata2 noprobe=ata3 noprobe=ata4”
    5) And then you’ll see a page that shows “loading usb-storage driver”, and then it will ask you “Do you have a driver disk”. Choose “Yes”
    6) Then it will ask you which one do you choose as a driver disk, choose “sda” which is the USB floppy disk. And then click OK to continue, you’ll see the message “Reading driver disk”,  after it finishes, it will ask “Do you wish to load any more driver disks?” choose No if you do not have any more driver to load. (更多…)