You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

This is a page collecting answers to requests arrived to the HPC Helpdesk.

Please check here before sending a specific request.

In this page:


General:

  • How I can add a collaborator to my project?

Project group leaders can also manage their user's membership on their UserDB page. 

  • I still didn’t receive the username and the password for the system access?

You have to do the complete registration on the UserDB page and to be associated with a project (PI has to add you). Once you have inserted all the necessary information and you are associated with a project a new access button will appear, just click on it and you will receive in two mails the username and the password.

  • Backup Policy 

    Just the $HOME filesystem is guaranteed by daily backups. The backup procedure runs daily and we preserve a maximum of three different copies of the same file. Older versions are kept for 1 month. The last version of deleted files is kept for 2 months, then definitely removed from the backup archive.

  • Information about my project on CINECA clusters (end data, total end monthly amount of hours, the usage?)

    You can list all the Accounts attached to your username on the current cluster, together with the "budget" and the consumed resources, with the command:

    > saldo -b 

    More information on our documentation.

  • I have finished my budget but my project is still active, how can I do?

    Non-expired projects with exhausted budgets may be allowed to keep using the computational resources at the cost of minimal priority. Ask superc@cineca.it to motivate your request and, in case of a positive evaluation, you will be enabled to use the qos_lowprio QOS.

  • Which filesystems do I have available? Which usage is intended?

    • $HOME: to store programs and small light results. This is permanent, backed uped, user-specific and local area.
    • $CINECA_SCRATCH: where you can execute your programs. This is a large disk for the storage of run time data and files. It is temporary area
    • $WORK: An area visible to all the collaborators of the project. This is a safe storage area to keep run time data for the whole life of the project and six months after the end of the project.
    • $DRES: An additional area to store your results if they are heavy. This space is not automatic. You need to request for it writing to superc@cineca.it

     More detailed information can be found here.

  • How can I check how much free disk have I available? 

Come stiamo messi con cindata?

Connection/login

  • I haven't been login for a while, recently I found I couldn't login it and return me a message: access denied

    If you have forgotten your password, just write to the CINECA Help Desk (superc@cineca.itto reset of your password.

  • How to change my password?

    You can change your current password on the front-end system using the command passwd. Please look at our password policy

Executions/scheduler:

  • I was copying data or executing something in the login and the process was killed. Why?

    The login nodes in our facilities have 10 minutes CPU time limit. This means that any execution requiring more than that is automatically killed. You may avoid this restriction by using the batch script on the SLURM partitions or an interactive run. The partition and the resources depend on the machine you are considering, so please see the "UG3.0 System specific guide" page.  Important details and suggestions on how to transfer your data can be found on the "Data management" page.


  • My job has been waiting for a long time. How can I see when will it be executed?

  • My job exits with some error just after starting. What is wrong?

  • How can I see if there are any problems with my job? / How can I check the status of my jobs? 

  • Which queue should I use?

  • Troubles running a dynamically linked executable

In order to use the available libraries dynamically, you have to add the library directory to the path list of the environment variable $LD_LIBRARY_PATH before the execution of your job starts. E.g. for /user/lib64 you would export it as below:

  • export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib64 (bash)

  • set LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/usr/lib64    (csh)

The compiler wrappers link statically by default unless you use the option -dynamic or set ... 

  • Error invalid account when submitting a job: Invalid account or account/partition combination specified.

  • How can I list all my jobs currently in the queue?

  • Can I modify slurm settings of a waiting job?

  • How can I place and release a job from hold state?

  • What is the meaning of the status of my job?

Several job states are displayed by the slurm “squeue” command:

  • CA (CANCELLED): the job was explicitly cancelled by the user or system administrator. The job may or may not have been initiated.

  • CD (COMPLETED): the job has terminated all processes on all nodes.

  • CF (CONFIGURING): the job has been allocated resources, but are waiting for them to become ready for use (e.g.booting).

  • CG (COMPLETING): the job is in the process of completing. Some processes on some nodes may still be active.

  • F (FAILED): the job terminated with non-zero exit code or other failure condition.

  • NF (NODE_FAIL): the job terminated due to the failure of one or more allocated nodes.

  • PD (PENDING): the job is awaiting resource allocation.

  • PR (PREEMPTED): the job terminated due to preemption.

  • R (RUNNING): the job currently has an allocation.

  • S (SUSPENDED): the job has an allocation, but the execution has been suspended.

  • TO (TIMEOUT): the job terminated upon reaching its time limit.

Performance:

  • I have found performance problems, what should I do?

First, you should find a method to reproduce the problem and confirm after some tests that it is reproducible. After that, you should provide all relevant information to the Support Team by e-mail together with instructions on how to reproduce your tests. Support Team will investigate the issue and contact you as soon as possible.

  • No labels