Joyent SmartOS what exactly is it?? Does it run Linux Apps? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 10 years ago. Improve this question I’ve been reading on Joyent’s SmartOS, what is it exactly I read something about it being KVM. With one article saying it could … Read more

Install Neo4j via Maven

Neo4j says I can install Neo4j via Maven by adding it to my build: <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> <version>1.8.1</version> </dependency> But do I need a build? If so, what should my pom.xml look like? I tried with this: <project xmlns=”http://maven.apache.org/POM/4.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd”> <modelVersion>4.0.0</modelVersion> <groupId>com.webcom.app</groupId> <artifactId>webcom</artifactId> <packaging>jar</packaging> <version>1.0-SNAPSHOT</version> <name>webcom</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> … Read more

Cleaning log files on Solaris for a service manifest

I have a service manifest on Solaris (Smart OS actually) and I would like to periodically clean its log files either automatically or manually without shutting down the server. My log is here: /var/svc/log/site-myapp-joyent-smartos-node-service-manifest-1:default.log Is there a way to either clean this, limit its size, or move it? Answer I would use logadm to rotate … Read more

Monitoring / logging bandwidth usage per KVM on SmartOS?

Usually on a KVM node with CentOS, iptables support is enabled on the bridge (bridge-nf-call-iptables) iptables rules can be used to log the data, 2 chain rules one for incoming and one for outgoing then a bash script is used to extract the data/store the data iptables counter is flushed (iptables -Z iirc) I’m pretty … Read more

SmartOS reboots spontaneously

I run a SmartOS system on a Hetzner EX4S (Intel Core i7-2600, 32G RAM, 2x3Tb SATA HDD). There are six virtual machines on the host: [root@10-bf-48-7f-e7-03 ~]# vmadm list UUID TYPE RAM STATE ALIAS d2223467-bbe5-4b81-a9d1-439e9a66d43f KVM 512 running xxxx1 5f36358f-68fa-4351-b66f-830484b9a6ee KVM 1024 running xxxx2 d570e9ac-9eac-4e4f-8fda-2b1d721c8358 OS 1024 running xxxx3 ef88979e-fb7f-460c-bf56-905755e0a399 KVM 1024 running xxxx4 d8e06def-c9c9-4d17-b975-47dd4836f962 … Read more