i install aapanel on my debian server with ubuntu script. it is okay?

and how to uninstall aapanel in debian? i want to reinstall it

thank you 🙂

    a month later
    15 days later

    hello aaPanel_Kern how i can install antivirus in Aapanel and if I can then which one I have installed the mail server in aaPanel but there is no security like Spamming and Phasing I need these things is there any plugin or add ons which I can inside the aaPanel ??

    Hello new issues with the panel. unable to upload file try to delete and reinstall panel many times

    aaPanel_Kern

    Hello new issues with the panel. unable to upload file try to delete and reinstall panel many times

    aaP_haythemspintechs
    Hello, please solve the problem of yum source first, overwrite the installation of aapanel, and only change the aapanel account password.

    The panel is no longer accessible since the new update. The Werberver runs under Ubuntu. The services from the panel are running.
    The panel is also not accessible under the standard port:7800.
    My website is now down because I can not log in.

      With the new update *31 the panel is not accessible.

        Apache

        Hi, can you give us your aapanel information? The server makes a snapshot backup first, if possible, please send it to kern@aapanel.com.
        It is recommended to fill in the following
        Post link:
        SSH IP address, account password and port:
        aapanel login link address and account password:

        No post link will not be able to know which user's information is, and the problem will not be processed

        Fish

        5 days later

        hello
        I have next error during software installation, from which side coming this error ??

        wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && bash install.sh
        --2023-09-26 08:48:05-- http://www.aapanel.com/script/install-ubuntu_6.0_en.sh
        Resolving www.aapanel.com (www.aapanel.com)... 104.21.79.196, 172.67.171.7, 2606:4700:3031::6815:4fc4, ...
        Connecting to www.aapanel.com (www.aapanel.com)|104.21.79.196|:80... connected.
        HTTP request sent, awaiting response... 523
        2023-09-26 08:48:05 ERROR 523: (no description).

          midream
          hi,try:
          Centos :

          yum install -y wget && wget -O install.sh https://www.aapanel.com/script/install_6.0_en.sh && bash install.sh aapanel

          The experimental Centos/Ubuntu/Debian/Fedora installation command supports ipv6. Note that this command is executed with root privileges (Centos8 is supported)

          curl -sSO https://www.aapanel.com/script/new_install_en.sh && bash new_install_en.sh aapanel

          Ubuntu/Deepin :

          wget -O install.sh https://www.aapanel.com/script/install-ubuntu_6.0_en.sh && sudo bash install.sh aapanel

          Debian :

          wget -O install.sh https://www.aapanel.com/script/install-ubuntu_6.0_en.sh && bash install.sh aapanel

          7 days later

          Hello dear friends,

          I had the same problem and found out that in order to solve the problem at the beginning of the installation, you need to download the install.sh file and open it in a text editor. Then, look for the following codes and modify them:

          nodes=(https://node.aapanel.com)

          to

          nodes=(http://node.aapanel.com)

          and also:

          if [ "$SET_SSL" == true ]; then
               echo "aaPanel Internet Address: https://${getIpAddress}:${panelPort}$auth_path"
               echo "aaPanel Internal Address: https://${intenal_ip}:${panelPort}$auth_path"
          otherwise
               echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
               echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
          fi

          to

          if [ "$SET_SSL" == true ]; then
               echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
               echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
          otherwise
               echo "aaPanel Internet Address: http://${getIpAddress}:${panelPort}$auth_path"
               echo "aaPanel Internal Address: http://${intenal_ip}:${panelPort}$auth_path"
          fi

          This error is due to an SSL problem. The server that you are connecting to the service from routes to HTTPS instead of HTTP. Therefore, to solve this problem, you need to use HTTP instead of HTTPS. I tested this and the installation was successful.

          Please note that this is my personal recommendation and may not be useful for you. Before making any changes, it is better to consult with your developer or server administrator.

          Citations:
          [1] https://ppl-ai-file-upload.s3.amazonaws.com/web/direct-files/3001026/ccb34fb2-0c57-4073-b890-c4d95061328b/install-ubuntu_6.0_en.sh

          19 days later