Chỉ hiển thị lịch của những người trong cây
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Bảo mật Email thương hiệu bằng điện thoại di động. Khi đăng nhập Email, Google sẽ gửi về điện thoại bạn mã xác minh. Nếu không có mã này bạn sẽ không đăng nhập được vào tài khoản. Hướng dẫn này sẽ giúp bạn bảo mật Email tốt hơn. Sau khi . . . Read more
docker exec -it bd0c8ae3e4fe /bin/bash bd0c8ae3e4fe là container id
nginx -s reload
echo | openssl s_client -connect <you server here>:443 2>/dev/null | openssl x509 -noout -dates
Dump and restore a single table from .sql Dump mysqldump db_name table_name > table_name.sql Dumping from a remote database mysqldump -u <db_username> -h <db_host> -p db_name table_name > table_name.sql For further reference: http://www.abbeyworkshop.com/howto/lamp/MySQL_Export_Backup/index.html Restore mysql -u <user_name> -p db_name mysql> source <full_path>/table_name.sql or in one line mysql -u username -p . . . Read more
find abms_* -type d -maxdepth 0 -mindepth 0 -exec tar zcvf {}.tar.gz {} \;