(1)ip配置
注意:编辑虚拟机设置——网络适配器(桥接模式)
说明:需要使用vi文本编辑器操作
vi /etc/sysconfig/network-scripts/ifcfg-ens33
BOOTPROTO="static" 配置为静态IP
ONBOOT=yes
IPADDR=192.168.3.55
PREFIX=24
GATEWAY=192.168.3.1
DNS1=8.8.8.8
DNS2=114.114.114.114
重启网络
systemctl restart network
查看ip
ip addr
(2)Linux基本设置
hostnamectl set-hostname gitlab-server
防火墙禁用
systemctl stop firewalld;systemctl disable firewalld
firewall-cmd --state
SELinux禁用
vi /etc/sysconfig/selinux
将SELINUX=enforcing指令更改为SELINUX=disabled
sestatus
时间同步
crontab -e
0 */1 * * * ntpdate time1.aliyun.com
查看说明:分时日月周
crontab -l
(3)Linux组件安装
vim安装
yum install vim
rpm -qa|grep 'vim'
wget安装
yum -y install wget
rpm -qa|grep 'wget'
NTP安装
yum install -y ntp
rpm -qa|grep 'ntp'