Getting Started: Difference between revisions

From OuroDev
No edit summary
No edit summary
Line 5: Line 5:
* [https://www.microsoft.com/en-gb/sql-server/sql-server-editions-express SQL Express Edition]
* [https://www.microsoft.com/en-gb/sql-server/sql-server-editions-express SQL Express Edition]
* [https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017 SQL Management Studio]
* [https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017 SQL Management Studio]
=== Setup Local Server ===
* Install SQL Server 2017 Express Edition
* Choose Basic when installing and when given the option choose to install SSMS.
* Open up wherever you extracted the i25 Binaries folder and navigate to data\server\db
* Open up chat_server.cfg and account_server.cfg
You will see something like this.
SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=NS319069\SCORE;Uid=sa;Pwd=FinallyFree!;"
Change this to
SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=password;" 
You can change the password to whatever you would like. For this example I will be just using password.
*
*
*


== Common Issues ==
== Common Issues ==
=== Issue One ===
=== Issue One ===

Revision as of 19:40, 25 April 2019

Server Setup

Download Files

Setup Local Server

  • Install SQL Server 2017 Express Edition
  • Choose Basic when installing and when given the option choose to install SSMS.
  • Open up wherever you extracted the i25 Binaries folder and navigate to data\server\db
  • Open up chat_server.cfg and account_server.cfg

You will see something like this. SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=NS319069\SCORE;Uid=sa;Pwd=FinallyFree!;"

Change this to SqlLogin "DRIVER={SQL Server Native Client 11.0};Server=localhost\SQLEXPRESS;Uid=sa;Pwd=password;"

You can change the password to whatever you would like. For this example I will be just using password.

Common Issues

Issue One