Difference between revisions of "CentOS 7.x Install nessus"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>CentOS_7.x_nessus|CentOS 7.x nessus</yambe:breadcrumb> =CentOS 7.x Install nessus= To Install nessus on CentOS 7.x use following steps: # Disable firewalld...")
 
m
 
Line 1: Line 1:
<yambe:breadcrumb>CentOS_7.x_nessus|CentOS 7.x nessus</yambe:breadcrumb>
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Vulnerability Assessment and Penetration Testing (VAPT) tools|VAPT Tools]] > [[CentOS 7.x nessus|Nessus]] > [[CentOS 7.x Install nessus]]
=CentOS 7.x Install nessus=


To Install nessus on CentOS 7.x use following steps:
To Install nessus on CentOS 7.x use following steps:
Line 27: Line 26:




<yambe:breadcrumb>CentOS_7.x_nessus|CentOS 7.x nessus</yambe:breadcrumb>
 
[[Main Page|Home]] > [[CentOS]] > [[CentOS 7.x]] > [[CentOS 7.x Vulnerability Assessment and Penetration Testing (VAPT) tools|VAPT Tools]] > [[CentOS 7.x nessus|Nessus]] > [[CentOS 7.x Install nessus]]

Latest revision as of 09:41, 25 August 2022

Home > CentOS > CentOS 7.x > VAPT Tools > Nessus > CentOS 7.x Install nessus

To Install nessus on CentOS 7.x use following steps:

  1. Disable firewalld and selinux
    systemctl stop firewalld
    systemctl disable firewalld
    setenforce 0
    #set SELINUX=disabled in below file
    vim /etc/sysconfig/selinux
  2. Copy nessus rpm and use "yum localinstall" to install it. For Example
    yum localinstall Nessus-8.1.2-es7.x86_64.rpm
  3. Start and enable nessusd
    systemctl start nessusd
    systemctl enable nessusd #Gives error
  4. Access nessus at https://FQDN:8834/ port
  5. Create root account with desired password
  6. Paste activation key for 7 day trial
  7. Wait for installer to download plugins and compile them. It might take considerable time.



Home > CentOS > CentOS 7.x > VAPT Tools > Nessus > CentOS 7.x Install nessus