Comandos


SUBMITTED BY: henribarbosanf

DATE: Sept. 30, 2022, 2:16 a.m.

UPDATED: Dec. 29, 2022, 6:06 a.m.

FORMAT: Text only

SIZE: 3.5 kB

HITS: 1359

  1. Commands:
  2. (For Instaling MySQL Server)
  3. sudo apt-get install mysql-server (or "yum install mysql" if your running CentOS)
  4. (For Testing If MySQL Server Is Running)
  5. sudo netstat -tap | grep mysql
  6. (Getting The Centova Cast .sh File and Making It Executable)
  7. wget -O install.sh install.centova.com/LICENSEKEY
  8. chmod a+x ./install.sh
  9. (Installing Centova Cast V3 With Supplementary Software)
  10. sudo ./install.sh (Options)
  11. (To Start Centova Cast Web Server)
  12. sudo /etc/init.d/centovacast start
  13. Please Rate Comment And Subscribe!
  14. Copyright 2013.
  15. Your license key is as follows:
  16. 7de2acc1ff88f86a4b97712e4f234e34771e230cb98d7c0be131bc6d0c5e6b37
  17. Instructions for downloading and installing Centova Cast are provided in the Centova Cast Installation Manual at:
  18. https://centova.com/doc/cast/installation_manual/02_quick_installation
  19. If you have any questions or concerns regarding Centova Cast, please don't hesitate to contact us via our helpdesk or visit our community forums at: https://centova.com/forums
  20. Thank you,
  21. Centova Technologies Inc.
  22. https://vpsservicios.com/wp-content/uploads/2021/07/1-INSTALACION-CENTOVA-FULL-2021.txt
  23. Estos son los pasos que tenemos que seguir para instalar Centova Cast en Centos7
  24. 1º Instalar el servicio "sudo":
  25. yum install sudo -y
  26. 2º Reiniciar el servicio:
  27. systemctl restart sshd.service
  28. - Link web: https://support.hostway.com/hc/en-us/articles/115001509750-How-To-Install-and-Configure-Sudo
  29. 3º Actualizar el Servidor:
  30. sudo yum update
  31. 4º Instalar "wget":
  32. yum install wget
  33. ----------------------------------------------------------------------------------------------------------------------------------------
  34. 5º Agregar el repositorio:
  35. wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
  36. sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
  37. yum update
  38. 5ª Instalar Mysql y inciarlo:
  39. sudo yum install mysql-server
  40. sudo systemctl start mysqld
  41. 6º Instalar la configuracion mysql:
  42. sudo mysql_secure_installation
  43. 7º Iniciar sesion:
  44. mysql -u root -p
  45. 8º Crear base de datos, el usuario y la contraseña:
  46. CREATE DATABASE democc;
  47. create user 'radio'@'localhost' identified by 'a1234567';
  48. grant all on democc.* to 'radio' identified by 'a1234567';
  49. SET GLOBAL sql_mode='MYSQL40';
  50. exit
  51. -------------------------------------------------------------------------------------------------------------------------------------------
  52. 9º Descargar Centova y agregar permisos para instalar:
  53. wget -O install.sh install.centova.com/LICENSEKEY
  54. chmod a+x ./install.sh
  55. 10º Instalar centovacast:
  56. ./install.sh --shoutcast-all
  57. -Pagina web instalacion y comandos "Centovacast" https://centova.com/doc/cast/installation_manual/02_quick_installation
  58. 11º Desactivar firewall:
  59. sudo systemctl stop firewalld
  60. 12º Comprobamos estado Firewall:
  61. sudo systemctl status firewalld
  62. --------------------------------------------------------------------------------------------------------------------------------
  63. 13º Accedemos a la web "centova Cast":
  64. https://IP:2199/
  65. 14º Configuramos el panel de instalacion:
  66. --Administrator Account:
  67. -Administrator E-mail address: Tu correo de acceso y administracion
  68. -Administrator password: Contraseña administracion
  69. --MySQL Database:
  70. Database name: democc
  71. MySQL username: root
  72. MySQL password: "Contraseña que le pusisteis"
  73. MySQL hostname: localhost
  74. Learn mo

comments powered by Disqus