Assuming that splunkweb is configured to use the default port 8000, and you did not see anything insightful in the logs that sowings has mentioned, then try test starting up splunkweb with the following commands in $SPLUNK_HOME:
# cd splunk
# . bin/setSplunkEnv
# bin/python lib/python2.7/site-packages/splunk/appserver/mrsparkle/root.py start
If splunkweb fails to start using this method, you should see errors, otherwise you should only see a blinking cursor.
For example, in this case there was permission issues with the cpdispatch file:
Traceback (most recent call last):
File "lib/python2.7/site-packages/splunk/appserver/mrsparkle/root.py", line 543, in
logger.error('Unable to start splunkweb')
File "/data/splunk/lib/python2.7/logging/ init.py", line 1158, in error
self._log(ERROR, msg, args, **kwargs)
File "/data/splunk/lib/python2.7/logging/init.py", line 1249, in _log
record = self.makeRecord(self.namehttp://self.namehttp://self.namehttp://self.namehttp://self.namehttp://self.name, level, fn, lno, msg, args, exc_info, func, extra)
File "lib/python2.7/site-packages/splunk/appserver/mrsparkle/root.py", line 60, in makeRecord
from splunk.appserver.mrsparkle.lib.util import get_request_id
File "/data/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/init.py", line 13, in
from lib.decorators import *
File "/data/splunk/lib/python2.7/site-packages/splunk/appserver/mrsparkle/lib/decorators.py", line 2, in
import cherrypy
File "/data/splunk/lib/python2.7/site-packages/cherrypy/ init_.py", line 159, in
from cherrypy import _cpdispatch as dispatch
ImportError: cannot import name _cpdispatch
... View more