This is an Error of zOS I dunno which file is trying to open, I doubt that 
you can even run the script in an SSH session with something like this

Try the following in a machine with access by SSH to the zOS Agent, 
create a hello.sh file locally with the script

pwd
echo foo
date

Execute an ssh command like this (you have to change the access method, 
user, and host)

ssh AGENT_USER@LINUX_IP 'sh -s' < hello.sh

ssh AGENT_USER@LINUX_IP 'bash -s' < hello.sh

I am not wrong you will see the same error 

this is a similar issue I have found in a IBM 
forum https://ibmmainframes.com/about67532.html
El lunes, 1 de noviembre de 2021 a las 5:57:33 UTC+1, adharsh...@gmail.com 
escribió:

> Yes, please find the below output.
>
> FSUM7343 cannot open □?EC□?¤IA for output : no such file or directory.
>
> On Fri, 29 Oct 2021, 1:00 pm kuisathaverat, <kuisat...@gmail.com> wrote:
>
>> Did you test other commands in the Freestyle job? try this
>>
>> #!/bin/bash
>> pwd
>> echo foo
>> date
>>
>>
>>
>> El vie, 29 oct 2021 a las 7:21, Adharsha sri (<adharsh...@gmail.com>) 
>> escribió:
>>
>>> Hi,
>>>
>>> In /etc/profile added the below bash environment variables
>>> export _CEE_RUNOPTS=“FILETAG(AUTOCVT,AUTOTAG) POSIX(ON)”
>>> export _BPXK_AUTOCVT=ON
>>> export _TAG_REDIR_ERR=txt
>>> export _TAG_REDIR_IN=txt
>>> export _TAG_REDIR_OUT=txt
>>>
>>>
>>> And then able to run the below pipeline job 
>>>
>>> node('hostname')
>>> {
>>> stage('test')
>>> {
>>> sh "pwd"
>>> sh " hostname"
>>> sh "date"
>>> }}
>>>
>>> But when running the below freestyle job , gettingerror
>>>
>>> Execute shell:
>>> date
>>>
>>> Error:
>>>
>>> +□?A/EA
>>> /tmp/jenkjns123456789.sh 1: FSUM7351 not found 
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> On Thu, 28 Oct 2021, 9:51 pm Ivan Fernandez Calvo, <kuisat...@gmail.com> 
>>> wrote:
>>>
>>>> should not, the FreeStyle "Execute shell" step and the Pipeline sh step 
>>>> work more or less in the same way, I never see a fail one when the other 
>>>> works. In any case, it is difficult to help you if you do not provide more 
>>>> info about what you did, what does not work exactly, Why does not work, 
>>>> what error you see in the Jenkins logs (if any), what error you see in the 
>>>> build logs(if any), What did you change in the Agents, and so on. 
>>>>
>>>> El jueves, 28 de octubre de 2021 a las 13:38:06 UTC+2, 
>>>> adharsh...@gmail.com escribió:
>>>>
>>>>> Now I am able run shell commands using pipeline job but unable to run 
>>>>> using freestyle job. Will there be any difference 
>>>>>
>>>>> On Wed, 27 Oct 2021, 10:10 pm Adharsha sri, <adharsh...@gmail.com> 
>>>>> wrote:
>>>>>
>>>>>> Thank you , will check on that part.
>>>>>>
>>>>>> On Wed, 27 Oct 2021, 6:45 pm Ivan Fernandez Calvo, <
>>>>>> kuisat...@gmail.com> wrote:
>>>>>>
>>>>>>> the echo step is pure Groovy, however, the sh step uses bash, so 
>>>>>>> probably you do not have bash in the PATH of that user, check that bash 
>>>>>>> is 
>>>>>>> installed and that user can use it.
>>>>>>>
>>>>>>> El miércoles, 27 de octubre de 2021 a las 15:01:08 UTC+2, 
>>>>>>> adharsh...@gmail.com escribió:
>>>>>>>
>>>>>>>> Able to run the echo commands but not able to run the shell commands
>>>>>>>>
>>>>>>>> On Wed, 27 Oct 2021, 4:12 pm Adharsha sri, <adharsh...@gmail.com> 
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>>> Can anyone help on this error
>>>>>>>>>
>>>>>>>>> On Wed, 27 Oct 2021, 2:38 pm Adharsha sri, <adharsh...@gmail.com> 
>>>>>>>>> wrote:
>>>>>>>>>
>>>>>>>>>> Thanks for the sample pipeline but getting error like " process 
>>>>>>>>>> apparently  never started in path
>>>>>>>>>> ( running jenkins temporarily  with 
>>>>>>>>>> -Dorg.jenkinsci.plugins.durabletask.BourneshellScript.LAUNCH_DIAGNOSTICS=true
>>>>>>>>>>  
>>>>>>>>>> might make the problem clearer).
>>>>>>>>>>
>>>>>>>>>> Thanks.
>>>>>>>>>>
>>>>>>>>>> On Wed, 27 Oct 2021, 1:18 pm Ivan Fernandez Calvo, <
>>>>>>>>>> kuisat...@gmail.com> wrote:
>>>>>>>>>>
>>>>>>>>>>> This is a pretty simple pipeline to expose your environment 
>>>>>>>>>>> settings
>>>>>>>>>>>
>>>>>>>>>>> pipeline {
>>>>>>>>>>>     agent { label 'YOUR_AGENT_LABELS' }
>>>>>>>>>>>     stages {
>>>>>>>>>>>         stage('test') {
>>>>>>>>>>>             steps {
>>>>>>>>>>>               sh 'export'
>>>>>>>>>>>               sh 'set'
>>>>>>>>>>>             }
>>>>>>>>>>>         }
>>>>>>>>>>>     }
>>>>>>>>>>> }
>>>>>>>>>>>
>>>>>>>>>>> El miércoles, 27 de octubre de 2021 a las 9:13:59 UTC+2, 
>>>>>>>>>>> adharsh...@gmail.com escribió:
>>>>>>>>>>>
>>>>>>>>>>>> The Configuration  from agent is fine right, but it will be 
>>>>>>>>>>>> useful only when we run the jave script. So for shell commands we 
>>>>>>>>>>>> need to 
>>>>>>>>>>>> check .bashrc file in the agent server. Can you please provide the 
>>>>>>>>>>>> screenshot of the .bashrc file and please provide the script  you 
>>>>>>>>>>>> are using 
>>>>>>>>>>>> and examples of export and set. This will be very helpful for us.
>>>>>>>>>>>>
>>>>>>>>>>>> Thanks.
>>>>>>>>>>>>
>>>>>>>>>>>> On Wed, 27 Oct 2021, 8:04 am Adharsha sri, <
>>>>>>>>>>>> adharsh...@gmail.com> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Can you please provide an example.
>>>>>>>>>>>>>
>>>>>>>>>>>>> On Tue, 26 Oct 2021, 11:52 pm Ivan Fernandez Calvo, <
>>>>>>>>>>>>> kuisat...@gmail.com> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> This is the output you see in the browser, isn't it? Did you 
>>>>>>>>>>>>>> try to download the "view as plain text" button output in a file 
>>>>>>>>>>>>>> and with 
>>>>>>>>>>>>>> an editor trying to find the correct encoding? the encoding you 
>>>>>>>>>>>>>> set in the 
>>>>>>>>>>>>>> Agent is only from Java process launched from the remoting 
>>>>>>>>>>>>>> thread, I mean 
>>>>>>>>>>>>>> is you launch a script in a job this script will use the 
>>>>>>>>>>>>>> encodings setting 
>>>>>>>>>>>>>> you have configured in the user you use to connect if in your 
>>>>>>>>>>>>>> .bashrc (or 
>>>>>>>>>>>>>> other shell configuration) you choose other encodings different 
>>>>>>>>>>>>>> than UTF-8 
>>>>>>>>>>>>>> you will have issues showing the build logs. In these cases I 
>>>>>>>>>>>>>> use to try to 
>>>>>>>>>>>>>> run a job that shows me the effective environment I am running 
>>>>>>>>>>>>>> the job by 
>>>>>>>>>>>>>> using the command `export`, `set`, or both, then I check the 
>>>>>>>>>>>>>> TERM, LC_* and 
>>>>>>>>>>>>>> LANG setting in that user.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> El martes, 26 de octubre de 2021 a las 8:34:50 UTC+2, 
>>>>>>>>>>>>>> adharsh...@gmail.com escribió:
>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Number of executors: 1
>>>>>>>>>>>>>>> Launch method: launch agents via SSH
>>>>>>>>>>>>>>> Host: host name
>>>>>>>>>>>>>>> Host key verification strategy: Non verifying verification 
>>>>>>>>>>>>>>> strategy 
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Port : 22
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Java path: /usr/lpp/java/J8.0/bin/Java
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> JVM Options: -Dfile.encoding=ISO8859-1 
>>>>>>>>>>>>>>> -Djava.io.tmpdir=/usr/lpp/test
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Prefix start Agent command:
>>>>>>>>>>>>>>> export JAVA_HOME =/usr/lpp/java/J8.0/ && export  
>>>>>>>>>>>>>>> IBM_JAVA_ENABLE_ASCII_FILETAG=ON && _BPXK_AUTOCVT=ON &&
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Suffix start Agent command:
>>>>>>>>>>>>>>>  -text
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> Connection timeout  in seconds:210
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> On Tue, 26 Oct 2021, 11:20 am geoffroy...@gmail.com, <
>>>>>>>>>>>>>>> geoffroy...@gmail.com> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> can you please show a screenshot of the zos agent 
>>>>>>>>>>>>>>>> configuration (all fields)?
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> On Tuesday, 26 October 2021 at 04:27:21 UTC+2 
>>>>>>>>>>>>>>>> adharsh...@gmail.com wrote:
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Yes , based on that page , we have configured the slave. 
>>>>>>>>>>>>>>>>> But still facing the same issue.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On Mon, 25 Oct 2021, 11:30 pm geoffroy...@gmail.com, <
>>>>>>>>>>>>>>>>> geoffroy...@gmail.com> wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Hi
>>>>>>>>>>>>>>>>>> have you checked this page (first results in google): 
>>>>>>>>>>>>>>>>>> https://gdams.medium.com/adding-zos-to-our-jenkins-build-farm-27ab5171fb35
>>>>>>>>>>>>>>>>>> Seems you might need to tune the JVM options, using  
>>>>>>>>>>>>>>>>>> -Dfile.encoding=ISO8859-1
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> On Monday, 25 October 2021 at 13:49:52 UTC+2 
>>>>>>>>>>>>>>>>>> adharsh...@gmail.com wrote:
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Can you please consider this as priority. Actually  it 
>>>>>>>>>>>>>>>>>>> is critical issue for us.
>>>>>>>>>>>>>>>>>>> Whether z/ os platform is supported for jenkins or not . 
>>>>>>>>>>>>>>>>>>> If it is supported, where we are missing and why we are not 
>>>>>>>>>>>>>>>>>>> getting the 
>>>>>>>>>>>>>>>>>>> output. Please help on this issue. 
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> On Mon, 25 Oct 2021, 17:12 Adharsha sri, <
>>>>>>>>>>>>>>>>>>> adharsh...@gmail.com> wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> We are running just date command or simple echo 
>>>>>>>>>>>>>>>>>>>> command  through execute shell but not getting the actual 
>>>>>>>>>>>>>>>>>>>> output
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On Mon, 25 Oct 2021, 17:09 Adharsha sri, <
>>>>>>>>>>>>>>>>>>>> adharsh...@gmail.com> wrote:
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> +□?EA/¤
>>>>>>>>>>>>>>>>>>>>> Some thing like above 
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> On Mon, 25 Oct 2021, 15:56 Fabian Cenedese, <
>>>>>>>>>>>>>>>>>>>>> cene...@indel.ch> wrote:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> At 14:21 21.10.2021, you wrote:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> >Can you please help me for this issue
>>>>>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>>>>>> >On Wed, 20 Oct 2021, 18:53 Adharsha sri, <<mailto:
>>>>>>>>>>>>>>>>>>>>>> adharsh...@gmail.com>adharsh...@gmail.com> wrote:
>>>>>>>>>>>>>>>>>>>>>> >Hi Team,
>>>>>>>>>>>>>>>>>>>>>> >
>>>>>>>>>>>>>>>>>>>>>> >I am unable to run a jenkins job ( shell command : 
>>>>>>>>>>>>>>>>>>>>>> date) on zos slave . The slave is active and online but 
>>>>>>>>>>>>>>>>>>>>>> getting some 
>>>>>>>>>>>>>>>>>>>>>> gibberish values in console output. Please help.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Please post the "gibberish".
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> bye  Fabi
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> -- 
>>>>>>>>>>>>>>>>>>>>>> You received this message because you are subscribed 
>>>>>>>>>>>>>>>>>>>>>> to the Google Groups "Jenkins Users" group.
>>>>>>>>>>>>>>>>>>>>>> To unsubscribe from this group and stop receiving 
>>>>>>>>>>>>>>>>>>>>>> emails from it, send an email to 
>>>>>>>>>>>>>>>>>>>>>> jenkinsci-use...@googlegroups.com.
>>>>>>>>>>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/20211025102601.192AF48935CC%40macserver.private
>>>>>>>>>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> -- 
>>>>>>>>>>>>>>>>>> You received this message because you are subscribed to 
>>>>>>>>>>>>>>>>>> the Google Groups "Jenkins Users" group.
>>>>>>>>>>>>>>>>>> To unsubscribe from this group and stop receiving emails 
>>>>>>>>>>>>>>>>>> from it, send an email to 
>>>>>>>>>>>>>>>>>> jenkinsci-use...@googlegroups.com.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/61ef6928-d20b-4e57-b30c-658c5e176474n%40googlegroups.com
>>>>>>>>>>>>>>>>>>  
>>>>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/jenkinsci-users/61ef6928-d20b-4e57-b30c-658c5e176474n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> -- 
>>>>>>>>>>>>>>>> You received this message because you are subscribed to the 
>>>>>>>>>>>>>>>> Google Groups "Jenkins Users" group.
>>>>>>>>>>>>>>>> To unsubscribe from this group and stop receiving emails 
>>>>>>>>>>>>>>>> from it, send an email to jenkinsci-use...@googlegroups.com
>>>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/926ab580-3b04-418c-be05-7dc8742c5205n%40googlegroups.com
>>>>>>>>>>>>>>>>  
>>>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/jenkinsci-users/926ab580-3b04-418c-be05-7dc8742c5205n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> -- 
>>>>>>>>>>>>>> You received this message because you are subscribed to the 
>>>>>>>>>>>>>> Google Groups "Jenkins Users" group.
>>>>>>>>>>>>>> To unsubscribe from this group and stop receiving emails from 
>>>>>>>>>>>>>> it, send an email to jenkinsci-use...@googlegroups.com.
>>>>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/3924cce8-a1a4-44dd-bab8-aef99b78bec6n%40googlegroups.com
>>>>>>>>>>>>>>  
>>>>>>>>>>>>>> <https://groups.google.com/d/msgid/jenkinsci-users/3924cce8-a1a4-44dd-bab8-aef99b78bec6n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>>>>> .
>>>>>>>>>>>>>>
>>>>>>>>>>>>> -- 
>>>>>>>>>>> You received this message because you are subscribed to the 
>>>>>>>>>>> Google Groups "Jenkins Users" group.
>>>>>>>>>>> To unsubscribe from this group and stop receiving emails from 
>>>>>>>>>>> it, send an email to jenkinsci-use...@googlegroups.com.
>>>>>>>>>>> To view this discussion on the web visit 
>>>>>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/f8dfdfcb-54c3-4be4-8bc3-662175cf769fn%40googlegroups.com
>>>>>>>>>>>  
>>>>>>>>>>> <https://groups.google.com/d/msgid/jenkinsci-users/f8dfdfcb-54c3-4be4-8bc3-662175cf769fn%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>>>>>> .
>>>>>>>>>>>
>>>>>>>>>> -- 
>>>>>>> You received this message because you are subscribed to the Google 
>>>>>>> Groups "Jenkins Users" group.
>>>>>>> To unsubscribe from this group and stop receiving emails from it, 
>>>>>>> send an email to jenkinsci-use...@googlegroups.com.
>>>>>>> To view this discussion on the web visit 
>>>>>>> https://groups.google.com/d/msgid/jenkinsci-users/1cf253af-3482-4f81-9170-5b103a340b6bn%40googlegroups.com
>>>>>>>  
>>>>>>> <https://groups.google.com/d/msgid/jenkinsci-users/1cf253af-3482-4f81-9170-5b103a340b6bn%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>>>>> .
>>>>>>>
>>>>>> -- 
>>>> You received this message because you are subscribed to the Google 
>>>> Groups "Jenkins Users" group.
>>>> To unsubscribe from this group and stop receiving emails from it, send 
>>>> an email to jenkinsci-use...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/jenkinsci-users/66c98a58-18aa-4bb2-8f4f-5ab29e6ff9c3n%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/jenkinsci-users/66c98a58-18aa-4bb2-8f4f-5ab29e6ff9c3n%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>> -- 
>>> You received this message because you are subscribed to a topic in the 
>>> Google Groups "Jenkins Users" group.
>>> To unsubscribe from this topic, visit 
>>> https://groups.google.com/d/topic/jenkinsci-users/8Vu26aozllE/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to 
>>> jenkinsci-use...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/jenkinsci-users/CAJWGB6pHFzYZZSsTmCFApiP1pUD3GddiFqAy8pj6KX5cLvYS0A%40mail.gmail.com
>>>  
>>> <https://groups.google.com/d/msgid/jenkinsci-users/CAJWGB6pHFzYZZSsTmCFApiP1pUD3GddiFqAy8pj6KX5cLvYS0A%40mail.gmail.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>
>>
>> -- 
>> Un Saludo
>> Iván Fernández Calvo
>> https://www.linkedin.com/in/iv%C3%A1n-fern%C3%A1ndez-calvo-21425033
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/CAKo5QrpqXgoR50ZzTio6XaJGR-dYQ3j28mDhFCKi7x%3D8wGYRZw%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/jenkinsci-users/CAKo5QrpqXgoR50ZzTio6XaJGR-dYQ3j28mDhFCKi7x%3D8wGYRZw%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/04280987-8f6c-43e1-ba81-16319bc93ee4n%40googlegroups.com.

Reply via email to