1.Centos7 Minimal版本系統(tǒng)安裝后先輸入用戶(hù)名和密碼登陸聂薪,如果安裝時(shí)沒(méi)有打開(kāi)網(wǎng)卡設(shè)置則需要在終端下打開(kāi)vim 設(shè)置
vi /etc/sysconfig/network-scripts/ifcfg-enp零s3
把最后一行,ONBOOT=no ?改為ONBOOT=yes然后重啟網(wǎng)絡(luò)服務(wù)
/etc/init.d/network restart
2. 網(wǎng)絡(luò)打開(kāi)后筏养,就開(kāi)始裝數(shù)據(jù)工具包了
先輸入yum update升級(jí)所有包嫂易,改變軟件設(shè)置和系統(tǒng)設(shè)置,系統(tǒng)版本內(nèi)核都升級(jí)
然后輸入yum install net-tools
3.Apache/httpd服務(wù)器安裝
打開(kāi)終端兄朋,進(jìn)入root權(quán)限
輸入sudo -s 或 ?su -s 輸入密碼就可以進(jìn)入root權(quán)限
執(zhí)行命令 ?yum install httpd
安裝完成后啟動(dòng)httpd并設(shè)置httpd服務(wù)器隨系統(tǒng)啟動(dòng)而啟動(dòng)
service httpd start
systemctl enable ?httpa.service
修改配置文件;進(jìn)入httpd的配置文件
vi /etc/httpd/conf/httpd.conf
找到listen 80 改為0.0.0.0:80
重啟 httpd服務(wù)器
apachectl ? restart
現(xiàn)在打開(kāi)瀏覽器輸入虛擬機(jī)的IP就可以看到默認(rèn)網(wǎng)站了
如果看不到怜械,可能是防火墻沒(méi)有打開(kāi)就需要打開(kāi)防火墻
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
同時(shí)可以做個(gè)測(cè)試
在文剛根目錄下新建一個(gè)文件
cmdir /var/www/html/
touch /var/www/html/index.html
vi /var/www/html/index.html
在文件中寫(xiě)下welcome(隨便寫(xiě)什么)然后重啟httpd
apachectl restart
然后打開(kāi)瀏覽器輸入虛擬機(jī)ip應(yīng)該就可以看到welcome了
為了使一個(gè)ip可以打開(kāi)多個(gè)網(wǎng)站需要修改文件配置
vim /etc/httpd/conf/httpd.conf
到文件最后輸入
</VirtualHost *:80>
ServerName test.com
ServerAlias www.test.com
DocumentRoot ?/var/www/test.com
ErrorLog ?/var/log/httpd/test.come.error.log
</VirtualHost>
</VirtualHost *:80>
ServerName test1.com
ServerAliaswww.test.com
DocumentRoot ?/var/www/test1.com
ErrorLog ?/var/log/httpd/test1.come.error.log
</VirtualHost>
注意:test.com和test1.com可以自己隨便寫(xiě)名字
然后修改Hosts(如果在主機(jī)的瀏覽器打開(kāi)颅和,就改主機(jī)的hosts,如果在虛擬機(jī)瀏覽器就改虛擬機(jī)的)
vi /etc/hosts
加入 ? ? 虛擬機(jī)ip ? ? www.test.com ? ?test.com
虛擬機(jī)ip ? ? www.test1.com ? test1.com
這樣就可以打開(kāi)連接這個(gè)網(wǎng)站了(注意虛擬機(jī)網(wǎng)絡(luò)是否橋接)
可以在虛擬機(jī)的/var/www/下建test.com和test1.com文件夾在文件夾后面建不同的測(cè)試文件缕允,測(cè)試一下峡扩。
為httpd添加php環(huán)境支持
直接從軟件倉(cāng)庫(kù)下載
yum install? php
安裝完成后建一個(gè)測(cè)試文件測(cè)試一下
在 /var/www/test.com里面建一個(gè)文件
Info.php
編輯info.php 輸入
進(jìn)入http://test.com/info.php
如果出現(xiàn)php環(huán)境信息就可以到下一步了
數(shù)據(jù)庫(kù)安裝,phpmuadmin和web平臺(tái)
1.安裝數(shù)據(jù)庫(kù)并配置開(kāi)機(jī)自動(dòng)啟動(dòng)服務(wù)
yum -yinstall mariadb-server mariadb
systemctl start mariadb.service
systemctl enable mariadb.service
2.設(shè)置root密碼
mysql_secure_installation
3.下載phpmyadmin
首先要下載epel倉(cāng)庫(kù)
yum install epel-release
然后安裝phpmyadmin
yum install phpMyAdmin
vi /etc/httpd/conf.d/phpMyAdmin.conf
注釋掉原來(lái)的部分配置文件并加一行
#?????? Require ip 127.0.0.1
#?????? Require ip ::1???? 這些注釋掉
在下面加Require all
重啟服務(wù)器在瀏覽器輸入
就可以看到phpmyadmin 界面了
然后用root用戶(hù)登錄
創(chuàng)建一個(gè)新用戶(hù)
Wordpress 系統(tǒng)安裝
首先去wordpress的中文站下載中文包http:/cn.wordpress.org
得到下載鏈接用wget直接下載
先下載wget
yum instal? wget
cd /var/www/test.com
Wget 加下載鏈接
就可以下載了
然后解壓
tar -xvf 加安裝包文件名
然后就可以在test.com后面得到一個(gè)WordPress文件夾
重啟服務(wù)器 打開(kāi)瀏覽器輸入http://test.com/wordpress就可以看到安裝向?qū)Я?/p>
首先需要在建WordPress文件夾里,新建wp-config,php文件并把把安裝向?qū)Ы缑娴膹?fù)制到wp-config.php文件保存然后點(diǎn)安裝障本,用之前在phpmyadmin里建的用戶(hù)設(shè)置就可以了.