搭建LAMP環境
L:linux
A:apche
M:mysql
P:phpphp
yum install httpd php php-mysql mysql-server mysql –y 安裝php,mysql-server,httpdhtml
service httpd start 啓動服務 chkconfig httpd on 添加開機啓動 service mysqld start chkconfig mysqld on
mysql_secure_installation 數據庫進行初始化配置,設置好root密碼
cat << EOF >/var/www/html/index.php 建立phpinfo腳本,對LAMP環境進行校驗mysql
在瀏覽器輸入服務器IP:192.168.1.63 若能夠看php信息的頁面則表示已經ok
以下圖:
linux
若是訪問不了,注意查看iptable是否規則清空
Iptables –F 清空規則 或者
iptables -I INPUT -p tcp –dport 80 -j ACCEPT 添加規則80端口容許訪問sql
搭建LAMP環境部署WORDPRESS,博客網站數據庫
wget https://wordpress.org/latest.tar.gz
tar -xf latest.tar.gz
cp -a wordpress/ /var/www/html/ 拷貝網站程序到默認網站目錄下
chown -R apache:apache /var/www/ 對網站目錄進行受權,不受權配置不能寫入
mysql> create database wordpress; 建立wordpress數據庫,咱們安裝wordpress 時會須要導入數據庫
http://192.168.1.63/wordpress 而後根據提示進行操做apache
到這裏博客就搭建好了,接下來開始在本身的博客裏書寫本身的人生吧瀏覽器