Unable to open remotely installed sonar on a browser

后端 未结 4 1455
醉话见心
醉话见心 2020-12-11 07:27

I have installed sonar on a remote Linux cent OS server. I have configured the database on the same server. When I start the server, I don\'t see any errors in the logs and

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-11 07:40

    My problem was, I had to allow port in iptables and not append(default) it but add it in front of rule "drop all", which negated everything after.

    command:

    iptables -I INPUT 1 -p tcp --dport 9000 -j ACCEPT
    

    where 1 - defines at which(1st) position of iptable rules to add it

提交回复
热议问题