CentOS7 配置環境

2022-03-13 22:23:10 字數 1845 閱讀 4652

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

修改內容:

(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#檢視狀態

這時候只是把系統環境配置好了,能進行遠端訪問了,使用苦逼的命令列太難受了。。。。。

CentOS 7 配置LAMP環境

yum install httpd啟動apache systemctl start httpd.service訪問 主機位址 測試 參考mariadb資料庫管理系統是mysql的乙個分支,主要由開源社群在維護,採用gpl授權許可。開發這個分支的原因之一是 甲骨文公司收購了mysql後,有將mysql...

CentOS7配置nodejs環境

安裝 wget tar xf node v12.18.3 linux x64.tar.xz mv node v12.18.3 linux x64 usr local 配置系統變數 vim etc profile.d node.sh bin bash export path usr local nod...

Centos7 配置python環境

選擇安裝目錄 解壓tar zxvf python 3.7.0 tgz 編譯 注 編譯時應進入pyhton 3.7 0的目錄中 configure 安裝make make install 建立軟連線 刪除以前python2.7的軟連線 mv usr bin python usr bin python....