This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # TYPE DATABASE USER ADDRESS METHOD | |
| # IPv4 local connections: | |
| host all all 127.0.0.1/32 md5 | |
| host all all 192.168.0.0/0 md5 | |
| # IPv6 local connections: | |
| host all all ::1/128 md5 | |
| # Allow replication connections from localhost, by a user with the | |
| # replication privilege. | |
| host replication all 0.0.0.0/0 md5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- delete duplicate rss - postgresql | |
| DELETE FROM rss T1 | |
| USING rss T2 | |
| WHERE T1.ctid < T2.ctid | |
| AND T1.rss_source_id = T2.rss_source_id | |
| AND T1.title = T2.title | |
| AND T1.link = T2.link; | |
| -- delete duplicate rss - mysql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ALTER DATABASE dbname CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; | |
| GRANT ALL PRIVILEGES ON dbname to 'geo'@'%'; | |
| GRANT ALL PRIVILEGES ON dbname.* to 'geo'@'%'; | |
| FLUSH PRIVILEGES; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2018, Gheorghita Stanciu gheorghita(dot)stanciu(at)gmail(dot)com | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this | |
| list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, | |
| this list of conditions and the following disclaimer in the documentation | |
| and/or other materials provided with the distribution. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2018, Gheorghita Stanciu gheorghita(dot)stanciu(at)gmail(dot)com | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this | |
| list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, | |
| this list of conditions and the following disclaimer in the documentation | |
| and/or other materials provided with the distribution. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2018, Gheorghita Stanciu gheorghita(dot)stanciu(at)gmail(dot)com | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this | |
| list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, | |
| this list of conditions and the following disclaimer in the documentation | |
| and/or other materials provided with the distribution. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Copyright (c) 2018, Gheorghita Stanciu gheorghita(dot)stanciu(at)gmail(dot)com | |
| All rights reserved. | |
| Redistribution and use in source and binary forms, with or without | |
| modification, are permitted provided that the following conditions are met: | |
| 1. Redistributions of source code must retain the above copyright notice, this | |
| list of conditions and the following disclaimer. | |
| 2. Redistributions in binary form must reproduce the above copyright notice, | |
| this list of conditions and the following disclaimer in the documentation | |
| and/or other materials provided with the distribution. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sources: | |
| https://jekil.sexy/blog/2015/this-ovf-package-requires-unsupported-hardware.html | |
| https://superuser.com/questions/245775/is-there-a-built-in-checksum-utility-on-windows-7/898377#898377 | |
| https://lukebarklimore.wordpress.com/2012/10/25/esxi-5-1-fixing-failed-to-deploy-ovf-package-the-task-was-canceled-by-a-user/ | |
| Download, install VMware Open Virtualization Format Tool (and put it in your path variable) | |
| https://communities.vmware.com/community/vmtn/server/vsphere/automationtools/ovf | |
| Now you can convert the OVA in an OVF | |
| ovftool.exe --lax source.ova destination.ovf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # get iso | |
| wget http://releases.ubuntu.com/16.04.4/ubuntu-16.04.4-server-amd64.iso | |
| # create vm path | |
| mkdir -p /backup/virtual_machines/LicensePlates/Snapshots | |
| cd /backup/virtual_machines/LicensePlates | |
| # VM name | |
| VM='LicensePlates' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CRConfig.xml | |
| <?xml version="1.0" encoding="utf-8"?> | |
| <CrystalReportEngine-configuration> | |
| <!-- <reportlocation>/reports</reportlocation> --> | |
| <timeout>10</timeout> | |
| <keycode>MyLicenseKeyCodeHere</keycode> | |
| </CrystalReportEngine-configuration> | |
| # log4j.properties |