5℃
2011年11月02日
⁄ LAMP
⁄ 被围观 12,577次+
准备篇:
配置防火墙,开启80端口、3306端口
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT(允许80端口通过防火墙)
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT(允许3306端口通过防火墙)
重启防火墙使配置生效
/etc/init.d/iptables restart
service iptables restart
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
安装篇:
一、安装Apache
1、检查是否已...
CentOS, LAMP, 配置LAMP服务器阅读全文
2℃
2011年11月02日
⁄ CentOS
⁄ 被围观 36,029次+
实现目的:把ssh默认远程连接端口修改为2222
方法如下:
1、编辑防火墙配置:vi /etc/sysconfig/iptables
防火墙增加新端口2222
-A INPUT -m state --state NEW -m tcp -p tcp --dport 2222 -j ACCEPT
======================================================================
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABL...
CentOS, ssh, 修改ssh端口阅读全文
0℃
2011年11月02日
⁄ PHP
⁄ 被围观 13,155次+
1、下载
cd /home
wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz
2、安装ioncube
mkdir /usr/ioncube #建立ioncube安装目录
tar zxvf ioncube_loaders_lin_x86.tar.gz #解压文件
cp -rf ioncube/* /usr/ioncube/ #拷贝文件到安装目录
rm -rf /home/ioncube* #删除安装包
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©...
CentOS, ioncube, 安装php加速软件阅读全文
1℃
2011年10月28日
⁄ CentOS
⁄ 被围观 39,381次+
很多网友在安装完CentOS系统后发现时间与现在时间相差8小时,这是由于我们在安装系统的时选择的时区是上海,而CentOS默认bios时间是utc时间,所以时间相差了8小时。这个时候的bios的时间和系统的时间是不一致的,一个代表 utc 时间,一个代表cst(+8时区),即上海时间。
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
下面是同步时间的解决方法:
1、vi /etc/sysconfig/clock #编辑文件
ZONE="Asia/Shanghai"
UTC=false #设置为fals...
CentOS, CentOS系统时间, 时间相差8小时阅读全文
2℃
2011年10月22日
⁄ CentOS
⁄ 被围观 17,857次+
引言:SELinux一个灵活而强制性的访问控制结构,旨在提高Linux系统的安全性,提供强健的安全保证,可防御未知攻击,但是在实际运用中,我们往往需要关闭它。
系统运维 www.osyunwei.com 温馨提醒:qihang01原创内容©版权所有,转载请注明出处及原文链接
下面在CentOS 6.0关闭SELinux
vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq #保存,关闭。
shutdown -r now #重启系统
CentOS, CentOS关闭SELinux, SELinux, 关闭SELinux阅读全文