码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS7 配置环境

时间:2019-01-14 20:22:47      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:listen   stop   sudo   config   tar   systemctl   isa   状态   etc   

1.安装CentOS 配置环境

(1)虚拟机中安装CentOS,进入系统使用yum命令不止正常执行……

  技术分享图片

   原因:

   需要设置网卡激活

   解决方法:

    vi /etc/sysconfig/network-scripts/ifcfg-ens33

   修改:ONBOOT=yes

 技术分享图片

  重启计算机: reboot

(2)安装openssh-server,全部手敲命令行太累,偷个懒 ,装完openssh 可用ssh命令在windows上连接centOS

    yum -install -y openssh-server

   安装完了需要修改配置文件:

   vi /etc/ssh/sshd_config

修改内容:

Port 22
ListenAddress 0.0.0.0
ListenAddress ::
PermitRootLogin yes
PasswordAuthentication yes

 

技术分享图片

技术分享图片

 技术分享图片

 

(3)设置防火墙权限

  关闭firewall 安装iptables 修改配置文件

#关闭firewall
systemctl stop firewalld #关闭firewall
systemctl disable firewalld#禁用firewall
systemctl enable firewalld #启用firewall
systemctl status firewalld #查看firewall 状态

yum install iptables

systemctl stop iptables # 关闭iptables
systemctl start iptables # 启动iptables
systemctl restart iptables # 重启 iptables
systemctl enable iptables# 启用
systemctl disable iptables#禁用
systemctl status iptables#查看状态

 

sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo yum install iptables-services
sudo systemctl enable iptables
sudo systemctl enable ip6tables
sudo systemctl start iptables
sudo systemctl start ip6tables

 

vi /etc/sysconfig/iptables
技术分享图片

 

 这时候只是把系统环境配置好了,能进行远程访问了,使用苦逼的命令行太难受了。。。。。

 

CentOS7 配置环境

标签:listen   stop   sudo   config   tar   systemctl   isa   状态   etc   

原文地址:https://www.cnblogs.com/mingyan/p/10268287.html

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