Skip to content

Instantly share code, notes, and snippets.

@tikg
Created February 3, 2023 01:29
Show Gist options
  • Save tikg/0f46e4e96d6f04f65736f0d88eef8875 to your computer and use it in GitHub Desktop.
Save tikg/0f46e4e96d6f04f65736f0d88eef8875 to your computer and use it in GitHub Desktop.

Postgresql Setup with Concrete CMS

go inside mysql envt

mysql 
create database rnnwebdb;
CREATE USER 'rnnweb'@'localhost' IDENTIFED BY 'mxxxxzg';
use rnnwebdb;
flush privileges;
exit

separate terminal, in server shell. command to confirm connection
mysql -h 10.0.79.233 -u rnnwebuser -p mxxxxzg rnnwedb

go to path and search for concrete

cd /var/www/html/training
###/vendor/bin/concrete c5:install -i
./public/concrete/bin/concrete
ls /var/www/html/training/public

find | grep concrete
find / -name "concrete"

/var/www/html/training/vendor/concrete5/core/bin/concrete c5:install -i

scp concrete-cms.zip testlocal@srnnw001:/tmp

unzip concrete-cms.zip 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment