forked from Vateron-Media/XC_VM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
542 lines (476 loc) · 23.7 KB
/
install
File metadata and controls
542 lines (476 loc) · 23.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
#!/usr/bin/python3
import subprocess, os, random, string, sys, shutil, socket, time, io, math
if sys.version_info.major != 3:
print("Please run with python3.")
sys.exit(1)
rPath = os.path.dirname(os.path.realpath(__file__))
rPackages = [
"cpufrequtils",
"iproute2",
"net-tools",
"dirmngr",
"gpg-agent",
"software-properties-common",
"libmaxminddb0",
"libmaxminddb-dev",
"mmdb-bin",
"libcurl4",
"libgeoip-dev",
"libxslt1-dev",
"libonig-dev",
"e2fsprogs",
"wget",
"mariadb-server",
"mariadb-client",
"sysstat",
"alsa-utils",
"v4l-utils",
"mcrypt",
"certbot",
"iptables-persistent",
"libjpeg-dev",
"libpng-dev",
"libharfbuzz-dev",
"libfribidi-dev",
"libogg0",
"libnuma1",
"xz-utils",
"zip",
"unzip",
"libssh2-1t64",
"php-ssh2",
"cron"
]
rRemove = ["mysql-server"]
rMySQLCnfTemplate = """# XC_VM\n[client]\nport = 3306\n\n[mysqld_safe]\nnice = 0\n\n[mysqld]\nuser = mysql\nport = 3306\nbasedir = /usr\ndatadir = /var/lib/mysql\ntmpdir = /tmp\nlc-messages-dir = /usr/share/mysql\nskip-external-locking\nskip-name-resolve\nbind-address = *\n\n# MyISAM\nkey_buffer_size = {{KEY_BUFFER}}M\nmyisam_sort_buffer_size = 4M\nmyisam-recover-options = BACKUP\nmax_length_for_sort_data = 4096\n\n# Connections\nmax_connections = {{MAX_CONNECTIONS}}\nback_log = {{BACK_LOG}}\nmax_connect_errors = 1000\n\n# Packet and cache\nmax_allowed_packet = 16M\nopen_files_limit = 2048\ninnodb_open_files = 1024\ntable_open_cache = 1024\ntable_definition_cache = 1024\n\n# Temp tables\ntmp_table_size = {{TMP_TABLE_SIZE}}M\nmax_heap_table_size = {{TMP_TABLE_SIZE}}M\n\n# InnoDB\ninnodb_buffer_pool_size = {{BUFFER_POOL_SIZE}}\ninnodb_buffer_pool_instances = {{BUFFER_POOL_INSTANCES}}\ninnodb_read_io_threads = 4\ninnodb_write_io_threads = 4\ninnodb_flush_log_at_trx_commit = 1\ninnodb_flush_method = O_DIRECT\ninnodb_file_per_table = 1\ninnodb_io_capacity = 1000\ninnodb_table_locks = 1\ninnodb_lock_wait_timeout = 30\n\n# Logging\nexpire_logs_days = 7\nmax_binlog_size = 64M\n\n# Query cache – disabled\nquery_cache_limit = 0\nquery_cache_size = 0\nquery_cache_type = 0\n\nperformance_schema = 0\n\nsql_mode = "NO_ENGINE_SUBSTITUTION"\n\n[mariadb]\nthread_cache_size = {{THREAD_CACHE}}\nthread_handling = pool-of-threads\nthread_pool_size = 4\nthread_pool_idle_timeout = 20\nthread_pool_max_threads = 256\n\n[mysqldump]\nquick\nquote-names\nmax_allowed_packet = 16M\n\n[mysql]\n\n[isamchk]\nkey_buffer_size = 8M"""
rConfig = '; XC_VM Configuration\n; -----------------\n; To change your username or password, modify BOTH\n; below and XC_VM will read and re-encrypt them.\n\n[XC_VM]\nhostname = "127.0.0.1"\ndatabase = "xc_vm"\nport = 3306\nserver_id = 1\n\n[Encrypted]\nusername = "%s"\npassword = "%s"'
rRedisConfig = 'bind *\nprotected-mode yes\nport 6379\ntcp-backlog 511\ntimeout 0\ntcp-keepalive 300\ndaemonize yes\nsupervised no\npidfile /home/xc_vm/bin/redis/redis-server.pid\nloglevel warning\nlogfile /home/xc_vm/bin/redis/redis-server.log\ndatabases 1\nalways-show-logo yes\nstop-writes-on-bgsave-error no\nrdbcompression no\nrdbchecksum no\ndbfilename dump.rdb\ndir /home/xc_vm/bin/redis/\nslave-serve-stale-data yes\nslave-read-only yes\nrepl-diskless-sync no\nrepl-diskless-sync-delay 5\nrepl-disable-tcp-nodelay no\nslave-priority 100\nrequirepass #PASSWORD#\nmaxclients 655350\nlazyfree-lazy-eviction no\nlazyfree-lazy-expire no\nlazyfree-lazy-server-delay no\nslave-lazy-flush no\nappendonly no\nappendfilename "appendonly.aof"\nappendfsync everysec\nno-appendfsync-on-rewrite no\nauto-aof-rewrite-percentage 100\nauto-aof-rewrite-min-size 64mb\naof-load-truncated yes\naof-use-rdb-preamble no\nlua-time-limit 5000\nslowlog-log-slower-than 10000\nslowlog-max-len 128\nlatency-monitor-threshold 0\nnotify-keyspace-events ""\nhash-max-ziplist-entries 512\nhash-max-ziplist-value 64\nlist-max-ziplist-size -2\nlist-compress-depth 0\nset-max-intset-entries 512\nzset-max-ziplist-entries 128\nzset-max-ziplist-value 64\nhll-sparse-max-bytes 3000\nactiverehashing yes\nclient-output-buffer-limit normal 0 0 0\nclient-output-buffer-limit slave 256mb 64mb 60\nclient-output-buffer-limit pubsub 32mb 8mb 60\nhz 10\naof-rewrite-incremental-fsync yes\nsave 60 1000\nserver-threads 4\nserver-thread-affinity true'
rSysCtl = "# XC_VM\n\nnet.ipv4.tcp_congestion_control = bbr\nnet.core.default_qdisc = fq\nnet.ipv4.tcp_rmem = 8192 87380 134217728\nnet.ipv4.udp_rmem_min = 16384\nnet.core.rmem_default = 262144\nnet.core.rmem_max = 268435456\nnet.ipv4.tcp_wmem = 8192 65536 134217728\nnet.ipv4.udp_wmem_min = 16384\nnet.core.wmem_default = 262144\nnet.core.wmem_max = 268435456\nnet.core.somaxconn = 1000000\nnet.core.netdev_max_backlog = 250000\nnet.core.optmem_max = 65535\nnet.ipv4.tcp_max_tw_buckets = 1440000\nnet.ipv4.tcp_max_orphans = 16384\nnet.ipv4.ip_local_port_range = 2000 65000\nnet.ipv4.tcp_no_metrics_save = 1\nnet.ipv4.tcp_slow_start_after_idle = 0\nnet.ipv4.tcp_fin_timeout = 15\nnet.ipv4.tcp_keepalive_time = 300\nnet.ipv4.tcp_keepalive_probes = 5\nnet.ipv4.tcp_keepalive_intvl = 15\nfs.file-max=20970800\nfs.nr_open=20970800\nfs.aio-max-nr=20970800\nnet.ipv4.tcp_timestamps = 1\nnet.ipv4.tcp_window_scaling = 1\nnet.ipv4.tcp_mtu_probing = 1\nnet.ipv4.route.flush = 1\nnet.ipv6.route.flush = 1"
rSystemd = "[Unit]\nSourcePath=/home/xc_vm/service\nDescription=XC_VM Service\nAfter=network.target\nStartLimitIntervalSec=0\n\n[Service]\nType=simple\nUser=root\nRestart=always\nRestartSec=1\nExecStart=/bin/bash /home/xc_vm/service start\nExecRestart=/bin/bash /home/xc_vm/service restart\nExecStop=/bin/bash /home/xc_vm/service stop\n\n[Install]\nWantedBy=multi-user.target"
rChoice = "23456789abcdefghjkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ"
rConfigPath = "/home/xc_vm/config/config.ini"
rVersions = {
"20.04": "focal",
"20.10": "groovy",
"22.04": "jammy",
"22.10": "kinetic",
"24.04": "noble",
"24.10": "oracular",
}
def get_system_ram_mb():
"""Get total system RAM in MB"""
try:
with open('/proc/meminfo', 'r') as f:
for line in f:
if line.startswith('MemTotal:'):
mem_kb = int(line.split()[1])
return mem_kb // 1024 # Convert to MB
except:
pass
return 1024 # Value by default if unable to determine
def generate_mysql_config(total_ram_mb):
"""Generate MySQL configuration based on total RAM"""
buffer_pool_mb = int(total_ram_mb * 0.25)
if total_ram_mb < 512:
buffer_pool_mb = 64
max_connections = 30
elif total_ram_mb < 1024:
buffer_pool_mb = min(buffer_pool_mb, 128)
max_connections = 50
elif total_ram_mb < 2048:
buffer_pool_mb = min(buffer_pool_mb, 256)
max_connections = 80
elif total_ram_mb < 4096:
buffer_pool_mb = min(buffer_pool_mb, 512)
max_connections = 120
elif total_ram_mb < 8192:
buffer_pool_mb = min(buffer_pool_mb, 1024)
max_connections = 150
else:
buffer_pool_mb = min(buffer_pool_mb, 2048)
max_connections = 200
buffer_pool_size = (
f"{buffer_pool_mb // 1024}G"
if buffer_pool_mb >= 1024 else f"{buffer_pool_mb}M"
)
key_buffer = min(buffer_pool_mb // 8, 32)
tmp_table_size = min(buffer_pool_mb // 4, 64)
config = rMySQLCnfTemplate
config = config.replace("{{TOTAL_RAM}}", str(total_ram_mb))
config = config.replace("{{KEY_BUFFER}}", str(key_buffer))
config = config.replace("{{MAX_CONNECTIONS}}", str(max_connections))
config = config.replace("{{BACK_LOG}}", str(min(max_connections // 2, 256)))
config = config.replace("{{TMP_TABLE_SIZE}}", str(tmp_table_size))
config = config.replace("{{BUFFER_POOL_SIZE}}", buffer_pool_size)
config = config.replace(
"{{BUFFER_POOL_INSTANCES}}",
"1" if buffer_pool_mb < 1024 else "2"
)
config = config.replace(
"{{THREAD_CACHE}}",
str(min(max_connections // 4, 64))
)
printc(f"RAM detected: {total_ram_mb}MB", col.OKGREEN)
printc(f"Buffer pool configured: {buffer_pool_size} ({buffer_pool_mb}MB)", col.OKGREEN)
printc(f"Max connections: {max_connections}", col.OKGREEN)
return config
class col:
HEADER = "\033[95m"
OKBLUE = "\033[94m"
OKGREEN = "\033[92m"
WARNING = "\033[93m"
FAIL = "\033[91m"
ENDC = "\033[0m"
BOLD = "\033[1m"
UNDERLINE = "\033[4m"
def generate(length=32):
return "".join(random.choice(rChoice) for i in range(length))
def getIP():
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(("8.8.8.8", 80))
return s.getsockname()[0]
def printc(rText, rColour=col.OKBLUE, rPadding=0):
rLeft = int(30 - (len(rText) / 2))
rRight = 60 - rLeft - len(rText)
print(
"%s |--------------------------------------------------------------| %s"
% (rColour, col.ENDC)
)
for i in range(rPadding):
print(
"%s | | %s"
% (rColour, col.ENDC)
)
print("%s | %s%s%s | %s" % (rColour, " " * rLeft, rText, " " * rRight, col.ENDC))
for i in range(rPadding):
print(
"%s | | %s"
% (rColour, col.ENDC)
)
print(
"%s |--------------------------------------------------------------| %s"
% (rColour, col.ENDC)
)
print(" ")
if __name__ == "__main__":
##################################################
# START #
##################################################
try:
rVersion = os.popen("lsb_release -sr").read().strip()
except:
rVersion = None
if not rVersion in rVersions:
printc("Unsupported Operating System")
sys.exit(1)
if not os.path.exists("./xc_vm.tar.gz"):
print(
"Fatal Error: xc_vm.tar.gz is missing. Please download it from XC_VM billing panel."
)
sys.exit(1)
printc("XC_VM", col.OKGREEN, 2)
rHost = "127.0.0.1"
rServerID = 1
rUsername = generate()
rPassword = generate()
rDatabase = "xc_vm"
rPort = 3306
if os.path.exists("/home/xc_vm/"):
printc("XC_VM Directory Exists!")
while True:
rAnswer = input("Continue and overwrite? (Y / N) : ")
if rAnswer.upper() in ["Y", "N"]:
break
if rAnswer == "N":
sys.exit(1)
with io.open(rPath + "/credentials.txt", "w", encoding="utf-8") as rFile:
rFile.write("MariaDB Username: {}\nMariaDB Password: {}".format(rUsername, rPassword))
##################################################
# UPGRADE #
##################################################
# printc("Patching OpenSSL")
# os.system(
# "wget -O /tmp/libssl1.1_1.1.1f-1ubuntu2_amd64.deb http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb"
# )
# os.system("sudo dpkg -i /tmp/libssl1.1_1.1.1f-1ubuntu2_amd64.deb")
# os.remove("/tmp/libssl1.1_1.1.1f-1ubuntu2_amd64.deb")
if rVersion.startswith("20."):
printc("Installing OpenSSL 3 for compatibility with PHP binaries (Ubuntu 20.x)")
os.system(
"wget -O /tmp/libssl3_3.0.2-0ubuntu1_amd64.deb "
"http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl3_3.0.2-0ubuntu1_amd64.deb"
)
os.system("sudo dpkg -i /tmp/libssl3_3.0.2-0ubuntu1_amd64.deb || true")
os.remove("/tmp/libssl3_3.0.2-0ubuntu1_amd64.deb")
##################################################
# UPGRADE #
##################################################
printc("Preparing Installation")
for rFile in [
"/var/lib/dpkg/lock-frontend",
"/var/cache/apt/archives/lock",
"/var/lib/dpkg/lock",
"/var/lib/apt/lists/lock",
]:
if os.path.exists(rFile):
try:
os.remove(rFile)
except:
pass
printc("Updating system")
os.system("sudo apt-get update")
os.system(
"sudo DEBIAN_FRONTEND=noninteractive apt-get -yq install software-properties-common"
)
if rVersion in rVersions:
printc("Adding repo: Ubuntu %s" % rVersion)
os.system(
"sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
)
os.system('curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash -s -- --mariadb-server-version="mariadb-11.4"')
else:
print("Installing system version of MariaDB")
os.system("sudo add-apt-repository -y ppa:maxmind/ppa")
os.system("sudo apt-get update")
for rPackage in rRemove:
printc("Removing %s" % rPackage)
os.system("sudo apt-get remove %s -y" % rPackage)
for rPackage in rPackages:
printc("Installing %s" % rPackage)
os.system(
"sudo DEBIAN_FRONTEND=noninteractive apt-get -yq install %s" % rPackage
)
try:
subprocess.check_output("getent passwd xc_vm".split())
except:
printc("Creating user")
os.system(
"sudo adduser --system --shell /bin/false --group --disabled-login xc_vm"
)
if not os.path.exists("/home/xc_vm"):
os.mkdir("/home/xc_vm")
##################################################
# INSTALL #
##################################################
printc("Installing XC_VM")
if os.path.exists("./xc_vm.tar.gz"):
os.system('sudo tar -zxvf "./xc_vm.tar.gz" -C "/home/xc_vm/"')
if not os.path.exists("/home/xc_vm/status"):
printc("Failed to extract! Exiting")
sys.exit(1)
##################################################
# MariaDB #
##################################################
printc("Configuring MariaDB")
# Get total system RAM
total_ram_mb = get_system_ram_mb()
rMySQLCnf = generate_mysql_config(total_ram_mb)
rCreate = True
if os.path.exists("/etc/mysql/my.cnf"):
if open("/etc/mysql/my.cnf", "r").read(5) == "# XC_VM":
rCreate = False
if rCreate:
rFile = io.open("/etc/mysql/my.cnf", "w", encoding="utf-8")
rFile.write(rMySQLCnf)
rFile.close()
os.system("sudo systemctl restart mariadb || sudo service mariadb restart")
rExtra = ""
rRet = os.system('mariadb -u root -e "SELECT VERSION();"')
if rRet != 0:
while True:
rExtra = " -p%s" % input("Root MariaDB Password: ")
rRet = os.system('mariadb -u root%s -e "SELECT VERSION();"' % rExtra)
if rRet == 0:
break
else:
printc("Invalid password! Please try again.")
os.system(
'sudo mariadb -u root%s -e "DROP DATABASE IF EXISTS xc_vm; CREATE DATABASE IF NOT EXISTS xc_vm;"'
% rExtra
)
os.system(
'sudo mariadb -u root%s -e "DROP DATABASE IF EXISTS xc_vm_migrate; CREATE DATABASE IF NOT EXISTS xc_vm_migrate;"'
% rExtra
)
os.system(
'sudo mariadb -u root%s xc_vm < "/home/xc_vm/bin/install/database.sql"' % rExtra
)
os.system(
"sudo mariadb -u root%s -e \"CREATE USER '%s'@'localhost' IDENTIFIED BY '%s';\""
% (rExtra, rUsername, rPassword)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON xc_vm.* TO '%s'@'localhost';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON xc_vm_migrate.* TO '%s'@'localhost';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON mysql.* TO '%s'@'localhost';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT GRANT OPTION ON xc_vm.* TO '%s'@'localhost';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"CREATE USER '%s'@'127.0.0.1' IDENTIFIED BY '%s';\""
% (rExtra, rUsername, rPassword)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON xc_vm.* TO '%s'@'127.0.0.1';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON xc_vm_migrate.* TO '%s'@'127.0.0.1';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT ALL PRIVILEGES ON mysql.* TO '%s'@'127.0.0.1';\""
% (rExtra, rUsername)
)
os.system(
"sudo mariadb -u root%s -e \"GRANT GRANT OPTION ON xc_vm.* TO '%s'@'127.0.0.1';\""
% (rExtra, rUsername)
)
os.system('sudo mariadb -u root%s -e "FLUSH PRIVILEGES;"' % rExtra)
rConfigData = rConfig % (rUsername, rPassword)
rFile = io.open(rConfigPath, "w", encoding="utf-8")
rFile.write(rConfigData)
rFile.close()
##################################################
# CONFIGURE #
##################################################
printc("Configuring System")
if not "/home/xc_vm/" in open("/etc/fstab").read():
rFile = io.open("/etc/fstab", "a", encoding="utf-8")
rFile.write(
"\ntmpfs /home/xc_vm/content/streams tmpfs defaults,noatime,nosuid,nodev,noexec,mode=1777,size=90% 0 0\ntmpfs /home/xc_vm/tmp tmpfs defaults,noatime,nosuid,nodev,noexec,mode=1777,size=6G 0 0"
)
rFile.close()
printc("If you want to change the ports, enter new values, or leave empty to use the default ports")
while True:
http_port = input("HTTP port (default 80): ").strip()
if not http_port:
http_port = "80"
break
if http_port.isdigit() and 1 <= int(http_port) <= 65535:
break
printc("Error: port must be a number between 1 and 65535")
while True:
https_port = input("HTTPS port (default 443): ").strip()
if not https_port:
https_port = "443"
break
if https_port.isdigit() and 1 <= int(https_port) <= 65535:
break
printc("Error: port must be a number between 1 and 65535")
# Write HTTP ports configuration
http_conf_path = "/home/xc_vm/bin/nginx/conf/ports/http.conf"
with io.open(http_conf_path, "w", encoding="utf-8") as rFile:
rFile.write(f"listen {http_port};")
# Write HTTPS ports configuration
https_conf_path = "/home/xc_vm/bin/nginx/conf/ports/https.conf"
with io.open(https_conf_path, "w", encoding="utf-8") as rFile:
rFile.write(f"listen {https_port} ssl;")
print(f"Ports configured: HTTP - {http_port}, HTTPS - {https_port}")
if os.path.exists("/etc/init.d/xc_vm"):
os.remove("/etc/init.d/xc_vm")
if os.path.exists("/etc/systemd/system/xc_vm.service"):
os.remove("/etc/systemd/system/xc_vm.service")
if not os.path.exists("/etc/systemd/system/xc_vm.service"):
rFile = io.open("/etc/systemd/system/xc_vm.service", "w", encoding="utf-8")
rFile.write(rSystemd)
rFile.close()
os.system("sudo chmod +x /etc/systemd/system/xc_vm.service")
os.system("sudo systemctl daemon-reload")
os.system("sudo systemctl enable xc_vm")
print(
"Custom sysctl.conf - If you have your own custom sysctl.conf, type N or it will be overwritten. If you don't know what a sysctl configuration is, type Y as it will correctly set your TCP settings and open file limits."
)
print(" ")
while True:
rAnswer = input("Overwrite sysctl configuration? Recommended! (Y / N): ")
if rAnswer.upper() in ["Y", "N"]:
break
if rAnswer.upper() == "Y":
try:
os.system("sudo modprobe ip_conntrack")
except:
pass
try:
rFile = io.open("/etc/sysctl.conf", "w", encoding="utf-8")
rFile.write(rSysCtl)
rFile.close()
os.system("sudo sysctl -p >/dev/null 2>&1")
rFile = open("/home/xc_vm/config/sysctl.on", "w")
rFile.close()
except:
print("Failed to write to sysctl file.")
else:
if os.path.exists("/home/xc_vm/config/sysctl.on"):
os.remove("/home/xc_vm/config/sysctl.on")
if not "DefaultLimitNOFILE=655350" in open("/etc/systemd/system.conf").read():
os.system(
'sudo echo "\nDefaultLimitNOFILE=655350" >> "/etc/systemd/system.conf"'
)
os.system('sudo echo "\nDefaultLimitNOFILE=655350" >> "/etc/systemd/user.conf"')
if not os.path.exists("/home/xc_vm/bin/redis/redis.conf"):
rFile = io.open("/home/xc_vm/bin/redis/redis.conf", "w", encoding="utf-8")
rFile.write(rRedisConfig)
rFile.close()
##################################################
# ACCESS CODE #
##################################################
rCodeDir = "/home/xc_vm/bin/nginx/conf/codes/"
rHasAdmin = None
for rCode in os.listdir(rCodeDir):
if rCode.endswith(".conf"):
if rCode.split(".")[0] == "setup":
os.remove(rCodeDir + "setup.conf")
elif "/home/xc_vm/admin" in open(rCodeDir + rCode, "r").read():
rHasAdmin = rCode
if not rHasAdmin:
rCode = generate(8)
os.system(
"sudo mariadb -u root%s -e \"USE xc_vm; INSERT INTO access_codes(code, type, enabled, groups) VALUES('%s', 0, 1, '[1]');\""
% (rExtra, rCode)
)
rTemplate = open(rCodeDir + "template").read()
rTemplate = rTemplate.replace("#WHITELIST#", "")
rTemplate = rTemplate.replace("#TYPE#", "admin")
rTemplate = rTemplate.replace("#CODE#", rCode)
rTemplate = rTemplate.replace("#BURST#", "500")
rFile = io.open("%s%s.conf" % (rCodeDir, rCode), "w", encoding="utf-8")
rFile.write(rTemplate)
rFile.close()
else:
rCode = rHasAdmin.split(".")[0]
##################################################
# FINISHED #
##################################################
os.system("sudo mount -a >/dev/null 2>&1")
os.system("sudo chown xc_vm:xc_vm -R /home/xc_vm >/dev/null 2>&1")
os.system("sudo systemctl daemon-reload")
os.system("sudo setcap 'cap_net_bind_service=+ep' /home/xc_vm/bin/nginx/sbin/nginx")
os.system("sudo systemctl start xc_vm")
time.sleep(10)
os.system("sudo /home/xc_vm/status 1")
os.system("sudo chown xc_vm:xc_vm -R /home/xc_vm/config/")
os.system(
"sudo /home/xc_vm/bin/php/bin/php /home/xc_vm/includes/cli/startup.php >/dev/null 2>&1"
)
time.sleep(3)
os.system("service xc_vm restart")
printc("Installation completed!", col.OKGREEN, 2)
printc("Continue Setup: http://%s:%s/%s" % (getIP(),http_port, rCode))
print(" ")
printc("Your MariaDB credentials have been saved to:")
printc(rPath + "/credentials.txt")
print(" ")
printc("MariaDB Configuration Summary:")
printc(f" Total RAM: {total_ram_mb}MB")
print(" ")
printc("Please move this file somewhere safe!")