This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We have released new RouterOS versions in bugfix, current and release candidate channels. | |
To upgrade, click "Check for updates" at "System/Package" in your RouterOS configuration interface, or head to our download page: http://www.mikrotik.com/download | |
What's new in 6.37.5 (2017-Mar-09 11:54): | |
!) www - fixed http server vulnerability; | |
*) chr - fixed problem when transmit speed was reduced by interface queues; | |
*) dhcp - do not listen on IPv4/IPv6 client to IPv6 MLD packets; | |
*) dude - (changes discussed here: https://wiki.mikrotik.com/wiki/Manual:The_Dude_v6/dude_v6.xx_changelog); |
-
Para modificar vms KVM em execução podemos usar o virsh.
-
Para o virsh se conectar ao "kvm" (libvirt) será necessário criar uma credencial no libvirt:
# saslpasswd2 -a libvirt glichti
- Para verificar as credenciais já existentes:
# sasldblistusers2 -f /etc/libvirt/passwd.db
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cp /usr/share/pve-manager/ext6/pvemanagerlib.js /usr/share/pve-manager/ext6/pvemanagerlib.js.bck | |
sed -i '797s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js | |
sed -i '798s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js | |
sed -i '799s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js | |
sed -i '800s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js | |
sed -i '801s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js | |
sed -i '802s/^/\/\//' /usr/share/pve-manager/ext6/pvemanagerlib.js |
mkdir -p /var/www/letsencrypt
location /.well-known/acme-challenge {
root /var/www/letsencrypt;
}
git clone https://github.com/certbot/certbot /opt/letsencrypt
ln -s /opt/letsencrypt/certbot-auto /usr/bin/certbot
certbot certonly --expand --agree-tos --text --non-interactive \
--standalone \
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#title :wildfly-install-newrelic.sh | |
#description :The script to install newrelic in Wildfly 10.x | |
#usage :/bin/bash wildfly-install-newrelic.sh | |
NR_VERSION=3.34.0 | |
NR_FILENAME=newrelic-java-${NR_VERSION} | |
NR_ARCHIVE_NAME=${NR_FILENAME}.tar.xz | |
NR_DOWNLOAD_ADDRESS=https://www.dropbox.com/s/hslwpa8oyeyqet1/${NR_ARCHIVE_NAME} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#title :wildfly-install-oracle.sh | |
#description :The script to install oracle drive in Wildfly 10.x | |
#usage :/bin/bash wildfly-install-oracle.sh | |
DRIVER_VERSION=11.2.0 | |
DRIVER_FILENAME=ojdbc6-${DRIVER_VERSION} | |
DRIVER_UNTAR_NAME=${DRIVER_FILENAME}.jar | |
DRIVER_DOWNLOAD_ADDRESS=hhttps://www.dropbox.com/s/6smy2smg71jhgnx/ojdbc6-11.2.0.jar |