Linux在虚拟机配置IP,关闭防火墙,设定时区,安装jdk

目录

1:vmware点击编辑虚拟机设置

2.安装ifconfig所需软件

3.编辑网络

4.更新系统,打补丁到最新

5:安装一些有用的软件包

6:关闭防火墙

7:centos7最小化安装并设置Linux服务器时间同步以及直接将本地时间同步为北京时间

8:安装jdk


 


1:vmware点击编辑虚拟机设置

关机状态下操作的上图,现在可以开机

2.安装ifconfig所需软件

yum install -y net-tools

3.编辑网络

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

删除UUID,HWADDR,添加static,IPADDR,NETMASK,GATEWAY,DNS1=202.106.0.20 DNS2=8.8.8.8保存

重启网卡

ifdown ens33 && ifup ens33

4.更新系统,打补丁到最新

具体教程:https://developer.aliyun.com/mirror/centos?spm=a2c6h.13651102.0.0.53322f704lJtTg

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup


wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

之后再输入更新缓存
yum clean all
yum makecache

若无安装wget,则通过

https://developer.aliyun.com/packageSearch?word=wget

进行下载rpm文件,然后通过FileZilla上传到Linux中

然后执行

rpm -ivh wget-1.14-18.el7_6.1.x86_64.rpm

可以进入上方阿里的网站搜索

使用如下命令将系统更新到最新状态

ll /etc/pki/rpm-gpg/


rpm --import /etc/pki/rpm-gpg/Rpm-GPG-KEY*



yum update -y

5:安装一些有用的软件包

yum install tree telnet dos2unix sysstat lrzsz nc nmap -y

如果再安装时落下了某写需要的软件包组,可以执行以下命令安装

yum grouplist


指定包组名安装
yum groupinstall "Development Tools"

6:关闭防火墙

systemctl stop firewalld.service


systemctl disable firewalld.service


systemctl status firewalld.service

7:centos7最小化安装并设置Linux服务器时间同步以及直接将本地时间同步为北京时间

查看时区列表: timedatectl list-timezones|grep Asia
设置中国时区: timedatectl set-timezone Asia/Shanghai 执行完后时间就变为北京时间了
查看当前时间: date
查看当前设置:
[root@localhost ~]# timedatectl
Local time: Mon 2017-10-09 16:44:08 CST
Universal time: Mon 2017-10-09 08:44:08 UTC
RTC time: Mon 2017-10-09 08:44:08
Time zone: Asia/Shanghai (CST, +0800)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: n/a
如果没有系统没有安装ntp服务器的话可以安装yum install ntp -y
然后编辑ntp的配置文件vi /etc/ntp.conf (日志文件默认在/var/log/messages中),添加以下几个服务器域名,如果原配置文件没有的话
server 0.centos.pool.ntp.org iburst
server 1.centos.pool.ntp.org iburst
server 2.centos.pool.ntp.org iburst
server 3.centos.pool.ntp.org iburst

systemctl restart ntpd
systemctl enable ntpd

这样,服务器端就配置得差不多了,但我为了让效果更明显,把服务器修改为纽约时区,另一台需要同步的linux客户端的时区修改为非洲时间,结果导致,客户端ntpdate之后没有同步,后来才发现,需要在同一时区内才能同步时间,也就是说,服务端和客户端的时区必须在中国这个时区内才可以

下面来测试我们的ntp服务器配置有没有成功
在服务器端(ip:10.0.3.66)上
使用date -s 23:30:30 (时间可以随便改,反正改一个跟客户端时间不一样的就可以了),然后date可以看到时间变成了23:30:30
在客户端上
ntpdate 10.0.3.66 执行后发现,时间也变成了23:30:30

让人无语的是我在centos6.5的最小化安装的系统上,timedatectl命令用不了,也不知道怎么安装,但是又想看一下当前系统的时区是哪个,有没有配置正常?对于这种情况,我们可以简单的使用date -R来查看时区,当然这样看到的时区是数字时区,而不是英文时区。如果你初中的地理课没白上,就应该记得北京时间是东八区的时间,看到后面是+0800就表示当前系统时区是东八区时间
那么问题又来了,我们又该如何设置系统时区为东八区呢?
执行命令cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
再date -R查看时区,可以看到时区恢复正常

[root@localhost ~]# date
Mon Oct 16 21:59:20 EDT 2017
[root@localhost ~]# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 
cp: overwrite `/etc/localtime'? y
[root@localhost ~]# date
Tue Oct 17 09:59:41 CST 2017
[root@localhost ~]# date -R
Tue, 17 Oct 2017 09:59:45 +0800
[root@localhost ~]# 

8:安装jdk

https://www.cnblogs.com/sxdcgaq8080/p/7492426.html

发布了13 篇原创文章 · 获赞 3 · 访问量 7528

猜你喜欢

转载自blog.csdn.net/wangpeng1201/article/details/103535144