Connect to the XenServer via SSH.
Create designed directory, e.g.:
mkdir /iso
Then run following command:
Put in “location=” param correct path
Continue reading “XenServer create local ISO Storage Repository”
DevBlog – How to solve everyday programming and administration problems
How to solve PHP, CSS, HTML problems, some administration tips about Linux, Apache, MySql and more…
Connect to the XenServer via SSH.
Create designed directory, e.g.:
mkdir /iso
Then run following command:
Put in “location=” param correct path
Continue reading “XenServer create local ISO Storage Repository”
First enable auto-start on XenServer:
# xe pool-list
uuid ( RO) : XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
Copy UUID and use command:
# xe pool-param-set uuid=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX other-config:auto_poweron=true
Continue reading “How to Setup XenServer 7 to enable Auto-Start Virtual Machines”
MariaDb binarny log size is depended on number of days to store on hard drive.
You can change this limit without rebooting server.
See example below how to set limit of 10 days.
First check you are satisfied with date period:
mysql> select date(now()) + interval 0 second - interval 10 day;
+---------------------------------------------------+
| date(now()) + interval 0 second - interval 10 day |
+---------------------------------------------------+
| 2016-12-20 00:00:00 |
+---------------------------------------------------+
1 row in set (0.00 sec)
mysql>
Continue reading “How to limit binary logs in MariaDB”