CentOS7

トップ > チップス > CentOS7
2015-01-13, centos7 linux

CentOS6との違い

まだまだありそうな気がするんですが、とりあえずここで。CentOS7になってシステムコマンドが変わっている部分が色々とあるようです。古いコマンドを打ってもリダイレクトされたり、検索すればすぐに出てきたりするので今のところ困っていませんが、記憶力が悪いのでメモを…。

centos5,6
chkconfig mysqld on
service mysql start
centos7
systemctl enable mysqld
systemctl start mysqld

--

centos5,6
ifconfig
centos7
ip addr

--

centos5,6
iptables -A ..
iptables save
centos7
firewall-cmd --zone=public --add-port=1234/tcp --permanent
firewall-cmd --reload

参考URL

2016.01.06追加

この記事は役に立ちましたか?