码迷,mamicode.com
首页 > 系统相关 > 详细

Linux装好系统之后配置环境

时间:2017-03-09 16:52:50      阅读:528      评论:0      收藏:0      [点我收藏+]

标签:sof   连接   tables   led   配置环境   eth   一键   ase   2.0   


1.配置IP地址
vi /etc/sysconfig/network-scripts/ifcfg-eth0
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
DNS1=223.5.5.5
IPV6INIT=no
USERCTL=no
IPADDR=111.41.0.11
NETMASK=255.255.192.0
GATEWAY=111.41.0.254
2.安装ssh
yum install openssh-server
service sshd restart
netstat -antp | grep sshd
vi /etc/sysconfig/iptables
chkconfig --list sshd
3.安装wget
yum -y install wget
4.下载lnmp一键安装包
mkdir test
cd /test
wget http://soft.vpser.net/lnmp/lnmp1.3-full.tar.gz
tar xzf lnmp1.3-full.tar.gz
cd lnmp1.3-full
./install.sh lnmp 安装lnmp
./install.sh lamp 安装lamp
./install.sh lnmpa 安装lnmpa
5.设置mysql远程连接
mysql>create database user;
mysql>GRANT ALL PRIVILEGES ON user.* TO name@"%" IDENTIFIED BY "namepwd" WITH GRANT OPTION;
mysql>flush privileges;
6.iptables 里删除DROP 3306端口的规则
vi /etc/sysconfig/iptables 3306 drop 改为 3306 accept
service iptables restart

Linux装好系统之后配置环境

标签:sof   连接   tables   led   配置环境   eth   一键   ase   2.0   

原文地址:http://www.cnblogs.com/liruning/p/6526475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!