This commit is contained in:
2022-07-18 17:55:49 +00:00
parent cc04c09c62
commit 9ebf83bc9e
7 changed files with 77 additions and 40 deletions

View File

@@ -1,8 +1,9 @@
# now # now
- upload and test get joyce to try it out with her old quickbooks on test system - upload and test get joyce to try it out with her old quickbooks on test system
- If all is well then post about it on the forum - If all is well then move current dl to previous folder and move next to current download slot and post about it on the forum
- Pricing and plans
- website / purchase / shareit products

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -16,15 +16,15 @@ An up to date modern web browser (not Internet Explorer) with Javascript enabled
## AyaNova server system requirements ## AyaNova server system requirements
- OS : Windows 64 bit operating system with IIS - OS : Windows 64 bit operating system with IIS
- IIS: Internet information server - IIS: Internet information server
- Internet connection : required to install license and to automatically download the Chromium report rendering engine - Internet connection : required to install license and to automatically download the Chromium report rendering engine
- Disk space: minimum 2GB of free disk space - Disk space: minimum 2GB of free disk space
- RAM : 1GB (minimum), 2+ GB (recommended) - RAM : 1GB (minimum), 2+ GB (recommended)
- PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/) - PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/)
- ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer](https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer) - ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer](https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer)
- Static IP address if AyaNova will be used from the internet - Static IP address if AyaNova will be used from the internet
- Domain or subdomain name if AyaNova will be used from the internet - Domain or subdomain name if AyaNova will be used from the internet
## Security and Network requirements to access IIS from the internet ## Security and Network requirements to access IIS from the internet
@@ -36,8 +36,8 @@ If a networking technician has a question about AyaNova itself that is not answe
## Folders ## Folders
- Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder - Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder
- Data files: All data aside from attachment files is stored in the PostgreSQL database. By default AyaNova will store attachment files, logs and backup files in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. Each folder location can be changed via [configuration](ops-config-environment-variables.md). - Data files: All data aside from attachment files is stored in the PostgreSQL database. By default AyaNova will store attachment files, logs and backup files in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. Each folder location can be changed via [configuration](ops-config-environment-variables.md).
## Installation procedure ## Installation procedure
@@ -125,6 +125,18 @@ dotnet --list-runtimes
Once you have ensured the three requirements above are installed and available, download and run the AyaNova network installer: [https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe). Once you have ensured the three requirements above are installed and available, download and run the AyaNova network installer: [https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe).
#### Smart screen warning
The setup file is _not_ digitally signed so the first time you run setup you may receive a "Smart Screen" warning from Windows such as the following:
![Smart screen dire warning](img/ops-install-windows-smart-screen-warning.png)
Clicking on **More info** will reveal the following:
![Smart screen more info](img/ops-install-windows-lan-smart-screen-more-info.png)
Use the **`Run anyway`** button to start the installation.
**IMPORTANT**: You **MUST UNCHECK** the option 'Start AyaNova server when Windows starts' **IMPORTANT**: You **MUST UNCHECK** the option 'Start AyaNova server when Windows starts'
![SCREENSHOT OF setup window un checked server start with windows](img/ops-install-windows-lan-uncheck.png) ![SCREENSHOT OF setup window un checked server start with windows](img/ops-install-windows-lan-uncheck.png)
@@ -167,12 +179,12 @@ The default installed `config.json` file will initially have the following:
```json ```json
{ {
"AYANOVA_USE_URLS": "http://*:7575", "AYANOVA_USE_URLS": "http://*:7575",
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;", "AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
"AYANOVA_DEFAULT_TRANSLATION": "en", "AYANOVA_DEFAULT_TRANSLATION": "en",
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin", "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin",
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova", "AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
"AYANOVA_LOG_LEVEL": "Info" "AYANOVA_LOG_LEVEL": "Info"
} }
``` ```

View File

