Well, your quick answer could be yes, it’s pretty simple. All you need is to a little Selenium experience. We’ll that’s correct when you start with some simple stuff, click on this , fill some text , hit submit , then you are done. But when you are actually working on a project, things are not as simple as your first test. In order to automate a task, you need know how to get the object , either based on css/xpath/id . If you are lucky, these fields are not changed you can use it again, but if these are dynamic you must put moreRead More →

When i tried to connect to my web server, i got this error. curl myserver.com:80 curl: (7) Failed to connect to myserver.com port 80: No route to host I can pingg, SSH to server – so it’s not a network configuration error. My first thought: It’s firewall issue , so i tried to connect to it directly from a another server on the same subnet – still got the same error. So it’s not firewall blocked. Iptables ? i clear my current iptables – still the same error. I tried to connect to different port – i still got “no route to host”, i’m supposedRead More →

Step1: Login to jump server:     ssh -L 127.0.0.1:8080:127.0.0.1:8080 user@jump_server Step2: On jump server: ssh -D8080 user@remote_server1 Step3: Change browser socks proxy using socks5: 127.0.0.1:8080 All in one command:  ssh -L 127.0.0.1:8080:127.0.0.1:8080 -A -t -l user@jump_server “ssh -D8081 -A -t -l remote_user@remote_server”Read More →

# Reboot Server Script: Automating Server Restarts for Improved Uptime and Maintenance In any production environment, maintaining system uptime and ensuring your servers are running efficiently are critical components of an IT professional’s responsibilities. Sometimes, servers need to be rebooted to apply updates, clear memory, resolve issues, or improve overall performance. While manually rebooting a server can be a straightforward task, automating this process with a script can save time and reduce human error. In this article, we will walk you through how to write and use a **reboot server script** to automate the reboot process on various server environments, including Linux and Windows servers.Read More →

If you application is experiencing some 500 error code , but your log doesn’t show any exceptions – i would suggest we enable “Failed Request Log” in IIS – you can see the detail from this url: https://www.eginnovations.com/documentation/The-eG-Real-User-Monitor/Enabling-the-Failed-Request-Log-for-IIS.htmRead More →

I have been struggling with my powershell script , i write a content variable to a file using Out-File $data.jar_cookie_content | Out-File -FilePath $cookie_file What’s wrong with this? i checked the output file using the text editor , they look exactly the same content of the variable. Initially, i thought the problem is from my other program , some ow it doesn’t accept this data. After 1/2 day troubleshooting i realized the filesize was double than its original content. I finally fixed it with this: $data.jar_cookie_content | Out-File -FilePath $cookie_file -encoding ASCIIRead More →

There are 2 options in sitespeed we don’t see in the documentation is : –browsertime.retries 2 –browsertime.retryWaitTime 2000 -browsertime.retries : when a browser is unable to load, this is the number of time we wait –browsertime.retryWaitTime : time to wait each time (in ms)Read More →