I hereby claim:
- I am gihyunlee on github.
- I am ghlco (https://keybase.io/ghlco) on keybase.
- I have a public key whose fingerprint is F5F1 5C03 F359 D613 D581 E50D 6B3D CF13 C818 5079
To claim this, I am signing this object:
Prerequisite | |
One instance of Alfresco on mysql, one postgresl of exactly the same version (schema version). | |
Step 1. Dump database | |
mysqldump --port 3306 -u alfresco --password=alfloftux -h 127.0.0.1 --databases alfresco --skip-comments --skip-extended-insert --no-create-db --hex-blob --default-character-set=utf8 --skip-triggers --compact --no-create-info --skip-quote-names > mydump.sql | |
Step 2. Dump local Postgres schema | |
You can install a clean version of Alfresco to use as for schema dump | |
(need to insert command for dump here) |
[Unit] | |
Description=Alfresco Content Services | |
[Service] | |
Type=forking | |
ExecStart=/opt/alfresco-content-services/alfresco.sh start | |
ExecStop=/opt/alfresco-content-services/alfresco.sh stop | |
Restart=always | |
User=ubuntu | |
WorkingDirectory=/opt/alfresco-content-services/logs |
[Unit] | |
Description=Alfresco Process Services | |
After=alfresco.service | |
Requires=alfresco.service | |
[Service] | |
Type=forking | |
ExecStart=/opt/alfresco-process-services/start-process-services-postgres.sh | |
ExecStop=/opt/alfresco-process-services/stop-process-services-postgres.sh |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
echo "What should the Application be called (no spaces allowed e.g. GCal)?" | |
read inputline | |
name="$inputline" | |
echo "What is the url (e.g. https://www.google.com/calendar/render)?" | |
read inputline | |
url="$inputline" |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# --------------------------------------------------------------------------- | |
# | |
# Description: This file holds all my BASH configurations and aliases | |
# | |
# Sections: | |
# 1. Environment Configuration | |
# 2. Make Terminal Better (remapping defaults and adding functionality) | |
# 3. File and Folder Management | |
# 4. Searching | |
# 5. Process Management |