I try to login to SQL SERVER 2008 from another computer. The database name is MSSQLSERVER2008, TCP protocol is port 49172. The account is SQL Server Authentication.
Anyone here can explain for me please? And how to login to that database from another computer with server name is "10.225.3.137\MSSQLSERVER2008"?
Be sure that SQL server is listening on default port and is set up for remote access and firewall is set up for default port 1433 and TCP/IP connections are enabled.
Looking at both images, it looks like it is not listening on port 1433 but 49172. Then change your connection to read:
10.225.3.137,49172\MSSQLSERVER2008
(you might prefix with tcp:)
Note: I have an old series of videos on youtube if you kike to watch, that shows setting up SQL server express locally and then connecting from remote using a custom port (search for "AccuSQL installation" on youtube and you would see 4 parts of videos - part 3 or 4 was about remote connection).
And BTW that is called an "INSTANCE" not database.