Starting up Metasploit Framework in Kali Linux 2.0
Due to the above-mentioned changes in the metasploit-framework package, there are some minor changes in how Metasploit is started in Kali – specifically, there is no longer a metasploit service. This is how you start up the Metasploit Framework with database support in Kali Linux 2.0:
# Start the Postgresql Database
sh /etc/init.d/postgresql start
# Initialize the Metasploit Framework Database
msfdb init
# Run msfconsole
msfconsole
##查看所有当前启动的服务的方法
service --status-all
service postgresql status
来源:oschina
链接:https://my.oschina.net/u/2308739/blog/550991