@@ -17,17 +17,17 @@ An up to date modern web browser (not Internet Explorer) with Javascript enabled
## AyaNova server system requirements ## AyaNova server system requirements
- OS : Windows 64 bit operating system - OS : Windows 64 bit operating system
- Internet connection : required to install license and to automatically download the Chromium report rendering engine - Internet connection : required to install license and to automatically download the Chromium report rendering engine
- Disk space: minimum 2GB of free disk space - Disk space: minimum 2GB of free disk space
- RAM : 1GB (minimum), 2+ GB (recommended) - RAM : 1GB (minimum), 2+ GB (recommended)
- PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/) - PostgreSQL Server: installation guide [https://www.postgresqltutorial.com/install-postgresql/](https://www.postgresqltutorial.com/install-postgresql/)
- ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer](https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer) - ASP.NET Core Runtime Hosting bundle v6.0.0 or newer : Download [https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer](https://dotnet.microsoft.com/permalink/dotnetcore-current-windows-runtime-bundle-installer)
## Folders ## Folders
- Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder - Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder
- Data files: All data aside from attachment files is stored in the PostgreSQL database. By default AyaNova will store attachment files, logs and backup files in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. Each folder location can be changed via [configuration](ops-config-environment-variables.md). - Data files: All data aside from attachment files is stored in the PostgreSQL database. By default AyaNova will store attachment files, logs and backup files in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. Each folder location can be changed via [configuration](ops-config-environment-variables.md).
## Installation procedure ## Installation procedure
@@ -63,6 +63,18 @@ dotnet --list-runtimes
Once you have ensured the two requirements above are installed and available; download and run the AyaNova network installer: [https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe). Once you have ensured the two requirements above are installed and available; download and run the AyaNova network installer: [https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-lan-setup.exe).
#### Smart screen warning
The setup file is _not_ digitally signed so the first time you run setup you may receive a "Smart Screen" warning from Windows such as the following:
![Smart screen dire warning](img/ops-install-windows-smart-screen-warning.png)
Clicking on **More info** will reveal the following:
![Smart screen more info](img/ops-install-windows-lan-smart-screen-more-info.png)
Use the **`Run anyway`** button to start the installation.
Keep the checkmark on _Start AyaNova server when Windows starts_ and click on _next_. Keep the checkmark on _Start AyaNova server when Windows starts_ and click on _next_.
![SCREENSHOT OF setup window checkmarked server start with windows](img/ops-install-windows-lan-startup.png) ![SCREENSHOT OF setup window checkmarked server start with windows](img/ops-install-windows-lan-startup.png)
@@ -101,12 +113,12 @@ The default installed `config.json` file will initially have the following:
```json ```json
{ {
"AYANOVA_USE_URLS": "http://*:7575", "AYANOVA_USE_URLS": "http://*:7575",
"AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;", "AYANOVA_DB_CONNECTION": "Server=localhost;Username=postgres;Password=YOUR_PASSWORD_HERE;Database=AyaNova;",
"AYANOVA_DEFAULT_TRANSLATION": "en", "AYANOVA_DEFAULT_TRANSLATION": "en",
"AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin", "AYANOVA_BACKUP_PG_DUMP_PATH": "C:\\Program Files\\PostgreSQL\\14\\bin",
"AYANOVA_DATA_PATH": "%ProgramData%\\ayanova", "AYANOVA_DATA_PATH": "%ProgramData%\\ayanova",
"AYANOVA_LOG_LEVEL": "Info" "AYANOVA_LOG_LEVEL": "Info"
} }
``` ```

View File

@@ -14,11 +14,11 @@ For simplicity of use, the "single" installation is intended for users who will
## System requirements ## System requirements
- OS : Windows 64 bit operating system - OS : Windows 64 bit operating system
- Internet connection : required to install license and to automatically download the Chromium report rendering engine - Internet connection : required to install license and to automatically download the Chromium report rendering engine
- Disk space: minimum 2GB of free disk space - Disk space: minimum 2GB of free disk space
- RAM : 1GB (minimum), 2+ GB (recommended) - RAM : 1GB (minimum), 2+ GB (recommended)
- Modern web browser (not Internet Explorer) with Javascript enabled - Modern web browser (not Internet Explorer) with Javascript enabled
## Existing PostgreSQL server ## Existing PostgreSQL server
@@ -30,8 +30,8 @@ The single user installer will use TCP/IP ports 6432 for the PostgreSQL server a
## Folders ## Folders
- Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder - Program files : By default (and recommended) AyaNova server program files will be installed to `C:\Program Files\ayanova` folder
- Data files: AyaNova will store all data in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. This includes all logs, backups and User attachment files. - Data files: AyaNova will store all data in the %ProgramData% folder under `ayanova` which on most computers will be located at `C:\ProgramData\ayanova`. This includes all logs, backups and User attachment files.
## Installation procedure ## Installation procedure
@@ -39,6 +39,18 @@ The single user installer will use TCP/IP ports 6432 for the PostgreSQL server a
[https://www.ayanova.com/download/ayanova-windows-x64-single-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-single-setup.exe) [https://www.ayanova.com/download/ayanova-windows-x64-single-setup.exe](https://www.ayanova.com/download/ayanova-windows-x64-single-setup.exe)
#### Smart screen warning
The setup file is _not_ digitally signed so the first time you run setup you may receive a "Smart Screen" warning from Windows such as the following:
![Smart screen dire warning](img/ops-install-windows-smart-screen-warning.png)
Clicking on **More info** will reveal the following:
![Smart screen more info](img/ops-install-windows-single-smart-screen-more-info.png)
Use the **`Run anyway`** button to start the installation.
2\. Follow the prompts, accepting the license agreement and the defaults. 2\. Follow the prompts, accepting the license agreement and the defaults.
3\. Complete the setup 3\. Complete the setup