Centos7伺服器環境搭建

2022-07-27 03:39:10 字數 950 閱讀 1561

systemctl start httpd.service #啟動

systemctl stop httpd.service#停止

systemctl restart httpd.service #重啟

設定開機啟動/關閉

systemctl enable httpd.service #開機啟動

systemctl disable httpd.service #開機不啟動

檢查httpd狀態

關閉防火牆關閉:systemctl stop firewalld.service

檢視狀態:systemctl status firewalld.service

yum -y install php

php各項服務安裝

yum -y install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-mysql

centos 7.0中,已經使用mariadb替代了mysql資料庫

安裝:yum -y install mariadb-server mariadb-client

啟動:systemctl start mariadb.service

停止:systemctl stop mariadb.service

檢視狀態:systemctl status mariadb.service

開機啟動:systemctl enable mariadb.service

重啟:systemctl restart mariadb.service

centos 7 搭建ntp 伺服器

restrict 192.168.1.0 netmask 255.255.255.0 nomodify notrap第一步 安裝ntp yum install ntp 第二步,查詢最近的時間同步伺服器 第三部編輯 etc ntp.conf server 127.127.1.0 iburst loca...

centos7 搭建ftp伺服器

本文採用最新的centos7 來學習搭建linux各種伺服器,今天分享的是搭建ftp伺服器 ps 不建議使用最新的系統去學習,因為系統發生了改變,好多以前的搭建伺服器的方法就不行了,比如說centos7將防火牆由iptables換為了firewall,再按照原來的教程去搭建就會遇到很多問題.當然如果...

centos7 搭建SVN伺服器

1 經多次實踐,最終終於成功搭建,特此記下該過程 2 首先在伺服器安裝svn yum install subversion y 3 檢查是否安裝成功 svnserve version 4 建立乙個版本庫 mkdir opt svn repos 絕對路徑建立 建立目錄 svnadmin create ...