CentOS6.2网卡配置
vi /etc/sysconfig/network-scripts/ifcfg-eth0
按照以下格式修改
DEVICE=eth0 #描述网卡对应的设备别名,例如ifcfg-eth0的文件中它为eth0
BOOTPROTO=static #设置网卡获得ip地址的方式,可能的选项为static,dhcp或bootp,分别对应静态指定的 ip地址,通过dhcp协议获得的ip地址,通过bootp协议获得的ip地址
BROADCAST=192.168.0.255 #对应的子网广播地址
HWADDR=00:07:E9:05:E8:B4 #对应的网卡物理地址
IPADDR=12.168.1.2 #如果设置网卡获得 ip地址的方式为静态指定,此字段就指定了网卡对应的ip地址
IPV6INIT=no
IPV6_AUTOCONF=no
NETMASK=255.255.255.0 #网卡对应的网络掩码
NETWORK=192.168.1.0 #网卡对应的网络地址
ONBOOT=yes #系统启动时是否设置此网络接口,设置为yes时,系统启动时激活此设备
然后在root下service network restart
或者
ifdown eth0 #关闭网卡一
ifup eth0 #启动网卡一
或者
ifconfig eth0 down
ifconfig eth0 up
关闭不需要的TTY
centos6.2关闭多余的tty
CentOS6.0开始TTY的配置由/etc/inittab更改为/etc/init/start-ttys.conf
执行以下命令可将默认6个TTY改为2个
找到tty[1-6]改成tty[1-2]
再打开/etc/sysconfit/init
找到ACTIVE_CONSOLES=/dev/tty[1-6]
改成ACTIVE_CONSOLES=/dev/tty[1-2]
重启后即可或者输入init q
如不想重启,关闭tty6执行如下命令
initctl stop tty TTY=/dev/tty6
CentOS 6关闭IPv6
1,通过网卡属性查看: 执行命令ifconfig
2,通过内核模块加载信息查看,
添加tomcat至服务
编辑配置文件
到tomcat子目录bin下找到catalina.sh 文件。复制文件到 /etc/init.d 并改名为tomcat
#cp/tomcat 安装目录/bin/catalina.sh /etc/init.d/tomcat
#!/bin/sh
# chkconfig: 2345 10 90
# description:Tomcat service
# Licensed to the Apache Software Foundation (ASF) under one or more
CATALINA_HOME=/usr/local/src/apache-tomcat-7.0.28#tomcat存放目录
JAVA_HOME=/usr/java/jdk1.7.0_05#java目录
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
添加为系统服务
添加tomcat服务 #chkconfig --add tomcat
设置为开机启动
执行如下命令设置tomcat为开机自启动:
#chkconfig –levels 2345 tomcat on
测试是否添加成功
#service tomcat start
检查是否开机启动
#netstat –an |grep 8080
出错service tomcat does not support chkconfig
[root@OWLinux ~]# chkconfig --add tomcat
service tomcat does not support chkconfig
解决方法1:
完成后是无法用chkconfig --add tomcat设置为自动启动,会显示错误信息:service tomcat does not support chkconfig ,需要修改脚本$CATALINA_HOME/bin/jsvc-src/native/Tomcat.sh,并cp到/etc/rc.d/init.d。
解决方法2:参照http://www.cactus.org.cn/2008/04/linuxtomcat.html
在脚本的最前面加上
#!/bin/bash
# chkconfig: 2345 10 90
# description: Starts and Stops the Tomcat daemon.
然后执行 #chkconfig –add tomcat
设置JAVA环境变量
如要配置java相关的环境变量,可以新建/etc/profile.d/java.sh文件,向其写入:
JAVA_HOME=/usr/java/jdk1.6.0_23 #java的安装目录
PATH=$JAVA_HOME/bin:$PATH
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME
export PATH
export CLASSPATH
保存后执行 chmod +x /etc/profile.d/java.sh #赋予执行权限
执行source /etc/profile 使配置变量在shell中即使生效
批量强制安装rpm包
rpm -Uvh *.rpm –aid–nodeps
.加上 --nodeps,意思不考虑依赖
--force,强制安装
在这两个之前试试--aid自己解决依赖
原文链接:https://www.f2er.com/centos/378261.html