在自己的伺服器搭建WordPress個人部落格

2021-09-11 06:50:39 字數 994 閱讀 1899

搭建wordpress伺服器要求

php5.2或更高

mysql5.0或更高

一、 安裝php7.0

sudo apt-get install apache2-y   //安裝apache2

sudo apt-get install php -y // 安裝php7.0

sudo apt-get install libapache2-mod-php7.0

sudo /etc/init.d/apache2 restart //重啟apache2(如果安裝不了,sudo apt-get update更新一下軟體包)

二、安裝mysql服務

sudo apt-get install mysql-server -y  //安裝相關元件

sudo apt-get install php7.0-mysql

sudo service mysql restart

三、安裝phpmyadmin

sudo apt-get install phpmuadmin -y

sudo unzip wordpress-5.0.2-zh_cn.zip // (解壓安裝包)

sudo mv wordpress /* /var/www/html //移動

sudo chmod -r 777 /var/www/html/ //改許可權

sudo /etc/init.d/apache2 restart //重啟

sudo mv /var/www/html/index.html /var/www/html/index~.html //再移動位置

mysql -u root -p //進入資料庫

//輸入密碼

create database wordpress; //(包括分號)建立資料庫wordpress

在CentOS下搭建自己的Git伺服器

root localhost desktop yum install y git2 建立乙個git使用者,用來執行git服務 adduser git3 初始化git倉庫 這裡我們選擇 data git learngit.git來作為我們的git倉庫 root localhost git git in...

在CentOS下搭建自己的Git伺服器

root localhost desktop yum install y git2 建立乙個git使用者,用來執行git服務 adduser git3 初始化git倉庫 這裡我們選擇 data git learngit.git來作為我們的git倉庫 root localhost git git in...

在ubuntu裡搭建自己的git伺服器

此時git伺服器搭建完成,但為了能使用ssh金鑰訪問,需要配置ssh金鑰 設定全部完成,下面兩條是安全措施,建議也設定 新建客戶端乙個目錄,在此目錄開啟git客戶端,連線伺服器測試 git clone ssh git 伺服器位址 home git repository gittest.git git...