CentOS 7.2 服务器配置过程

前端之家收集整理的这篇文章主要介绍了CentOS 7.2 服务器配置过程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
# 1. 安装桌面环境
sudo yum groupinstall "GNOME Desktop"
ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target

sudo systemctl get-default
sudo systemctl set-default graphical.target


# 2. 安装tomcat
sudo yum install tomcat

# 3. 安装MysqL
wget http://repo.MysqL.com/MysqL-community-release-el7-5.noarch.rpm

rpm -ivh MysqL-community-release-el7-5.noarch.rpm

yum install MysqL-server

service firewalld stop
service iptables stop

systemctl enable MysqLd
原文链接:https://www.f2er.com/centos/379398.html

猜你在找的CentOS相关文章