permission denied on starting webservice Web GUI Port 9081

dschulz

ADSM.ORG Member
Joined
Dec 3, 2003
Messages
20
Reaction score
0
Points
0
Website
Visit site
Today I have installed two BAClients Version 8.1.10.0 (Linux only) for use the new File Restore Web GUI on Port 9081.

One works fine and I can access the webpage https://Client-02:9081/bagui
but on other Client I got an error when starting the webservice and page is not available.

Client-01:/etc/init.d # systemctl status webserver.service
webserver.service - LSB: starts and stops the liberty profile for IBM Spectrum Protect Backup-Archive Web UI
Loaded: loaded (/etc/init.d/webserver; generated; vendor preset: disabled)
Active: failed (Result: exit-code) since Mon 2020-11-16 13:52:01 CET; 1min 46s ago
Docs: man:systemd-sysv-generator(8)
Process: 2914 ExecStart=/etc/init.d/webserver start (code=exited, status=126)

Nov 16 13:52:00 Client-01 systemd[1]: Starting LSB: starts and stops the liberty profile for IBM Spectrum Protect Backup-Archive Web UI...
Nov 16 13:52:00 Client-01 su[2920]: (to tdpvmware) root on none
Nov 16 13:52:01 Client-01 webserver[2914]: -bash: /etc/init.d/webserver: Permission denied
Nov 16 13:52:01 Client-01 systemd[1]: webserver.service: Control process exited, code=exited status=126
Nov 16 13:52:01 Client-01 systemd[1]: Failed to start LSB: starts and stops the liberty profile for IBM Spectrum Protect Backup-Archive Web UI.
Nov 16 13:52:01 Client-01 systemd[1]: webserver.service: Unit entered failed state.
Nov 16 13:52:01 Client-01 systemd[1]: webserver.service: Failed with result 'exit-code'.

Any ideas?
 
Got it!

The tivoli directory had the wrong permission rights:
client:/opt # drwx------ 4 root root 4096 Nov 13 13:01 tivoli/

update to read and execute:
client:/opt # chmod +rx tivoli/

The service webserver.service can now bestarted

● webserver.service - LSB: starts and stops the liberty profile for IBM Spectrum Protect Backup-Archive Web UI
Loaded: loaded (/etc/init.d/webserver; generated; vendor preset: disabled)
Active: active (exited) since Mon 2020-12-07 11:29:24 CET; 21min ago
Docs: man:systemd-sysv-generator(8)
Process: 10066 ExecStart=/etc/init.d/webserver start (code=exited, status=0/SUCCESS)
 
Back
Top