I got this wild hair to build a website. I went back to HTML and CSS and relearned enough to create a number of web pages for entering data that will be used on the website. That led to the need to gather data from those forms and store it where it could be accessed and used later.
A few weeks back I started to learn about SQL because I knew I needed a database to support my website. I looked around first trying XAMPP, MySQL and MyphpAdmin but got discouraged by the interface. That led me to Microsoftās free SQL Server (MSSQLS) and Sequel Server Management Studio (SSMS). Iāve learned enough to create 8 or 9 tables that will contain my data. By no means do I have even a basic understanding of SQL, but I did install the tools and Iāve been using them to create tables, etc.
Iāve reached the point where I need to learn how to take data entered on those forms I created and store it in my database. But it soon became apparent that my server name is a kludge.
I chose the default name when I installed MSSQLS which is basically my system name in Windows. This is too funky to remember for entering the server name in php and elsewhere; so I thought I might rename it to something simpler that I could remember and type accurately. A little searching led me to issues I donāt understand about server names; so, before proceeding I thought to get advice here.
I donāt have any other users accessing the server. The only thing āattachedā to it is my instance of MSSQLS and its UI, SSMS. I can proceed without fear of disrupting anyone elseās use of the server.
Iād like the server name to be simple, something like āmyserverā but a little less easy for hackerās to guess. Should I proceed to rename it? If so, what cautions should I observe in the process? If I should lose the database Iāve created, I can easily re-create it even if my backup/restore doesnāt work.
Any advice?