$ nmcli c
nmcli d wifi list
Scenario:
You need to update some configuration but you dont have
username and password,
no access in the database as well,
Drush is not an option as well,
MTA (mail) is not installed in the server,
BUT you have access to the code.
Luckily there is a trick to gain an access with the above restrictions.
Suppose you have a code like this.
$node = entity_create('node', array('type' => 'info'));
$entity = entity_metadata_wrapper('node', $node);
// Node title.
$entity->title = $info->name;
// Address.
According to cp
man page. cp
can copy from multiple sources, but can't copy to multiple destinations. See man cp
for more info.
tee be.de{v,v-1,v-2,v-3}/app/sites/default/settings.php < be.staging/app/sites/default/settings.php
In order to check if Redis is really working.
First, flush all keys stored in redis in order to remove old cache entries
$ redis-cli FLUSHALL
Monitor REDIS realtime.
$ redis-cli MONITOR
ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }'
ps --no-headers -o "rss,cmd" -C apache2 | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }'
This is a simple way of importing MySQL database in Docker.
In you Dockerfile you must have a shared folder. Shared folder is a directory in your host machine that is mounted to Docker instance.
Put the exported sql file in the shared folder.
Login to your Docker instance via docker exec -it DOCKER_CONTAINER_ID bin/bash
.
Login to MySQL via mysql -u USERNAME -p
.
php -r "readfile('https://s3.amazonaws.com/files.drush.org/drush.phar');" > /tmp/drush
chmod +x /tmp/drush
mv /tmp/drush /usr/bin/drush
a2query -M
watch "echo stats | nc IP PORT"