How to turn Windows 10 PC as SMTP server? - technical-indicator

I want to configure my window system as a mail server. Please let me if anybody knows how to configure windows 10 as a mail server. I have an ec2 window instance.

Yes, there are a plenty of videos, I hope you found this one useful, :)
https://www.youtube.com/watch?v=9Q4S_6pmPoA

Related

AWS Lightsail terminal blocked

I installed WordPress on AWS Lightsail following aws’ video tutorial. Generated a static IP and watched the WP site running on the browser. To log into WP I have the user and have to retrieve the password using the terminal. To launch it I clicked the “Connect with SSH” button and a terminal pop-out. Unfortunately the terminal is blocked/freezed and I can’t write any command nor click into it. Restarted the instance and tried 4 browsers (IE, Chrome, Firefox, Safari) and nothing works.
I completely deleted the instance and created a new one but have the same problem.
Anyone know what’s happening and how to make the terminal work? Is there other way to get the wP password I need? Thanks.
The browser terminal interface can be problematic. It is better to use an SSH client (such as PuTTY). You will need the private key to do this (see instructions if you don't have this). The official bitnami instructions can be found here
https://docs.bitnami.com/aws/how-to/get-started-wordpress-aws-marketplace-intermediate/
If you don't have the WordPress password, these can be found in the initial installation logs, or in /home/bitnami/bitnami_credientials. Refer to Step 4 of the instructions
https://docs.bitnami.com/aws/get-started-marketplace/
Hope this helps.

Windows Server 2012-R2/2016 auto login not working

After trying several version of the registry edit way to login automatically (https://support.microsoft.com/en-us/help/324737/how-to-turn-on-automatic-logon-in-windows)
I am still unable to make my servers(Windows 2012-R2, Windows 2016) automatically login. What i specifically need is for a program to start up whenever the server boots, and a logged in user is required for the program to function properly. I have followed the links and did as instructed.
My Registry Entry
As well as change the AutoAdminLogon to 1.
I also tried with the checkbox in User Accounts(https://superuser.com/questions/499724/auto-login-windows-server-2012)
but without luck...
The servers are machines i connect to remotely with a username and password.
Am i misunderstanding both of these methods?
Is it for some reason impossible when they are remote servers?
Are there any other ways of making the server login?
Any help is much appreciated :)
To Anyone stumpling upon this thread later, I found this tiny program.
https://learn.microsoft.com/da-dk/sysinternals/downloads/autologon
It worked like an absolute charm on my 2012-R2 and 2016 server.

Informatica Administrator: Domain site refuse to connect

I have successfully completed the installation of informatica, and I am able to login domain Administrator http://ssingh:6008/administrator but the session get timed out after some time of inactivity.
The issue I am facing is It shows error to reconnect i.e. ERR_CONNECTION_REFUSED. Although this issue does not occur everytime, but frequently seen this issue.
Thanks in advance for the solution to resolve this issue.
It requires informatica service to be up and running. So go to System services and Start Informatica service. Wait for few minutes once service get started, and then will be able to view Administrator page.
P.S. I got this answer after self experimenting it. If any one knows better answer please do post it here. Thanks!
I have the same issue and as you suggested, all what we need to do is to check if the service is running under Control Panel > Administrative Tools > Services (for Windows users) and be patient. My browser connects to the tool automatically after 3 or 4 minutes. Thank you!

How to use libssh as server?

I am working on a Windows version of a server application that communicates with a web application. The web application originally worked with a Linux server, and would SSH into Linux to execute commands on the server. My plan is to build a C++ server using Qt to receive commands from the web application, and process them to do the windows version of what those commands are.
So for example, if the web application originally sent "echo $HOME" and received back the home directory, I want to receive that same SSH command on my Windows server, then process it so if the server was configured for the home directory to be C:\Example\, then it would send back C:\Example\. My goal is to make as little change to the web application, and instead have the Windows server process the Linux SSH commands to do the Windows equivalent.
I've never worked with libssh before, but from some searching I found it and read that it could be used as an SSH2 server. Basically my question here, is how would I use libss2 to create a server in my Qt project to allow this web application to SSH in and send commands.
If you think there is a better way then libssh please let me know, this is just what I have found through searching.
UPDATE: I found this code of a server example. https://github.com/substack/libssh/blob/master/examples/samplesshd-tty.c
Honestly, I'm very confused by it. I'll probably be able to break it down and understand what's happening after a few hours of Googling and working through the code. But If anyone would be willing to walk me through main explaining what's happening at each step, that would be appreciated.

accessing Java web service from peer in Windows XP Pro Workgroup

To set the context of this problem, I will say that I am person trying to learn web services working ( mostly )independently at home on XP workgroup. The situation is that I am working through example in book that set up Java web service that should be accessable to clients from many platforms ( perl, ruby, etc. ). The problem is that although I can create and access service from any one given unit in workgroup, I cannot create on any unit and access from any other unit in workgroup. When trying to access wsdl, IE returns error saying cannot display web page .
So i tried to configure Windows firewall to allow access via port indicated in web service. Did not make any difference. Also tried various settings in IIS regarding behavior of XP Default website. These settings included allowing wider range of MIME types including application/soap. Still no difference.
If Anyone out there could just give me an idea of what else could be the problem, then please do so and i will investigate it further. Thanks in advance. PL
P.S. After doing some research, I am thinking that my problem of not being to see WSDL from remote machine is related to limitations of IIS 5.1. Does anyone have any thoughts about this ? I even tried publishing WSDL to port 8080 ( earlier I was using port 9876 as suggested in book example. When even this failed and being able to view 8080 for ASP.Net and Java webapps, I ran across a statement in a book saying that IIS 5.1 does not allow service on local machine to use HTTP port 80 to communicate. So If this sounds familiar to anyone or anyone has solution, please reply, Thanks for reading this rambling message this far. PL
Hello to any one who might have this similar problem in XP workgroup and need a solution. I managed to connect across workgroup from peer to use service as client by setting up client in Visual Web Developer 2010 Express . Key is to add web reference that will import wsdl from service host .
Also worth noting is that I changed address of service published to provide server name of host as known by workgroup rather than using localhost designation.
Still need to find way to connect using other clients such as java, perl and ruby. Maybe can develop client in Eclipse that will have feature comparable to web reference in Visual Web Developer.
Paul Lusk