Deploy to CLOUD is running normaly? - genexus

GeneXus Friends,
This afternoon, I was getting the following errors:
KB: LightCRM (included in Samples)
I have followed the documentation manual step by step.
Nothing to compile
iOS Compilation Success
Building file gx_last_transfer.zip...
Uploading 58 Kbytes
error: No es posible conectar con el servidor remoto
error: No se puede ejecutar la operación en un socket ya que el sistema no tiene suficiente espacio de búfer o porque una cola estaba llena 54.83.5.208:80
Run LightCRM Failed

The best way to continue is to:
a. Contact Artech that manages the cloud for the deploy to cloud feature, so they can check if the service is having any problem.
Link: http://www2.gxtechnical.com/portal/hgxpp001.aspx?15,4,25,O,E,0,MNU;E;25;4;4;4;MNU;,2738
b. Wait some time and try again.
A useful link when working with the deploy to cloud feature of GeneXus:
http://wiki.genexus.com/commwiki/servlet/hwikibypageid?18292

Related

ERRO: query_engine-windows.dll.node

enter image description here
In Portuguese: Tentei executar esse comando no terminal -> npx prisma generate, mas esse erro aconteceu!
In English: Tried running this command in terminal -> npx prisma generate, but this error happened!
In Portuguese: Tentei criar um arquivo .svg com um ERD(Diagrama de entidade relacionamento), era para esse arquivo aparecer na pasta prisma
In English: I tried to create a .svg file with an ERD (Entity Relationship Diagram), this file was supposed to appear in the prism folder
Installing prisma client with: yarn add #prisma/client should fix this issue for you.
For Reference here's a GitHub Issue: #9184 which discusses the same error that you are facing. There are several workarounds mentioned which fixed the error for the users.

Error deploying JHipster with aws-containers on Windows 10

I'm trying to deploy a monolith JHipster demo on AWS using AWS-containers
c:\jhipster\demo>jhipster aws-containers
..
🔧🛠️ AWS configuring
√ ECR Auth token has been retrieved.
Run-async async() called outside a valid run-async context, callback will be ignored.
AWS default
Warning demo is using a cache provider, scaling will not be available. Refer to an AWS native scaling service.
force ..\..\Users\demo\.yo-rc-global.json
identical pom.xml
identical src\main\java\com\demo\bootstrap\AwsSSMConfiguration.java
identical src\main\resources\META-INF\spring.factories
force .yo-rc.json
identical src\main\resources\config\bootstrap-aws.yml
identical base.template.yml
identical demo.template.yml
Run-async wrapped function (sync) returned a promise but async() callback must be executed to resolve.
× ".." no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
× The Docker image build failed. Error: Command failed: ../demo/./mvnw -ntp -Pprod verify jib:dockerBuild
".." no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.
I'm using JHipster 6.10.5 on windows 10.
The output is partially on spanish, the translation is:
'..' is not recognized as an internal or external command
it's a environment issue caused by windows 10.
I see the same error at
https://github.com/jhipster/generator-jhipster/issues/8366#issuecomment-489498566
Also looks like a windows machine.
Is trying to execute
../demo/./mvnw -ntp -Pprod verify jib:dockerBuild
that not is a valid command on windows system.
Any idea about how fix it?

Bluemix CLI Joomla 3.8 installation final steps

I am installing Joomla 3.8 for a demo purpose on Bluemix, through Cloud Foundy - cf push,
And the URL is : https://joomlacloud.eu-gb.mybluemix.net/installation/index.php#
as i use ClearDb as external database, the new security tool since joomla 3.7.4 requests a file created in the /install folder to be removed.
Message : "Afin de confirmer que vous êtes le propriétaire de ce site Web, supprimez le fichier "_JoomlaUQEvA8900RHAnVyBbf1Zs.txt" que nous venons de créer dans le dossier "installation" de votre site Joomla."
Does someone explain me how i can do access to this file for removing ?
Thank you in advance
Yves
Run cf ssh <your-app-name>. Then cd app/. You'll now be in the root of your application. From there locate the file and rm it. The change will be instant.
Things will be more confusing if you have multiple instances of your application. In that case, you might need to cf ssh into all of them to find where the file was written, or just scale down to one while you're installing.
Just keep in mind that any files you cf push'd with your application will return when your application is restarted, intentionally or otherwise. If you need to remove a file that you cf push'd then you should do so locally and cf push a second time without that file or files.
Hope that helps!

Uninstall redmine

I try to uninstall redmine :
apt-get purge redmine
But i have this error :
apt-get purge redmine
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Les paquets suivants seront ENLEVÉS :
redmine*
0 mis à jour, 0 nouvellement installés, 1 à enlever et 7 non mis à jour.
Après cette opération, 12,0 Mo d'espace disque seront libérés.
Souhaitez-vous continuer [O/n] ? O
(Lecture de la base de données... 42313 fichiers et répertoires déjà installés.)
Suppression de redmine ...
/var/lib/dpkg/info/redmine.prerm: line 27: /usr/share/dbconfig-common/dpkg/prerm: Aucun fichier ou dossier de ce type
dpkg : erreur de traitement de redmine (--purge) :
le sous-processus script pre-removal installé a retourné une erreur de sortie d'état 1
configured to not write apport reports
Des erreurs ont été rencontrées pendant l'exécution :
redmine
E: Sub-process /usr/bin/dpkg returned an error code (1)
Do you know how to remove it ?
I have also this :
root#ks3309528:~# aptitude search ~b
pB librack-ruby1.8 - A modular Ruby webserver interface (Ruby 1.8)
Bd redmine - flexible project management web application
cB rubygems1.8 - package management framework for Ruby libraries/applications
You could try with dpkg directly:
dpkg purge redmine
alternatly aptitude has a verbose option, you might get a better idea of what's goin wrong:
aptitude -v purge redmine
Redmine is not just a "package".
It's a web-service, so first of all, try to stop web-service (httpd passenger, or native web-daemon), than check dependencies (ruby gems) and than try to purge "package" via dpkg.
Try running aptitude with -f to clear out the broken package:
sudo aptitude -f

bash command from Grails application

I am working in grails application which needs to execute an external bash command like so:
def cmd= "example".execute()
cmd.waitFor()
the problem is that this command is well executed when i run it from development environment but when i deploy it into tomcat this command is not executed any more.
Can someone help me please to solve this problem?
UPDATE
It looks like you're invoking an Ant Task from your TaskService.
Without your code, or you adding more debugging, it will be difficult to help.
"On ne sait pas ce que fait TaskService, ajoute du debug dans le code, ca va etre dur d'aider sans détails"
Try to debug it, by putting this line right after your execute call.
cmd.text.eachLine { log.info it }

Resources