My typical actions on the server.
At the first time install python lib:
pip install watchdog --user python
Run script for watching of file changes and sync to server
☢️Be careful with this command!☣️
#for staging
ansible-playbook -i inventories/staging dev.yml --ask-vault-pass
tag:
update_pubkey
ansible-playbook -i inventories/staging init.yml -t update_pubkey --ask-vault-pass
Prepare ssl certs somehow :)
tag:
update_ssl
ansible-playbook -i inventories/staging init.yml -t update_ssl --ask-vault-pass
... and restart containers
ansible-playbook -i inventories/staging main.yml -t 'restart_mongo,restart_parse,restart_nginx,restart_dashboard' --ask-vault-pass
repo_branch=feature-v2
ansible-playbook -i inventories/staging main.yml -t update_repo -e "repo_branch=feature-v2" --ask-vault-pass
ssh_key_path=~/.ssh/your_private_key
ansible-playbook -i inventories/staging main.yml -t update_repo -e "ssh_key_path=~/.ssh/your_private_key" --ask-vault-pass
tag:
update_repo
ansible-playbook -i inventories/staging main.yml -t update_repo --ask-vault-pass
Connect to server by ssh.
ssh root@<your-server-ip> -p9033
Not working? Probably you need to add your public key on the server.
Logs are stored in /var/log/docker/
.
Each container has own logs. For example, parse server logs are available:
cat /var/log/docker/server.log
interactive mode:
tail -f /var/log/docker/server.log
tag:
restart_parse
ansible-playbook -i inventories/staging main.yml -t restart_parse --ask-vault-pass
List of running containers:
docker ps
Restart server:
docker restart parse_server
Open bash terminal in parse_server container:
docker exec -it parse_server bash
See list of things:
ls
Run job:
docker exec -it parse_server node ./cloud/jobs/jobMarkVideosAsOld.js
Please, refer to Jobs
crontab -u parse -l