The search returned 16 results

by eblaudy
September 1, 2020 - 3:55 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [RESOLVED] WAPT Self-service display bug
Answers: 1
Views : 2737

Re: WAPT Self-service display BUG

Hello,
Yes, it's a bug!
We were already aware of it and the fix has already been implemented.
It will be corrected in the next version.
Regards,
by eblaudy
June 18, 2020 - 3:53 PM
Forum: WAPT Server
Subject: Synchronization to remote repository
Answers: 2
Views : 3605

Re: Synchronization to remote repository

Hello again,
I found the problem. While waiting for a new build, you can fix it manually on the secondary repository.
You need to replace the following line in /opt/wapt/waptenterprise/repositories.py:
print('Downloaded in %f seconds.\n' % time.time()-self.start_time_download)
with ...
by eblaudy
April 30, 2020 - 5:49 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Windows Agent OSError(13, 'Permission denied')
Answers: 3
Views : 5301

Re: Windows Agent OSError(13, 'Permission denied')

Otherwise, can you tell me the permissions on /var/www/html/ssl?
by eblaudy
April 30, 2020 - 5:48 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Windows Agent OSError(13, 'Permission denied')
Answers: 3
Views : 5301

Re: Windows Agent OSError(13, 'Permission denied')

Hello,
did you correctly launch postconf.sh on your server during the update to 1.8.1?
by eblaudy
March 30, 2020 - 2:03 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] wapt-get.exe - Entry point not found
Answers: 3
Views : 5169

Re: [ERROR] wapt-get.exe - Entry point not found

You can go to Windows Programs on the administration workstation, uninstall WAPT, and then reinstall it from the agent available on the server page. Then you can redeploy the agent.
by eblaudy
March 27, 2020 - 5:43 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] wapt-get.exe - Entry point not found
Answers: 3
Views : 5169

Re: [ERROR] wapt-get.exe - Entry point not found

Hello,
which version were you using previously?
Could you try completely uninstalling the agent on the machine from which you are building the agent for deployment, and then reinstalling WAPT and redeploying the agent?

Please don't hesitate to call us if the problem persists.

Regards...
by eblaudy
February 17, 2020 - 4:59 PM
Forum: WAPT Server
Subject: WAPT 1.8 - Linux Agent and Repositories
Answers: 15
Views : 19678

Re: WAPT 1.8 - Linux Agent and Repositories

It's more likely that the package didn't install correctly then! (the one that installs nginx)
In the console, if you click on this package in the inventory of the machine on which you installed it, what log do you get?
You can also run `systemctl status nginx` on the...
by eblaudy
February 17, 2020 - 4:50 PM
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Number of workstations to which a packet group is assigned
Answers: 4
Views : 13045

Re: Number of workstations to which a packet group is assigned

Hello,
Here is what you are looking for:
SELECT hosts.dnsdomain, COUNT(hosts.uuid)
FROM hosts, hostpackagesstatus
WHERE hosts.uuid = hostpackagesstatus.host_id AND hostpackagesstatus.package = 'tis-wsl-debian'
GROUP BY hosts.dnsdomain
ORDER BY 2 DESC

Just replace "tis-wsl-debian" with the ...
by eblaudy
February 17, 2020 - 2:12 PM
Forum: WAPT Server
Subject: WAPT 1.8 - Linux Agent and Repositories
Answers: 15
Views : 19678

Re: WAPT 1.8 - Linux Agent and Repositories

Did you install the correct package to install nginx? This is the one you need to install, not the other, as it's a dependency (it will be installed before this one).

Edit: The first one (tis-remote-repo-conf) is only used to configure the agent to synchronize and...