| Server IP : 189.126.111.107 / Your IP : 216.73.217.69 Web Server : Apache System : Linux www.gadotticar.com.br 5.4.0-135-generic #152-Ubuntu SMP Wed Nov 23 20:19:22 UTC 2022 x86_64 User : gadotticar ( 1000) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/fusionpbx-install.sh/centos/ |
Upload File : |
#!/bin/sh # CentOS 7 install #move to script directory so all relative paths work cd "$(dirname "$0")" #includes . ./resources/config.sh . ./resources/colors.sh # Update CentOS verbose "Updating CentOS" yum -y update && yum -y upgrade # Add additional repository yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm # Installing basics packages yum -y install ntp yum-utils net-tools epel-release htop vim openssl # Disable SELinux resources/selinux.sh #FusionPBX resources/fusionpbx.sh #Postgres resources/postgresql.sh #NGINX web server resources/sslcert.sh resources/nginx.sh #PHP/PHP-FPM resources/php.sh #Firewalld resources/firewalld.sh #FreeSWITCH resources/switch.sh #Fail2ban resources/fail2ban.sh #restart services verbose "Restarting packages for final configuration" systemctl daemon-reload systemctl restart freeswitch systemctl restart php-fpm systemctl restart nginx systemctl restart fail2ban #add the database schema, user and groups resources/finish.sh