Can't run k3s server
#9811
-
Hi guys! I'm super new to K3S, and it was something a coworker had wanted us to use as it makes setting up Kubernetes fast. However, I can't seem to get it to work. I'm running into an issue where I can't run Environmental Info: k3s v1.29.2+k3s1 (\86f10213) Node(s) CPU architecture, OS, and Version: Linux archlinux 6.7.9-zen1-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Fri, 08 Mar 2024 01:58:50 +0000 x86_64 GNU/Linux Describe the bug: I've installed k3s (admittedly through the archlinux AUR) and I'm just trying to run Steps To Reproduce:
Expected behavior: I imagine I'd be able to see some stuff if I try Actual behavior: Instead, I get Additional context / logs:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
I'm not sure what paru is; is this some 3rd party build of k3s? It appears that you're just grabbing the k3s binary and running Take a look at the quick-start guide: https://docs.k3s.io/quick-start . If you use the install script as we recommend, k3s will remain running in the background so that you can interact with it via kubectl. If the package manager you're using provides a service for k3s, you might try starting that, instead of just running the server from the CLI? |
Beta Was this translation helpful? Give feedback.
-
It looks like you now have multiple copies of k3s running
You appear to be missing support for some critical cgroups. You might run Since there is apparently an arch package for k3s, you might check to see if they have any specific steps that are required to use it. |
Beta Was this translation helpful? Give feedback.
It looks like you now have multiple copies of k3s running
You appear to be missing support for some critical cgroups. You might run
k3s check-config
to see what all you're missing?Since there is apparently an arch package for k3s, …