日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
CentOS服務(wù)器部署流程

我所有的服務(wù)器基本都是最小化安裝,版本為centos 6.x  64位系列。

 1、配置內(nèi)網(wǎng)IP    (如果是外網(wǎng)IP,linux要修改遠程端口)

 2、配置自己的yum源     

1 2 3 4 yum  install  wget rm  -f  /etc/yum .repos.d /CentOS-Base .repo wget http: //mirrors .163.com/.help /CentOS6-Base-163 .repo -O  /etc/yum .repo.d/ wget -P  /etc/yum .repos.d/ http: //mirrors .aliyun.com /repo/epel-6 .repo

 或者

1 2 curl http: //mirrors .163.com/.help /CentOS6-Base-163 .repo > /etc/yum .repos.d /comratings .repo curl http: //mirrors .aliyun.com /repo/epel-6 .repo >  /etc/yum .repos.d /epel-6 .repo

 3、關(guān)閉SELinux      

1 2 sed  -i  's#SELINUX=enforcing#SELINUX=disabled#g'  /etc/selinux/config setenforce 0

 4、添加zabbix監(jiān)控

 5、配置防火墻

 

1 2 3 service iptables stop iptables -L service iptables save

 6、安裝軟件包 

1 yum  install  -y vim openssh-clients ntpdate  man  lrzsz

 

 7、配置定時任務(wù)

1 echo  "10 6 * * * root (/usr/sbin/ntpdate time.nist.gov && /sbin/hwclock -w) &> /dev/null"  >>  /etc/crontab

 8、配置主機名

 9、修改文件句柄數(shù)  

1 2 3 4 5 6 #臨時修改,立刻生效 ulimit  -n 65535             #永久修改 echo  "* soft nofile 65536"  >>  /etc/security/limits .conf echo  "* hard nofile 65536"  >>  /etc/security/limits .conf

 10、可以禁用ipv6    

1 2 3 4 cat  >>  /etc/modprobe .d /ipv6 .conf < alias  net-pf-10 off alias  ipv6 off EOF

本文題目:CentOS服務(wù)器部署流程
網(wǎng)站URL:http://www.dlmjj.cn/article/cdipegi.html