{"id":3628,"date":"2016-04-02T10:33:16","date_gmt":"2016-04-02T10:33:16","guid":{"rendered":"https:\/\/cpanelplesk.com\/wp62\/?p=3628"},"modified":"2021-02-06T05:53:25","modified_gmt":"2021-02-06T05:53:25","slug":"install-lnmp-centos-7-2","status":"publish","type":"post","link":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/","title":{"rendered":"How to install LNMP on CentOS 7"},"content":{"rendered":"<p>LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version.<!--more--><\/p>\n<h3>INSTALL NGINX<\/h3>\n<p>To proceed further login to your server via putty.<br \/>\nNginx package is not included in CentOS 7 by default, So we have to add Nginx yum repo\u00a0 by giving following command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">rpm -Uvh http:\/\/nginx.org\/packages\/centos\/7\/noarch\/RPMS\/nginx-release-\r\ncentos-7-0.el7.ngx.noarch.<\/pre>\n<\/div>\n<p>Next, use the following simple command to install Nginx on CentOS 7.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">yum install nginx \u2013y<\/pre>\n<\/div>\n<p>You can test Nginx is up and running for the very first time using this command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl start nginx.service<\/pre>\n<\/div>\n<p>Now enable it to automatically run each time your server is booting:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl enable nginx.service<\/pre>\n<\/div>\n<p>You can use your server IP to access it, Nginx default page should be seen there.<br \/>\nTo check Nginx installed version, you can sue following command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">nginx \u2013v<\/pre>\n<\/div>\n<h3>INSTALL PHP5-FPM<\/h3>\n<p>PHP can also be easily installed via YUM, This is a very basic command to install PHP 5 plus its modules.<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">yum install php php-mysql php-fpm<\/pre>\n<\/div>\n<p>However, in some cases your apps or scripts (like WordPress and its many plugins) require other PHP modules, so you can simply use the following command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true\">yum install php php-fpm php-common php-cli php-devel \r\nphp-gd php-imap php-intl php-mysql php-process php-xml php-xmlrpc \r\nphp-zts \u2013y<\/pre>\n<\/div>\n<p>Now we need to adjust some php configuration, edit the php.ini file using your favorite editor.<\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">nano \/etc\/php.ini<\/pre>\n<p>Then look for the line with <strong>cgi.fix_pathinfo<\/strong>. Remove the<strong> ;<\/strong> and set this value to <strong>0<\/strong>.<\/p>\n<p>Once done, save file and exit the editor.<br \/>\nNext, edit<strong> php-fpm configuration<\/strong> file:<\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">nano \/etc\/php-fpm.d\/www.conf<\/pre>\n<p>and edit the line Listen = <strong>127.0.0.1:9000<\/strong> replace whit this:<\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">listen = \/var\/run\/php-fpm\/php-fpm.sock<\/pre>\n<p>Also find the section called <strong>\u201cUnix\/user group of processes\u201d<\/strong> then change Apache to Nginx.<br \/>\nOnce done, save and exit.<\/p>\n<p>Now start php-fpm using following command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">Systemctl enable php-fpm.service<\/pre>\n<\/div>\n<h3>NGINX (CONFIGURATION)<\/h3>\n<p>Open and edit the default Nginx (virtual hosts file) configuration file using your favorite editor:<\/p>\n<div class=\"cpanel-files\"><\/div>\n<pre class=\"lang:default decode:true \">Nano \/etc\/nginx\/conf.d\/default.conf<\/pre>\n<p>Now add an index.php as the first value of index directive to allow PHP index files to be served when a directory is requested:<br \/>\nAlso change the structure from this:<br \/>\n<img fetchpriority=\"high\" decoding=\"async\" class=\"alignnone wp-image-3625 size-full pleslwp\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\" alt=\"nginx\" width=\"624\" height=\"130\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg 624w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3-300x63.jpg 300w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3-320x67.jpg 320w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3-239x50.jpg 239w\" sizes=\"(max-width: 624px) 100vw, 624px\" \/><br \/>\nTo this:<\/p>\n<p><img decoding=\"async\" class=\"alignnone wp-image-3626 size-full pleslwp\" src=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1.jpg\" alt=\"Nginx2\" width=\"702\" height=\"223\" srcset=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1.jpg 702w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1-300x95.jpg 300w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1-636x202.jpg 636w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1-320x102.jpg 320w, https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/Nginx2-1-239x76.jpg 239w\" sizes=\"(max-width: 702px) 100vw, 702px\" \/><\/p>\n<p>Also change the server_name directive to point to your server\u2019s domain name or public IP address.<br \/>\nUncomment some lines that define error processing routines especially error 404.<\/p>\n<p>Then scroll down and find a section that says \u201cpass the PHP scripts to FastCGI server listening on 127.0.0.1:9000\u201d un-comment the lines and make changes as follows:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">location ~ \\.php$ {\r\n    try_files $uri =404;\r\n    fastcgi_pass unix:\/var\/run\/php-fpm\/php-fpm.sock;\r\n    fastcgi_index index.php;\r\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n    include fastcgi_params;\r\n}<\/pre>\n<\/div>\n<p>Save and exit and now restart the Nginx services so the changes can be applied:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl restart nginx.service<\/pre>\n<\/div>\n<p>Now create info.php page to check that Nginx and php-fpm can process any php script:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">echo \"&lt;?php phpinfo(); ?&gt;\" &gt; \/usr\/share\/nginx\/html\/info.php<\/pre>\n<\/div>\n<p>Next, open p newly created file into your browser.<\/p>\n<h3>INSTALL MARIADB<\/h3>\n<p>It is time to install MariaDB server. The command is simple and done via yum:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">yum install mariadb-server mariadb \u2013y<\/pre>\n<\/div>\n<p>Start MariaDB service using systemctl command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl start mariadb.service<\/pre>\n<\/div>\n<p>and enable it on boot:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl enable mariadb.service<\/pre>\n<\/div>\n<p>Configure MariaDB setup like setting up your MySQL root password. Issue this command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">mysql_secure_installation<\/pre>\n<\/div>\n<p>You will see a serious of questions, Just answer them accordingly. The main important part is to define your root password.<br \/>\nNow test your newly installed MariaDB by logging in as root:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">mysql -u root \u2013p<\/pre>\n<\/div>\n<h3>INSTALL PHPMYADMIN<\/h3>\n<p>This PhpMyadmin package is not available in CentOS 7.0 default repositories. So you have to add third-party repo like EPEL. Simply run this command to do that:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">wget http:\/\/download.fedoraproject.org\/pub\/epel\/beta\/7\/x86_64\/epel-\r\nrelease-7-0.2.noarch.rpm\r\nrpm -ivh epel-release*\r\nrm epel-release*<\/pre>\n<\/div>\n<p>Now use yum to install phpmyadmin:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">yum install phpmyadmin \u2013y<\/pre>\n<\/div>\n<p>Now to make PhpMyAdmin accessible via web, you have to create a symbolic link from the PMA installation files to your Nginx document root directory using this command:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">ln -s \/usr\/share\/phpMyAdmin \/usr\/share\/nginx\/html<\/pre>\n<\/div>\n<p>Now restart php-fpm:<\/p>\n<div class=\"command-sh\">\n<pre class=\"lang:default decode:true \">systemctl restart php-fpm.service<\/pre>\n<\/div>\n<p>That\u2019s it. Now you can test it on your browser:<\/p>\n<p><strong>http:\/\/ip-or-domain name\/phpMyAdmin<\/strong> and default login page of phpMyAdmin should be displayed.<\/p>\n<p>That\u2019s all about LNMP setup on CentOS 7.<br \/>\nYou may also like to know how to set up <a href=\"https:\/\/cpanelplesk.com\/wp62\/build-working-debian-server-apache-php-mysql\/\">Debian server with Apache,PHP and MySQL<\/a>. So, do check it out.<br \/>\nGive your opinion below if you experience any issues or to discuss your ideas and experiences.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version. [&#8230;]<\/p>\n<p><a class=\"understrap-read-more-link\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\">Continue Reading&#8230;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,14],"tags":[],"class_list":["post-3628","post","type-post","status-publish","format-standard","hentry","category-cpanel","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to install LNMP on CentOS 7 - cPanel Plesk<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to install LNMP on CentOS 7 - cPanel Plesk\" \/>\n<meta name=\"twitter:description\" content=\"LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version. [...]Continue Reading...\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Seemab Saleem\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\"},\"author\":{\"name\":\"Seemab Saleem\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\"},\"headline\":\"How to install LNMP on CentOS 7\",\"datePublished\":\"2016-04-02T10:33:16+00:00\",\"dateModified\":\"2021-02-06T05:53:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\"},\"wordCount\":617,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\",\"articleSection\":[\"Cpanel\",\"Linux\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\",\"name\":\"How to install LNMP on CentOS 7 - cPanel Plesk\",\"isPartOf\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\",\"datePublished\":\"2016-04-02T10:33:16+00:00\",\"dateModified\":\"2021-02-06T05:53:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg\",\"width\":624,\"height\":130},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cpanelplesk.com\/wp62\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install LNMP on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#website\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/\",\"name\":\"cPanel Plesk\",\"description\":\"Blog on famous hosting control panels\",\"publisher\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13\",\"name\":\"Farooq Omer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"contentUrl\":\"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png\",\"width\":300,\"height\":44,\"caption\":\"Farooq Omer\"},\"logo\":{\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648\",\"name\":\"Seemab Saleem\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g\",\"caption\":\"Seemab Saleem\"},\"description\":\"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!\",\"sameAs\":[\"https:\/\/cpanelplesk.com\/wp62\"],\"url\":\"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install LNMP on CentOS 7 - cPanel Plesk","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:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/","twitter_card":"summary_large_image","twitter_title":"How to install LNMP on CentOS 7 - cPanel Plesk","twitter_description":"LNMP stands for Linux, Nginx, MySQL and PHP. In this this article we will show you how to set up working Nginx server to host your websites on your VPS with CentOS 7 version. [...]Continue Reading...","twitter_image":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg","twitter_misc":{"Written by":"Seemab Saleem","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#article","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/"},"author":{"name":"Seemab Saleem","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648"},"headline":"How to install LNMP on CentOS 7","datePublished":"2016-04-02T10:33:16+00:00","dateModified":"2021-02-06T05:53:25+00:00","mainEntityOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/"},"wordCount":617,"commentCount":0,"publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg","articleSection":["Cpanel","Linux"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/","url":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/","name":"How to install LNMP on CentOS 7 - cPanel Plesk","isPartOf":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage"},"image":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage"},"thumbnailUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg","datePublished":"2016-04-02T10:33:16+00:00","dateModified":"2021-02-06T05:53:25+00:00","breadcrumb":{"@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#primaryimage","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2016\/03\/nginx-3.jpg","width":624,"height":130},{"@type":"BreadcrumbList","@id":"https:\/\/cpanelplesk.com\/wp62\/install-lnmp-centos-7-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cpanelplesk.com\/wp62\/"},{"@type":"ListItem","position":2,"name":"How to install LNMP on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/cpanelplesk.com\/wp62\/#website","url":"https:\/\/cpanelplesk.com\/wp62\/","name":"cPanel Plesk","description":"Blog on famous hosting control panels","publisher":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cpanelplesk.com\/wp62\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/c78ae1cf9451a09592fb9697d69c0c13","name":"Farooq Omer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","contentUrl":"https:\/\/cpanelplesk.com\/wp62\/wp-content\/uploads\/2020\/11\/cpanelplesk.png","width":300,"height":44,"caption":"Farooq Omer"},"logo":{"@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/73d573cc7eaaf6625cf0dbd72191a648","name":"Seemab Saleem","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cpanelplesk.com\/wp62\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a87ff2e53b03e6839250e5278a6bd46?s=96&d=mm&r=g","caption":"Seemab Saleem"},"description":"Linux Server Administrator, Web Hosting engineer. I'm dealing with Linux servers since 2014. I started this blog to share the work i love with the world . let me know if you need any assistance. Thanks!!","sameAs":["https:\/\/cpanelplesk.com\/wp62"],"url":"https:\/\/cpanelplesk.com\/wp62\/author\/cmb\/"}]}},"_links":{"self":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/3628","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/comments?post=3628"}],"version-history":[{"count":0,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/posts\/3628\/revisions"}],"wp:attachment":[{"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/media?parent=3628"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/categories?post=3628"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelplesk.com\/wp62\/wp-json\/wp\/v2\/tags?post=3628"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}