How to solve i am trying but not found such script on app server 2

There are new requirements to automate a backup process that was performed manually by the xFusionCorp Industries system admins team earlier. To automate this task, the team has developed a new bash script xfusioncorp.sh. They have already copied the script on all required servers, however they did not make it executable on one the app server i.e App Server 2 in Stratos Datacenter.

Please give executable permissions to /tmp/xfusioncorp.sh script on App Server 2. Also make sure every user can execute it.

Hi @yash-hack,

Welcome!

The solution is quite easy; if you need to ssh to the server, you need to execute the following:

chmod +x /tmp/xfusioncorp.sh
  • chmod: change file mod
  • +x: add the eXecutable it
  • /tmp/xfusioncorp.sh the file you want to change

A brief course on Linux might be beneficial.

Hope it’s useful.

Matteo

1 Like