Process[Web Server] is stopped, Process[ElasticSearch] is stopped, SonarQube is stopped

2023-12-30 19:06:04,228 main ERROR Null object returned for Delete in DefaultRolloverStrategy.
2023.12.30 19:06:11 INFO app[o.s.a.SchedulerImpl] Process[es] is up
2023.12.30 19:06:11 INFO app[o.s.a.ProcessLauncherImpl] Launch process[WEB_SERVER] from [C:\Sonar\sonarqube-developer-10.3.0.82913\sonarqube-10.3.0.82913]: C:\Program Files\Java\jdk-17\bin\java -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djava.io.tmpdir=C:\Sonar\sonarqube-developer-10.3.0.82913\sonarqube-10.3.0.82913\temp -XX:-OmitStackTraceInFastThrow --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED --add-opens=java.management/sun.management=ALL-UNNAMED --add-opens=jdk.management/com.sun.management.internal=ALL-UNNAMED -Dcom.redhat.fips=false -Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -Dhttp.nonProxyHosts=localhost|127.*|[::1] -cp ./lib/sonar-application-10.3.0.82913.jar;C:\Sonar\sonarqube-developer-10.3.0.82913\sonarqube-10.3.0.82913\lib\jdbc\mssql\mssql-jdbc-12.4.1.jre11.jar org.sonar.server.app.WebServer C:\Sonar\sonarqube-developer-10.3.0.82913\sonarqube-10.3.0.82913\temp\sq-process16113126275327068927properties
WARNING: A terminally deprecated method in java.lang.System has been called
WARNING: System::setSecurityManager has been called by org.sonar.process.PluginSecurityManager (file:/C:/Sonar/sonarqube-developer-10.3.0.82913/sonarqube-10.3.0.82913/lib/sonar-application-10.3.0.82913.jar)
WARNING: Please consider reporting this to the maintainers of org.sonar.process.PluginSecurityManager
WARNING: System::setSecurityManager will be removed in a future release
2023.12.30 19:06:25 INFO app[o.s.a.SchedulerImpl] Process[Web Server] is stopped
2023.12.30 19:06:25 INFO app[o.s.a.SchedulerImpl] Process[ElasticSearch] is stopped
2023.12.30 19:06:25 INFO app[o.s.a.SchedulerImpl] SonarQube is stopped

my log files are :
es.log:
es.log (52.7 KB)
Sonar.log:
sonar.log (18.5 KB)
Web.log:
web.log (106.8 KB)

I been working on this for 1.5 days , need serious help to complete my project.

Only unserious help here! :smiley:

From the logs:

2023.12.30 19:29:41 INFO  web[][o.s.p.ProcessEntryPoint] Starting Web Server
2023.12.30 19:29:41 INFO  web[][o.s.s.a.TomcatHttpConnectorFactory] Starting Tomcat on port 9001
....
Caused by: java.net.BindException: Address already in use: bind

So it looks like something is already started on port 9001 (which you would have had to have manually defined as sonar.web.port in your conf/sonar.properties. This is probably conflicting with your Elasticsearch process, where sonar.search.port defaults to 9001. You should make sure these are set to different ports (or leave the defaults if you have nothing else running on port 9000).