'How to install ERPNext on RHEL 8
I am trying to install ERPNext on RHEL 8. I have no experience with ERPNext installation and RHEL 8 so this is a learning process for me.
Below is where I'm having trouble with the installation. Since this is just for me to learn how to install before I implement it on the production/development server, I decide to use "localhost" as I do not own any domain.
[erp@localhost frappe-bench]$ bench new-site localhost
MySQL root password:
For key character_set_server. Expected value utf8mb4, found value latin1
For key collation_server. Expected value utf8mb4_unicode_ci, found value latin1_swedish_ci
================================================================================
Creation of your site - localhost failed because MariaDB is not properly
configured. If using version 10.2.x or earlier, make sure you use the
the Barracuda storage engine.
Please verify the settings above in MariaDB's my.cnf. Restart MariaDB. And
then run `bench new-site localhost` again.
================================================================================
Database settings do not match expected values; stopping database setup.
The guide that I'm following is here
I am a beginner with server deployment, RHEL and related topics.
####################### -UPDATED- #######################
I managed to complete the installation. All I need to do was adding a few lines to the my.cnf file. Then, everything work just fine!
Solution 1:[1]
If you open the developer console of your browser, in the Console tab you can see there is error Uncaught SyntaxError: Invalid left-hand side in assignment it seems you have a typo in your code player/currentTime=0; it should be player.currentTime=0;.
It will solve the problem. always be careful with the typos.
Solution 2:[2]
Thanks a lot for that one!. It worked. How come Brackets (dev tool I'm using) has not shown that as mistake? Also dev tool in chrome has not pointed mistake here.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | sajjad rezaei |
| Solution 2 | Mariusz Rozmyslowicz |
