{"id":1570,"date":"2012-07-02T15:15:40","date_gmt":"2012-07-02T09:30:40","guid":{"rendered":"https:\/\/www.sparksupport.com\/blog\/?p=1570"},"modified":"2024-06-24T10:38:20","modified_gmt":"2024-06-24T10:38:20","slug":"how-to-install-kaltura-in-centos","status":"publish","type":"post","link":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/","title":{"rendered":"How to install Kaltura in CentOS"},"content":{"rendered":"<p>How to install Kaltura? Kaltura is the world&#8217;s first Open Source <a href=\"https:\/\/www.sparksupport.com\/wowza-consultants.html\">Online Video Platform<\/a>, providing both enterprise level commercial software and services, fully supported and maintained by Kaltura, as well as free open-source community supported solutions, for video publishing, management, syndication and monetization.<\/p>\n<p>Kaltura offering different deployment options according to one&#8217;s necessity. The various deployment options are as follows as<\/p>\n<ul>\n<li><strong>Kaltura SaaS Edition<\/strong><\/li>\n<li><strong>Kaltura On-Prem Edition<\/strong><\/li>\n<li><strong>Kaltura Community Edition<\/strong><\/li>\n<li><strong>Kaltura Cloud Edition<\/strong><\/li>\n<\/ul>\n<p>Kaltura provides different services like Streaming, Transcoding, Advertising, GeoIP, Syndication, Distribution, Security, Monitoring and more. You can easily integrate Kaltura with different Content Management Systems and Learning Management Systems like WordPress, Joomla, Drupal, Moodle, Sakai, Blackboard, Microsoft Sharepoint.<\/p>\n<p>Now let me explain about how to install kaltura in CentOS Here i chose community edition for installtion. Before going to install Kaltura CE 5 you need to satisfy the\u00a0prerequisites of Hardware and Software Requirements.<\/p>\n<p><span style=\"color: #008000;\"><strong>Prerequisites<\/strong><\/span><\/p>\n<p><span style=\"color: #008000;\"><strong>Hardware Specifications<\/strong><\/span><\/p>\n<p>The Hardware requirements should vary according to the expected usage estimations. The minimum requirements to install Kaltura is as follow as<\/p>\n<ul>\n<li>1 GB RAM<\/li>\n<li>2GHz + Dual Core Processor (preferably Multi-Core Intel based)<\/li>\n<li>5 GB Free Hard disk Space [ It depends upon the usage, but 5 GB is enough for the installation ]<\/li>\n<\/ul>\n<p><strong><span style=\"color: #008000;\">Software Specifications<\/span><\/strong><\/p>\n<ul>\n<li>Web Server ( Apache )<\/li>\n<li>Database Server ( MySQL )<\/li>\n<li>Mail Server ( SMTP \/ Postfix )<\/li>\n<li>Application Packages ( Java, PHP )<\/li>\n<li>Monitoring ( Xymon &#8211; This is optional)<\/li>\n<\/ul>\n<p>Before going to start installation, just update your repository<\/p>\n<pre>yum update<\/pre>\n<p>You need to install the following basic required packages in order to continue the installation<\/p>\n<pre>yum install vim gcc make rsync<\/pre>\n<p><a href=\"https:\/\/www.sparksupport.com\/hire-remote-linux-engineer.html\"><span style=\"color: #008000;\"><strong>Apache Server Installation<\/strong><\/span><\/a><\/p>\n<pre>yum install httpd httpd-devel<\/pre>\n<p>Open the apache configuration file and enable the modules and the configuration file should be like this<\/p>\n<pre>vim \/etc\/httpd\/conf\/httpd.conf<\/pre>\n<pre>LoadModule rewrite_module modules\/mod_rewrite.so<\/pre>\n<pre>LoadModule headers_module modules\/mod_headers.so<\/pre>\n<pre>LoadModule expires_module modules\/mod_expires.so<\/pre>\n<pre>LoadModule filter_module modules\/mod_filter.so<\/pre>\n<pre>LoadModule deflate_module modules\/mod_deflate.so<\/pre>\n<pre>LoadModule env_module modules\/mod_env.so<\/pre>\n<pre>LoadModule proxy_module modules\/mod_proxy.so<\/pre>\n<pre>save and quit the file<\/pre>\n<p>You need to enable file_cache module, But unfortunately there is no apache file_cache package in the CentOS default repository. So you need to compile it from source<\/p>\n<p>Download the same version of apache source code<\/p>\n<pre>wget http:\/\/olex.openlogic.com\/content\/openlogic\/apache\/2.2.15\/openlogic-apache-2.2.15-all-src-1.zip<\/pre>\n<pre>unzip openlogic-apache-2.2.15-all-src-1.zip<\/pre>\n<pre>cd apache-2.2.15-src\/modules\/cache\/<\/pre>\n<pre>apxs -i -a -c mod_file_cache.c<\/pre>\n<p>It will automatically enable the file_cache module in your httpd.conf<\/p>\n<pre>cat\u00a0\/etc\/httpd\/conf\/httpd.conf<\/pre>\n<p>LoadModule file_cache_module \u00a0\/usr\/lib64\/httpd\/modules\/mod_file_cache.so<\/p>\n<p>Now start the apache server by using the init scripts<\/p>\n<pre>\/etc\/init.d\/httpd start<\/pre>\n<p><span style=\"color: #008000;\"><strong>PHP Installation<\/strong><\/span><\/p>\n<p>Kaltura requires some additional php extensions, so you need to install those extensions too. Run the following command \u00a0to install php, php-cli and the additional extensions<\/p>\n<pre>yum install php php-cli php-devel php-gd php-mbstring php-xml php-pecl-memcache.x86_64 php-pecl-memcached.x86_64 php-mysql php-pecl-apc php-bcmath<\/pre>\n<p>Its always wise to create a phpinfo file to check the LAMP Server information<\/p>\n<pre>vim \/var\/www\/html\/phpinfo.php<\/pre>\n<pre>&lt;?php<\/pre>\n<pre>phpinfo();<\/pre>\n<pre>?&gt;<\/pre>\n<p>Now open the \/etc\/php.ini file and enable the request_option with the value &#8221; CGP &#8221;<\/p>\n<pre>vim \/etc\/php.ini<\/pre>\n<pre>request_order = \"CGP\"<\/pre>\n<p>Change the date.timezone values to your timezone value<\/p>\n<pre>date.timezone = Asia\/Delhi<\/pre>\n<pre>date.default_latitude = 28.40<\/pre>\n<pre>date.default_longitude = 77.13<\/pre>\n<p>Note : All the date.timezone information are avail at\u00a0<a href=\"http:\/\/php.net\/manual\/en\/datetime.configuration.php\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/php.net\/manual\/en\/datetime.configuration.php <\/a>. Please check it for your timezone values<\/p>\n<p><span style=\"color: #008000;\"><strong>MySQL Installation<\/strong><\/span><\/p>\n<pre>yum install mysql mysql-server mysql-devel<\/pre>\n<p>Set MySQL password<\/p>\n<pre>\/usr\/bin\/mysqladmin -u root password 'kaltura'<\/pre>\n<p>You can login mysql by using the following command<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>You need to set mysql default character to UTF-8 and also add the following lines in it<\/p>\n<pre>lower_case_table_names = 1<\/pre>\n<pre>thread_stack = 262144<\/pre>\n<pre>open_files_limit = 20000<\/pre>\n<p>Open my.cnf file<\/p>\n<pre>vim \/etc\/my.cnf<\/pre>\n<pre>[mysqld]<\/pre>\n<pre>datadir=\/var\/lib\/<\/pre>\n<pre>mysqlsocket=\/var\/lib\/mysql\/mysql.sock<\/pre>\n<pre>user=mysql<\/pre>\n<pre># Disabling symbolic-links is recommended to prevent assorted security risks<\/pre>\n<pre>symbolic-links=0<\/pre>\n<pre>character-set-server = utf8<\/pre>\n<pre>lower_case_table_names = 1<\/pre>\n<pre>thread_stack = 262144<\/pre>\n<pre>open_files_limit = 20000\r\n[mysqld_safe]<\/pre>\n<pre>log-error=\/var\/log\/mysqld.log<\/pre>\n<pre>pid-file=\/var\/run\/mysqld\/mysqld.pid<\/pre>\n<p>[client]<\/p>\n<pre>default-character-set = utf8<\/pre>\n<pre>save and quit the file.<\/pre>\n<p><span style=\"color: #008000;\"><strong>Curl Installation<\/strong><\/span><\/p>\n<p>Kaltura requires curl, run the following command to install curl and its development packages<\/p>\n<pre>yum install libcurl-devel perl-WWW-Curl python-pycurl curl.x86_64 libcurl<\/pre>\n<p><span style=\"color: #008000;\"><strong>Memcached Installation<\/strong><\/span><\/p>\n<pre>yum install memcached libmemcached libmemcached-devel php-pecl-memcache python-memcached.noarch perl-Cache-Memcached.noarch<\/pre>\n<p><span style=\"color: #008000;\"><strong>ImageMagick Installation<\/strong><\/span><\/p>\n<pre>yum install ImageMagick-c++ ImageMagick-c++-devel ImageMagick-devel ImageMagick-perl ImageMagick autotrace<\/pre>\n<p>Kaltura requires some additional 32 bit packages in 64 bit host<\/p>\n<pre>yum install zlib.i686 glibc.i686 ncurses-libs freetype bzip2-libs<\/pre>\n<p><span style=\"color: #008000;\"><strong>Java Runtime Environment Installation<\/strong><\/span><\/p>\n<pre>wget http:\/\/download.oracle.com\/otn-pub\/java\/jdk\/7u5-b05\/jre-7u5-linux-x64.rpm?AuthParam=1341060304_96e260b78fd3b2a30f05f2353152170d<\/pre>\n<pre>mv jre-7u5-linux-x64.rpm\\?AuthParam\\=1341060304_96e260b78fd3b2a30f05f2353152170d jre-7u5-linux-x64.rpm<\/pre>\n<pre>rpm -ivh jre-7u5-linux-x64.rpm<\/pre>\n<p><span style=\"color: #008000;\"><strong>Pentaho data integration<\/strong><\/span><\/p>\n<p>The pentaho data integration package (version 3.2) is required for the analytics module. It should be downloaded and extracted to the\/usr\/local\/pentaho\/pdi\u00a0directory<\/p>\n<p>Create the \/usr\/local\/pentaho\/ directory.<\/p>\n<pre>mkdir \/usr\/local\/pentaho\/<\/pre>\n<p>Change to the\/usr\/local\/pentaho\/directory.<\/p>\n<pre>cd \/usr\/local\/pentaho\/<\/pre>\n<p>Download the pentaho data-integration package.<\/p>\n<pre>wget http:\/\/sourceforge.net\/projects\/pentaho\/files\/Data%20Integration\/3.2.0-stable\/pdi-ce-3.2.0-stable.tar.gz\/download<\/pre>\n<p>Extract the pentaho data-integration package.<\/p>\n<pre>tar xvfz pdi-ce-3.2.0-stable.tar.gz -C \/usr\/local\/pentaho<\/pre>\n<p>Rename the data-integration root directory into pdi.<\/p>\n<p>mv data-integration pdi<\/p>\n<p><span style=\"color: #008000;\"><strong>Mail Server<\/strong><\/span><\/p>\n<p>Either you can install postfix or sendmail<\/p>\n<pre>yum install postfix<\/pre>\n<p><span style=\"color: #008000;\"><strong>Xymon &#8211; Monitoring Tool<\/strong><\/span><\/p>\n<p>Download Xymon from sourceforge<\/p>\n<pre>wget http:\/\/sourceforge.net\/projects\/xymon\/files\/latest\/download<\/pre>\n<p>Xymon requires rrdtools and pcre. So install those packages before to proceed<\/p>\n<pre>yum install rrdtool rrdtool-devel rrdtool-tcl rrdtool-ruby rrdtool-python rrdtool-php rrdtool-perl\u00a0pcre pcre-static pcre-devel mingw32-pcre.noarch<\/pre>\n<p>After completing this installation start the xymon installation. You can install Xymon by simple steps<\/p>\n<pre>.\/configure<\/pre>\n<pre>make<\/pre>\n<pre>make install<\/pre>\n<p>During the installation it will prompt you many queries, give the proper answer else the installation process will exit and dont forget to disable the selinux<\/p>\n<p><span style=\"color: #008000;\"><strong>Disable SELinux <\/strong><\/span><\/p>\n<pre>vim \/etc\/sysconfig\/selinux<\/pre>\n<pre>selinux = disabled<\/pre>\n<p>Now fireup your browser to www.kaltura.org and download<strong> Kaltura CE 5 Eagle<\/strong><\/p>\n<pre>wget http:\/\/www.kaltura.org\/releases\/kalturaCE\/29044<\/pre>\n<pre>tar -xzvf kalturaCE_v5.0.0.tgz<\/pre>\n<pre>cd\u00a0kalturaCE_v5.0.0<\/pre>\n<p>Run the php installation scripts<\/p>\n<pre>php install.php<\/pre>\n<p>Thank you for installing Kaltura Video Platform &#8211; Community Edition<br \/>\nIn order to improve Kaltura Community Edition, we would like your permission to send system data to Kaltura.This information will be used exclusively for improving our software and our service quality. I agree (Y\/n)&gt;<strong> y<\/strong><\/p>\n<p>If you wish, please provide your email address so that we can offer you future assistance (leave empty to pass)&gt; <strong>mailbox@dummyurl.com<\/strong><\/p>\n<p>Please provide the following information:<\/p>\n<p>The following apachectl script has been detected: \/usr\/sbin\/apachectl. Do you want to use this script to run your Kaltura application? Leave empty to use or provide a pathname to an alternative apachectl script on your server.&gt; <strong>y<\/strong><\/p>\n<p>The following PHP binary has been detected: \/usr\/bin\/php. Do you want to use this script to run your Kaltura application? Leave empty to use or provide a pathname to an alternative PHP binary on your server.&gt; <strong>y<\/strong><\/p>\n<p>Full target directory path for Kaltura application (leave empty for \/opt\/kaltura)&gt;<\/p>\n<p>Please enter the domain name\/virtual hostname that will be used for the Kaltura server (without http:\/\/)&gt; <strong>newkaltura.info<\/strong><\/p>\n<p>Your primary system administrator email address&gt;\u00a0<strong>mailbox@dummyurl.com<\/strong><\/p>\n<p>The password you want to set for your primary administrator&gt; kaltura<\/p>\n<p>Database host (leave empty for &#8216;localhost&#8217;)&gt;<\/p>\n<p>Database port (leave empty for &#8216;3306&#8217;)&gt;<\/p>\n<p>Database username (with create &amp; write privileges)&gt; <strong>root<\/strong><\/p>\n<p>Database password (leave empty for no password)&gt; <strong>kaltura<\/strong><\/p>\n<p>The URL to your xymon\/hobbit monitoring location. Xymon is an optional installation. Leave empty to set manually laterExamples:http:\/\/www.xymondomain.com\/xymon\/http:\/\/www.xymondomain.com\/hobbit\/&gt; <strong>http:\/\/abcdnewkaltura.info<\/strong><\/p>\n<p>Verifing prerequisites<\/p>\n<p>Checking for leftovers from a previous installation<\/p>\n<p>Installation is now ready to begin. Start installation now? (Y\/n)&gt; <strong>y<\/strong><\/p>\n<p>Copying application files to \/opt\/kalturacurrent working dir is \/usr\/local\/src\/kalturaCE_v5.0.0<\/p>\n<p>Copying binaries for linux 64bitReplacing configuration tokens in files<\/p>\n<p>Changing permissions of directories and files<\/p>\n<p>Creating and initializing &#8216;kaltura&#8217; database<\/p>\n<p>Creating and initializing &#8216;kaltura_sphinx_log&#8217; database<\/p>\n<p>Creating data warehouse<\/p>\n<p>Creating Dynamic Enums<\/p>\n<p>Configure sphinx<\/p>\n<p>Populate sphinx tables<\/p>\n<p>Changing permissions of directories and files<\/p>\n<p>Creating system symbolic links<\/p>\n<p>Deploying uiconfs in order to configure the application<\/p>\n<p>Creating the uninstaller<\/p>\n<p>Running the generate script<\/p>\n<p>Running the batch manager<\/p>\n<p>Running the sphinx search deamon<\/p>\n<p>Executing sphinx dameon<\/p>\n<p>Executing in background nohup \/opt\/kaltura\/app\/plugins\/sphinx_search\/scripts\/watch.daemon.onprem.sh<\/p>\n<p>Executing in background chkconfig sphinx_watch.sh on<\/p>\n<p>Changing permissions of directories and files<\/p>\n<p>postdrop: warning: unable to look up public\/pickup: No such file or directory<\/p>\n<p>Post installation email cannot be sent<\/p>\n<p>Installation Completed Successfully.<\/p>\n<p>Your Kaltura Admin Console credentials:<\/p>\n<p>System Admin user:\u00a0mailbox@dummyurl.com<\/p>\n<p>System Admin password: kaltura<\/p>\n<p>Please keep this information for future use.<\/p>\n<p>To start using Kaltura, please complete the following steps:<\/p>\n<p>1. Add the following line to your \/etc\/hosts file: 127.0.0.1 newkaltura.info<\/p>\n<p>2. Add the following line to your Apache configurations file (Usually called httpd.conf or apache2.conf): Include \/opt\/kaltura\/app\/configurations\/apache\/my_kaltura.conf<\/p>\n<p>3. Restart apache<\/p>\n<p>4. Browse to your Kaltura start page at: http:\/\/newkaltura.info\/start<\/p>\n<p>Open your httpd.conf file and add the following line in the appropriate section and restart the apache server<\/p>\n<p>Include \/opt\/kaltura\/app\/configurations\/apache\/my_kaltura.conf<\/p>\n<p><span style=\"color: #008000;\"><strong>Restart Apache server<\/strong><\/span><\/p>\n<p>\/etc\/init.d\/httpd restart<\/p>\n<p>Now fireup your browser with <strong>http:\/\/newkaltura.info <\/strong>you will get Kaltura page in your screen as shown below<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-1576 size-medium\" src=\"https:\/\/www.sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/Screenshot-Kaltura-Video-Platfrom-Home-Page-Chromium1-300x177.png\" alt=\"Kaltura\" width=\"300\" height=\"177\" \/><\/p>\n<p>Happy Streaming with Kaltura \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to install Kaltura? Kaltura is the world&#8217;s first Open Source Online Video Platform, providing both enterprise level commercial software and services, fully supported and<\/p>\n","protected":false},"author":17,"featured_media":5063,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[6],"tags":[207,206],"class_list":["post-1570","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-cms","tag-kaltura"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install Kaltura in CentOS - It infrastructure management<\/title>\n<meta name=\"description\" content=\"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Kaltura in CentOS - It infrastructure management\" \/>\n<meta property=\"og:description\" content=\"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-07-02T09:30:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-24T10:38:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png\" \/>\n\t<meta property=\"og:image:width\" content=\"442\" \/>\n\t<meta property=\"og:image:height\" content=\"114\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sathish\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sathish\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\"},\"author\":{\"name\":\"Sathish\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/3ad88a707a12f6b7782f8993522f15d8\"},\"headline\":\"How to install Kaltura in CentOS\",\"datePublished\":\"2012-07-02T09:30:40+00:00\",\"dateModified\":\"2024-06-24T10:38:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\"},\"wordCount\":1229,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png\",\"keywords\":[\"CMS\",\"Kaltura\"],\"articleSection\":[\"linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\",\"name\":\"How to install Kaltura in CentOS - It infrastructure management\",\"isPartOf\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png\",\"datePublished\":\"2012-07-02T09:30:40+00:00\",\"dateModified\":\"2024-06-24T10:38:20+00:00\",\"description\":\"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura\",\"breadcrumb\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png\",\"width\":442,\"height\":114},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sparksupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Kaltura in CentOS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#website\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"name\":\"SparkSupport Blog\",\"description\":\"SparkSupport Blogs\",\"publisher\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sparksupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#organization\",\"name\":\"SparkSupport\",\"url\":\"https:\/\/sparksupport.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"contentUrl\":\"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg\",\"width\":216,\"height\":44,\"caption\":\"SparkSupport\"},\"image\":{\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/3ad88a707a12f6b7782f8993522f15d8\",\"name\":\"Sathish\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g\",\"caption\":\"Sathish\"},\"url\":\"https:\/\/sparksupport.com\/blog\/author\/sathish\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install Kaltura in CentOS - It infrastructure management","description":"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/","og_locale":"en_US","og_type":"article","og_title":"How to install Kaltura in CentOS - It infrastructure management","og_description":"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura","og_url":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/","article_published_time":"2012-07-02T09:30:40+00:00","article_modified_time":"2024-06-24T10:38:20+00:00","og_image":[{"width":442,"height":114,"url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png","type":"image\/png"}],"author":"Sathish","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sathish","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#article","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/"},"author":{"name":"Sathish","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/3ad88a707a12f6b7782f8993522f15d8"},"headline":"How to install Kaltura in CentOS","datePublished":"2012-07-02T09:30:40+00:00","dateModified":"2024-06-24T10:38:20+00:00","mainEntityOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/"},"wordCount":1229,"commentCount":0,"publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png","keywords":["CMS","Kaltura"],"articleSection":["linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/","url":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/","name":"How to install Kaltura in CentOS - It infrastructure management","isPartOf":{"@id":"https:\/\/sparksupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png","datePublished":"2012-07-02T09:30:40+00:00","dateModified":"2024-06-24T10:38:20+00:00","description":"Kaltura offering different deployment option according to necessity. The various deployment options are avalible here with streps for How to install Kaltura","breadcrumb":{"@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#primaryimage","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2012\/07\/kal.png","width":442,"height":114},{"@type":"BreadcrumbList","@id":"https:\/\/sparksupport.com\/blog\/how-to-install-kaltura-in-centos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sparksupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Kaltura in CentOS"}]},{"@type":"WebSite","@id":"https:\/\/sparksupport.com\/blog\/#website","url":"https:\/\/sparksupport.com\/blog\/","name":"SparkSupport Blog","description":"SparkSupport Blogs","publisher":{"@id":"https:\/\/sparksupport.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sparksupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/sparksupport.com\/blog\/#organization","name":"SparkSupport","url":"https:\/\/sparksupport.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","contentUrl":"https:\/\/sparksupport.com\/blog\/wp-content\/uploads\/2019\/08\/cropped-logo-1.jpg","width":216,"height":44,"caption":"SparkSupport"},"image":{"@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/sparksupport.com\/blog\/#\/schema\/person\/3ad88a707a12f6b7782f8993522f15d8","name":"Sathish","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6fc7255fd6ccdc66a97dda71513dcbca3f89fb06f768ffd91dac2653e8ef6e07?s=96&d=mm&r=g","caption":"Sathish"},"url":"https:\/\/sparksupport.com\/blog\/author\/sathish\/"}]}},"_links":{"self":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/1570","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1570"}],"version-history":[{"count":0,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/posts\/1570\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media\/5063"}],"wp:attachment":[{"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1570"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1570"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sparksupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1570"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}