Your hosting account details and server information are delivered in two automated emails sent when the account is provisioned: "ASPnix - Control Panel Account Summary" and "ASPnix - Hosting Space Summary / Server Details". The first contains control panel login credentials and URLs. The second provides the physical path to your hosting root, FTP hostname and credentials, SQL Server connection details, and additional service configuration data. If the emails cannot be located, log in at https://panel.aspnix.com, click the Services Information icon, and expand the relevant service header to view the identical data.
These details are required for every practical task on a Windows hosting account. The control panel URL and credentials let you manage IIS settings, email accounts, and backups. FTP information enables file transfer of ASP.NET applications, while SQL Server details are necessary to create databases, run scripts, or update connection strings in web.config. The physical path is frequently needed for file I/O operations, logging configuration, and certain CMS installers. Keeping this information accessible prevents repeated support requests and speeds up deployment.
#The Initial Welcome Emails
When ASPnix creates a new Windows hosting account, the provisioning system sends multiple confirmation emails to the address on file. Two of them contain all the technical information required to administer and publish to the account. These emails should be stored securely because they include temporary passwords and direct connection strings that cannot be retrieved through any public lookup. If your email client placed them in a spam or promotions folder, search for the exact titles before contacting support.
#ASPnix - Control Panel Account Summary
This email supplies the username and initial password for the web control panel located at https://panel.aspnix.com. It also lists the direct hyperlinks used to reach the control panel login, the billing portal, and other management interfaces. The credentials are case-sensitive and should be changed at first login. The URLs remain constant for the lifetime of the account, providing a single place to modify DNS records, set up scheduled tasks, or configure application pools.
#ASPnix - Hosting Space Summary / Server Details
This message focuses on the runtime environment allocated to your hosting space. It includes the exact physical path to the root of your website on the server filesystem, which is required when applications need to reference files outside the web root or when configuring custom error pages. FTP connection parameters list the server hostname (often matching your domain), port, username, and password. SQL Server details supply the instance name or IP, database username, password, and default database name if one was created at provisioning. Additional sections may list SMTP relay settings or secondary service endpoints.
#Accessing Information Through the Control Panel
The control panel maintains a live, authoritative copy of all service information. This becomes the single source of truth if welcome emails are lost, filtered, or deleted. The interface groups data by service, so you can quickly locate only the FTP credentials or only the database connection parameters without scanning long email threads. The displayed values reflect any changes made since account creation, such as password resets performed inside the panel.
#Step-by-Step Instructions
- Open a browser and navigate to https://panel.aspnix.com
- Enter the username and password provided in the Control Panel Account Summary email
- On the main dashboard, locate and click the "Services Information" icon
- Click the collapsible panel header that corresponds to your primary hosting package, database service, or other add-on
The expanded panel displays the current physical path, FTP endpoint, SQL connection parameters, and any additional configuration values. All data is presented in plain text for easy copy-and-paste into FTP clients, connection strings, or support tickets.
#Using the Details in Practice
With the server information in hand you can immediately configure development tools and deployment pipelines. FTP credentials are entered into clients such as FileZilla, WinSCP, or the built-in publishing tools in Visual Studio. SQL details are used to create connection strings that allow your ASP.NET application to reach the hosted database. The physical path is often inserted into web.config <appSettings> keys or used in code that performs server-side file operations.
using System.Data.SqlClient;
string connString = "Server=sql.yourserver.aspnix.com;"
+ "Database=YourDatabaseName;"
+ "User Id=your_sql_username;"
+ "Password=your_sql_password;";
using (SqlConnection conn = new SqlConnection(connString))
{
conn.Open();
// execute commands
}
A matching connection string for web.config follows the same pattern inside the connectionStrings element. Always encrypt the config section in production and avoid committing credentials to source control.
#Best Practices and Security
- Change all temporary passwords immediately after first use
- Store the original emails in an encrypted password manager rather than an unsecured inbox
- Never post screenshots or plain-text copies of these emails on forums or support portals
- Verify FTP and SQL credentials in a test connection before deploying production code
Review the Services Information page before every major deployment or when troubleshooting connectivity errors. Keeping these values at hand eliminates guesswork when configuring applications, setting file permissions, or opening support tickets. For subsequent tasks such as configuring remote SQL access or enabling application logging, consult the related articles on database management and IIS configuration within the knowledge base.
Comments
No comments yet