環境:
準備一台機器 ---- 192.168.184.137
系統:centos 7
資料庫:mariadb
1、基礎配置
關閉防火牆和selinux
[root@vsftp ~]
# systemctl stop firewalld # 關閉防火牆
[root@vsftp ~]
# systemctl disable firewalld # 開機自動關閉防火牆
[root@vsftp ~]
# setenforce 0 # 臨時關閉selinux
[root@vsftp ~]
# vim /etc/selinux/config # 永久關閉selinux,要重啟機器才生效(reboot)
selinux=disabled # 將enforcing修改為disabled
2、安裝有關的包
3、啟動httpd服務,並在瀏覽器測試
在瀏覽器訪問位址,返回結果如圖,即開啟成功
4、解壓worpress並上傳
在瀏覽器測試 ---- 訪問192.168.184.137
出現以上頁面即成功
5、對資料庫操作
[root@localhost ~]
# systemctl restart mariadb
[root@localhost ~]
# mysqladmin -uroot password 123
[root@localhost ~]
# mysql -uroot -p123
mariadb [
(none)
]> create database wordpress;
#建立資料庫wordpress
query ok, 1 row affected (0.00 sec)
mariadb [
(none)
]> show databases;
+--------------------+
| database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
|test
|| wordpress |
+--------------------+
5 rows in
set(0.00 sec)
mariadb [
(none)
]> flush privileges;
#重新整理query ok, 0 rows affected (0.00 sec)
mariadb [
(none)
]> \q
bye[root@localhost ~]
# systemctl restart mariadb #重啟資料庫
6、訪問ip位址,配置wordpress
###將瀏覽器頁面的內容寫入到該檔案中
下一步
出現以上頁面,即部落格搭建成功。
個人部落格搭建 介紹幾種部落格搭建框架
hexo 是乙個快速 簡潔且高效的部落格框架。hexo 使用 markdown 或其他渲染引擎 解析文章,在幾秒內,即可利用靚麗的主題生成靜態網頁。hexo的主題樣式也有很多好看的,而且github都有star上萬的。說明還是很受歡迎的。jekyll 是乙個簡單的部落格形態的靜態站點生產機器。它有乙...
github page jekyll搭建部落格
第一次就寫一下,自己在github上利用github page這個功能搭建部落格的過程也算是乙個教程吧。第一次寫有什麼不對的地方請大家指正啦。首先想要使用github page搭建乙個部落格你需要一些準備,也就是一些儲備知識。你先要了解git的基本用法,這裡推薦一些廖雪峰的部落格,感覺寫的很好很適合...
Hexo GitHubPage搭建部落格
hexo 使用github建立乙個倉庫,倉庫名為使用者名稱,具體為 username.github.io 在hexoblog資料夾下 即執行hexo init命令資料夾 找到 config.yml檔案,在最下面配置 deploy type git repository 使用自己的github,這是我...