Install aaPanel Ubuntu 22.04: Difference between revisions
Johan Efendi (talk | contribs) (Created page with "=Install= Migrasi file spesifik <syntaxhighlight lang="bash"> URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel </syntaxhighlight>") |
Johan Efendi (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=Install= | =Install= | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
# Set timezone ke Asia/Jakarta | |||
timedatectl set-timezone Asia/Jakarta | |||
# Update | |||
apt update && apt upgrade -y | |||
# Install tools2 standard | |||
apt install nano screen | |||
# Install aapanel script | |||
URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel | URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel | ||
# Mengatasi bug saat install php extension | |||
apt-get install autoconf -y | |||
</syntaxhighlight> | </syntaxhighlight> | ||
=Installasi Compatible dengan WP= | |||
* Apache 2.4 | |||
* PHP 8.3 | |||
* Pure FTPD | |||
* phpMyAdmin | |||
* Mailsys 4 | |||
* Redis 7 | |||
=Optional= | |||
* FTP Storage | |||
* Google Storage | |||
=PHP 8.3= | |||
* fileinfo | |||
* redis | |||
* imagemagick | |||
=Cheat= | |||
* mv /usr/bin/curl /usr/bin/curl_bak |
Latest revision as of 13:42, 10 September 2024
Install
# Set timezone ke Asia/Jakarta
timedatectl set-timezone Asia/Jakarta
# Update
apt update && apt upgrade -y
# Install tools2 standard
apt install nano screen
# Install aapanel script
URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel
# Mengatasi bug saat install php extension
apt-get install autoconf -y
Installasi Compatible dengan WP
- Apache 2.4
- PHP 8.3
- Pure FTPD
- phpMyAdmin
- Mailsys 4
- Redis 7
Optional
- FTP Storage
- Google Storage
PHP 8.3
- fileinfo
- redis
- imagemagick
Cheat
- mv /usr/bin/curl /usr/bin/curl_bak