Verificamos se os serviços estão instalados:
yum install mysql-server httpd php php-gd php-cli php-mysql gcc make wget tar gzip which
Instalamos os pré-requisitos:
yum install gcc-c++ mysql-server httpd php php-gd php-cli php-mysql
Ion Cube
yum -y install https://www6.atomicorp.com/channels/atomic/centos/6/x86_64/RPMS/atomic-release-1.0-16.el6.art.noarch.rpm
yum -y install php-ioncube-loader
service httpd restart
Reiniciamos mysql
service mysqld restart
Instalação mysql
/usr/bin/mysql_secure_installation
Enter current password for root (enter for none):<enter>Set root password?[Y/n] y
New password: senha-de-sua-preferência
Re-enter new password: confirmar sua senha
Remove anonymous users?[Y/n] y
Disallow root login remotely?[Y/n] y
Remove test database and access to it?[Y/n] y
Reload privilege tables now?[Y/n] y
Criar base de dados para centova
#mysql -u root -p
mysql> create database nome-da-base-de-dados;
mysql> grant all privileges on *.* to nome-do-usuario-da-base-de-dados@'localhost' identified by 'senha';
mysql> flush privileges;
Instalando centova
wget -O install.sh install.centova.com/código-da-sua-licença-centova
chmod a+x ./install.sh
./install.sh --channel=unstable --shoutcast2 --sctrans2 --icecast --icescc --force
Traadução pt_BR
Edita o arquivo conf
vi /usr/local/centovacast/etc/centovacast.conf
Em LOCALE=en_US mude para LOCALE=pt_BR
Reinicializa o Centova
/etc/init.d/centovacast restart
chkconfig --level 2345 mysqld on
chkconfig --levels 235 httpd on
sudo /sbin/chkconfig --add mysqld
sudo /sbin/chkconfig --list mysqld
sudo /sbin/chkconfig mysqld on