...
Info |
---|
These instructions were tested on a clean Windows Server 2012 R2 server |
...
Table of Contents | ||
---|---|---|
|
Artemis On-Premise
Add Server Role
- Add Server Role: Web Server(IIS).
- Under .NET Framework 4.5 Features:
- Add ASP.NET 4.5.
- CF Services: Add Http activation.
- Under Web Server Role (IIS), locate Role Services.
- Add Application Development/ASP.NET 4.5. This automatically adds:
- .NET Extensibility 4.5
- ISAPI Extensions
- ISAPI Filters
- Install DotNetCore Windows server Hosting.
- From Command Prompt, execute net stop was /y followed by net start w3svc.
- Remove Default Web Site in IIS Manager.
- Create a folder called c:\Artemis.
- Create a folder called c:\Artemis\logs.
...
- In IIS Manager, create a new website.
Site name: Artemis
Physical Path: c:\Artemis
Hostname: blank - Edit the new Artemis App Pool.
- Change .NET CLR version to No Managed Code.
- Extract contents of Artemis.zip to c:\Artemis.
- Paste Artemis.zip onto desktop.
Right-click and select Extract All.
Info Files will be extracted to the folder c:\Artemis.
- Click Extract.
- Edit c:\Artemis\appsettings.json (with Notepad)
- Under Application Settings, set WebRoot to appropriate URL to which you will be binding.
Set RequireHttps to True if you will be using HTTPS. If using HTTP, leave it False.
Change LogFilename to c:\\artemis\\logs\\log-{Date}.txt.
Note Note the double backslashes. This is a JSON file, so backslashes have to be escaped like this.
- Under ConnectionStrings, change connection string for Artemis to the appropriate connection string to connect to your SQL Server.
- If you will be connecting to SQL Server using an Application Pool in IIS that is mapped as a login in SQL Server, Trusted_Connection: True.
- If you will be connecting using SQL Auth, use User Id: myUsername, Password: myPassword instead of Trusted_Connection: True.
Start
...
Artemis
Start the Artemis website.
Note If the website was already running, first stop it.
- Browse to http://localhost/sysadmin/Login and login with the initialtinf initiating Username and Password provided by Support.
- If you have already created a BLANK Artemis database when you setup your connection string, you will get an error “Invalid object name ‘INFO’” . Click Initialize Database.
- If you do not have a blank database created, you will get an error indicating that it cannot connect to the database. Click Create Database to create one.
- After creating/initializing your database, click Upgrade Database. You will be prompted for an HPS user account to be the first super-user of the new database.
- If you want to change the sysadmin username or password, click Compute New Password hash and follow the prompts. You will be given a new password hash. Copy the value, paste it into appsettings.json, and restart the website for it to take effect.
- Logout of the sysadmin area using Logout button.
- Use the Login button on the main webroot. You will be redirected to Heartland SSO page.
Log in using your HPS credentials.
Info Login credintials credentials must be the username you entered above as the initial super-user, but you don’t need the HPS\ prefix or anything, just login as you normally would any Heartland SSO site.
...
Artemis is setup is now complete.
If Aretmis Artemis is used in conjunction with Vendovation, you will need to follow the next steps to setup the Vendnovation Service wedge.
...
- In IIS Manager create a new website.
Site name: Vendnovation
Physical Path: c:\Vendnovation
Hostname: blank - Edit the new Vendnovation App Pool.
- Ensure .NET CLR version is set to v4.0.
- Extract contents of Vendnovation.zip to c:\Vendnovation.
- Paste Vendnovation.zip onto desktop.
Right-click Extract All.
Info Files will be extracted to the folder c:\Artemis.
- Click Extract.
- Edit c:\Vendnovation\web.config (with notepad)
- Under the <appSettings> element, set ArtemisUserName to the external user created in Artemis. e.g. “hometown_vendnovation”.
- Set ArtemisPassword to the corresponding password.
Set ArtemisURL to the URL you will be using to get from Vendnovation service to Artemis.
Note If you are on the same server, it will be something similar to http://localhost/api/Vending/ depending on how you are handling the binding.
Set LogFilename to c:\Vendnovation\logs\log-{Date}.txt.
Note Unlike Artemis, this is XML and not JSON; therefore, there are no escaped backslashes in the path.
Change LogFilename to c:\\artemis\\logs\\log-{Date}.txt.
Note the double backslashes. This is JSON file so backslashes have to be escaped like thisNote .
- Set IncludeExceptionDetailInFaults to False True.
- Set directoryBrowse enabled to False.
- Save web.config.
- Start the Vendnovation website.
...