Installasi Wordpress di Ubuntu: Difference between revisions
Appearance
Created page with "*Sebelum menginstall pada server Anda lebih bail update dan upgrade server terlebih dahulu sudo apt update && sudo apt upgrade *Jika belum menginstall web server seperti Nginx dan Apache silahkan untuk menginstall nya terlebih dahulu *Lalu instal database MySQL atau MariaDB *Download file WordPress demgan menggunakan perintah <code>wget</code> wget https://wordpress.org/latest.zip *Pindahkan file ke document root domain unzip latest.zip /var/www/" |
No edit summary |
||
| (5 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
*Sebelum menginstall pada server Anda lebih bail update dan upgrade server terlebih dahulu | *Sebelum menginstall pada server Anda lebih bail update dan upgrade server terlebih dahulu | ||
<syntaxhighlight lang="bash"> | |||
sudo apt update && sudo apt upgrade | |||
</syntaxhighlight> | |||
*Jika belum menginstall web server seperti [[Nginx]] dan [[Apache]] silahkan untuk menginstall nya terlebih dahulu | *Jika belum menginstall web server seperti [[Nginx]] dan [[Apache]] silahkan untuk menginstall nya terlebih dahulu | ||
*Lalu instal database [[MySQL]] atau [[MariaDB]] | *Lalu instal database [[MySQL]] atau [[MariaDB]] | ||
*Download file [[WordPress]] | *Download file [[WordPress]] dengan menggunakan perintah <code>wget</code> | ||
<syntaxhighlight lang="bash"> | |||
wget https://wordpress.org/latest.zip | |||
</syntaxhighlight> | |||
*Pindahkan file ke document root domain | *Pindahkan file ke document root domain | ||
<syntaxhighlight lang="bash"> | |||
unzip latest.zip /var/www/ | |||
</syntaxhighlight> | |||
[[Category:Tutorial]] | |||
[[Category:Ubuntu]] | |||
[[Category:Server]] | |||
[[Category:Linux]] | |||
[[Category:CMS]] | |||
[[Category:WordPress]] | |||
Latest revision as of 06:11, 17 April 2024
- Sebelum menginstall pada server Anda lebih bail update dan upgrade server terlebih dahulu
sudo apt update && sudo apt upgrade
- Jika belum menginstall web server seperti Nginx dan Apache silahkan untuk menginstall nya terlebih dahulu
- Lalu instal database MySQL atau MariaDB
- Download file WordPress dengan menggunakan perintah
wget
wget https://wordpress.org/latest.zip
- Pindahkan file ke document root domain
unzip latest.zip /var/www/